@@ -207,6 +207,8 @@ import {
207
207
AdvancedSecurityOptions ,
208
208
AdvancedSecurityOptionsInput ,
209
209
AdvancedSecurityOptionsStatus ,
210
+ AIMLOptionsInput ,
211
+ AIMLOptionsStatus ,
210
212
AutoTune ,
211
213
AutoTuneDetails ,
212
214
AutoTuneMaintenanceSchedule ,
@@ -254,6 +256,7 @@ import {
254
256
LogPublishingOptionsStatus ,
255
257
LogType ,
256
258
MasterUserOptions ,
259
+ NaturalLanguageQueryGenerationOptionsInput ,
257
260
NodeToNodeEncryptionOptions ,
258
261
NodeToNodeEncryptionOptionsStatus ,
259
262
OffPeakWindow ,
@@ -454,6 +457,7 @@ export const se_CreateDomainCommand = async (
454
457
let body : any ;
455
458
body = JSON . stringify (
456
459
take ( input , {
460
+ AIMLOptions : ( _ ) => _json ( _ ) ,
457
461
AccessPolicies : [ ] ,
458
462
AdvancedOptions : ( _ ) => _json ( _ ) ,
459
463
AdvancedSecurityOptions : ( _ ) => _json ( _ ) ,
@@ -1489,6 +1493,7 @@ export const se_UpdateDomainConfigCommand = async (
1489
1493
let body : any ;
1490
1494
body = JSON . stringify (
1491
1495
take ( input , {
1496
+ AIMLOptions : ( _ ) => _json ( _ ) ,
1492
1497
AccessPolicies : [ ] ,
1493
1498
AdvancedOptions : ( _ ) => _json ( _ ) ,
1494
1499
AdvancedSecurityOptions : ( _ ) => _json ( _ ) ,
@@ -3295,6 +3300,8 @@ const de_ValidationExceptionRes = async (parsedOutput: any, context: __SerdeCont
3295
3300
3296
3301
// se_AdvancedSecurityOptionsInput omitted.
3297
3302
3303
+ // se_AIMLOptionsInput omitted.
3304
+
3298
3305
/**
3299
3306
* serializeAws_restJson1AutoTuneMaintenanceSchedule
3300
3307
*/
@@ -3384,6 +3391,8 @@ const se_AutoTuneOptionsInput = (input: AutoTuneOptionsInput, context: __SerdeCo
3384
3391
3385
3392
// se_MasterUserOptions omitted.
3386
3393
3394
+ // se_NaturalLanguageQueryGenerationOptionsInput omitted.
3395
+
3387
3396
// se_NodeToNodeEncryptionOptions omitted.
3388
3397
3389
3398
// se_OffPeakWindow omitted.
@@ -3468,6 +3477,18 @@ const de_AdvancedSecurityOptionsStatus = (output: any, context: __SerdeContext):
3468
3477
} ) as any ;
3469
3478
} ;
3470
3479
3480
+ // de_AIMLOptionsOutput omitted.
3481
+
3482
+ /**
3483
+ * deserializeAws_restJson1AIMLOptionsStatus
3484
+ */
3485
+ const de_AIMLOptionsStatus = ( output : any , context : __SerdeContext ) : AIMLOptionsStatus => {
3486
+ return take ( output , {
3487
+ Options : _json ,
3488
+ Status : ( _ : any ) => de_OptionStatus ( _ , context ) ,
3489
+ } ) as any ;
3490
+ } ;
3491
+
3471
3492
// de_AuthorizedPrincipal omitted.
3472
3493
3473
3494
// de_AuthorizedPrincipalList omitted.
@@ -3677,6 +3698,7 @@ const de_CognitoOptionsStatus = (output: any, context: __SerdeContext): CognitoO
3677
3698
*/
3678
3699
const de_DomainConfig = ( output : any , context : __SerdeContext ) : DomainConfig => {
3679
3700
return take ( output , {
3701
+ AIMLOptions : ( _ : any ) => de_AIMLOptionsStatus ( _ , context ) ,
3680
3702
AccessPolicies : ( _ : any ) => de_AccessPoliciesStatus ( _ , context ) ,
3681
3703
AdvancedOptions : ( _ : any ) => de_AdvancedOptionsStatus ( _ , context ) ,
3682
3704
AdvancedSecurityOptions : ( _ : any ) => de_AdvancedSecurityOptionsStatus ( _ , context ) ,
@@ -3783,6 +3805,7 @@ const de_DomainPackageDetailsList = (output: any, context: __SerdeContext): Doma
3783
3805
*/
3784
3806
const de_DomainStatus = ( output : any , context : __SerdeContext ) : DomainStatus => {
3785
3807
return take ( output , {
3808
+ AIMLOptions : _json ,
3786
3809
ARN : __expectString ,
3787
3810
AccessPolicies : __expectString ,
3788
3811
AdvancedOptions : _json ,
@@ -3924,6 +3947,8 @@ const de_LogPublishingOptionsStatus = (output: any, context: __SerdeContext): Lo
3924
3947
3925
3948
// de_ModifyingPropertiesList omitted.
3926
3949
3950
+ // de_NaturalLanguageQueryGenerationOptionsOutput omitted.
3951
+
3927
3952
// de_NodeToNodeEncryptionOptions omitted.
3928
3953
3929
3954
/**
0 commit comments