@@ -7012,8 +7012,8 @@ const de_Api = (output: any, context: __SerdeContext): Api => {
7012
7012
ApiGatewayManaged : [ , __expectBoolean , `apiGatewayManaged` ] ,
7013
7013
ApiId : [ , __expectString , `apiId` ] ,
7014
7014
ApiKeySelectionExpression : [ , __expectString , `apiKeySelectionExpression` ] ,
7015
- CorsConfiguration : ( _ ) => [ , de_Cors ( _ , context ) , `corsConfiguration` ] ,
7016
- CreatedDate : ( _ ) => [ , __expectNonNull ( __parseRfc3339DateTimeWithOffset ( _ ) ) , `createdDate` ] ,
7015
+ CorsConfiguration : [ , ( _ : any ) => de_Cors ( _ , context ) , `corsConfiguration` ] ,
7016
+ CreatedDate : [ , ( _ : any ) => __expectNonNull ( __parseRfc3339DateTimeWithOffset ( _ ) ) , `createdDate` ] ,
7017
7017
Description : [ , __expectString , `description` ] ,
7018
7018
DisableExecuteApiEndpoint : [ , __expectBoolean , `disableExecuteApiEndpoint` ] ,
7019
7019
DisableSchemaValidation : [ , __expectBoolean , `disableSchemaValidation` ] ,
@@ -7055,7 +7055,7 @@ const de_Authorizer = (output: any, context: __SerdeContext): Authorizer => {
7055
7055
EnableSimpleResponses : [ , __expectBoolean , `enableSimpleResponses` ] ,
7056
7056
IdentitySource : [ , _json , `identitySource` ] ,
7057
7057
IdentityValidationExpression : [ , __expectString , `identityValidationExpression` ] ,
7058
- JwtConfiguration : ( _ ) => [ , de_JWTConfiguration ( _ , context ) , `jwtConfiguration` ] ,
7058
+ JwtConfiguration : [ , ( _ : any ) => de_JWTConfiguration ( _ , context ) , `jwtConfiguration` ] ,
7059
7059
Name : [ , __expectString , `name` ] ,
7060
7060
} ) as any ;
7061
7061
} ;
@@ -7086,7 +7086,7 @@ const de_Cors = (output: any, context: __SerdeContext): Cors => {
7086
7086
const de_Deployment = ( output : any , context : __SerdeContext ) : Deployment => {
7087
7087
return take ( output , {
7088
7088
AutoDeployed : [ , __expectBoolean , `autoDeployed` ] ,
7089
- CreatedDate : ( _ ) => [ , __expectNonNull ( __parseRfc3339DateTimeWithOffset ( _ ) ) , `createdDate` ] ,
7089
+ CreatedDate : [ , ( _ : any ) => __expectNonNull ( __parseRfc3339DateTimeWithOffset ( _ ) ) , `createdDate` ] ,
7090
7090
DeploymentId : [ , __expectString , `deploymentId` ] ,
7091
7091
DeploymentStatus : [ , __expectString , `deploymentStatus` ] ,
7092
7092
DeploymentStatusMessage : [ , __expectString , `deploymentStatusMessage` ] ,
@@ -7101,8 +7101,8 @@ const de_DomainName = (output: any, context: __SerdeContext): DomainName => {
7101
7101
return take ( output , {
7102
7102
ApiMappingSelectionExpression : [ , __expectString , `apiMappingSelectionExpression` ] ,
7103
7103
DomainName : [ , __expectString , `domainName` ] ,
7104
- DomainNameConfigurations : ( _ ) => [ , de_DomainNameConfigurations ( _ , context ) , `domainNameConfigurations` ] ,
7105
- MutualTlsAuthentication : ( _ ) => [ , de_MutualTlsAuthentication ( _ , context ) , `mutualTlsAuthentication` ] ,
7104
+ DomainNameConfigurations : [ , ( _ : any ) => de_DomainNameConfigurations ( _ , context ) , `domainNameConfigurations` ] ,
7105
+ MutualTlsAuthentication : [ , ( _ : any ) => de_MutualTlsAuthentication ( _ , context ) , `mutualTlsAuthentication` ] ,
7106
7106
Tags : [ , _json , `tags` ] ,
7107
7107
} ) as any ;
7108
7108
} ;
@@ -7115,7 +7115,11 @@ const de_DomainNameConfiguration = (output: any, context: __SerdeContext): Domai
7115
7115
ApiGatewayDomainName : [ , __expectString , `apiGatewayDomainName` ] ,
7116
7116
CertificateArn : [ , __expectString , `certificateArn` ] ,
7117
7117
CertificateName : [ , __expectString , `certificateName` ] ,
7118
- CertificateUploadDate : ( _ ) => [ , __expectNonNull ( __parseRfc3339DateTimeWithOffset ( _ ) ) , `certificateUploadDate` ] ,
7118
+ CertificateUploadDate : [
7119
+ ,
7120
+ ( _ : any ) => __expectNonNull ( __parseRfc3339DateTimeWithOffset ( _ ) ) ,
7121
+ `certificateUploadDate` ,
7122
+ ] ,
7119
7123
DomainNameStatus : [ , __expectString , `domainNameStatus` ] ,
7120
7124
DomainNameStatusMessage : [ , __expectString , `domainNameStatusMessage` ] ,
7121
7125
EndpointType : [ , __expectString , `endpointType` ] ,
@@ -7163,7 +7167,7 @@ const de_Integration = (output: any, context: __SerdeContext): Integration => {
7163
7167
ResponseParameters : [ , _json , `responseParameters` ] ,
7164
7168
TemplateSelectionExpression : [ , __expectString , `templateSelectionExpression` ] ,
7165
7169
TimeoutInMillis : [ , __expectInt32 , `timeoutInMillis` ] ,
7166
- TlsConfig : ( _ ) => [ , de_TlsConfig ( _ , context ) , `tlsConfig` ] ,
7170
+ TlsConfig : [ , ( _ : any ) => de_TlsConfig ( _ , context ) , `tlsConfig` ] ,
7167
7171
} ) as any ;
7168
7172
} ;
7169
7173
@@ -7241,7 +7245,7 @@ const de_Route = (output: any, context: __SerdeContext): Route => {
7241
7245
ModelSelectionExpression : [ , __expectString , `modelSelectionExpression` ] ,
7242
7246
OperationName : [ , __expectString , `operationName` ] ,
7243
7247
RequestModels : [ , _json , `requestModels` ] ,
7244
- RequestParameters : ( _ ) => [ , de_RouteParameters ( _ , context ) , `requestParameters` ] ,
7248
+ RequestParameters : [ , ( _ : any ) => de_RouteParameters ( _ , context ) , `requestParameters` ] ,
7245
7249
RouteId : [ , __expectString , `routeId` ] ,
7246
7250
RouteKey : [ , __expectString , `routeKey` ] ,
7247
7251
RouteResponseSelectionExpression : [ , __expectString , `routeResponseSelectionExpression` ] ,
@@ -7271,7 +7275,7 @@ const de_RouteResponse = (output: any, context: __SerdeContext): RouteResponse =
7271
7275
return take ( output , {
7272
7276
ModelSelectionExpression : [ , __expectString , `modelSelectionExpression` ] ,
7273
7277
ResponseModels : [ , _json , `responseModels` ] ,
7274
- ResponseParameters : ( _ ) => [ , de_RouteParameters ( _ , context ) , `responseParameters` ] ,
7278
+ ResponseParameters : [ , ( _ : any ) => de_RouteParameters ( _ , context ) , `responseParameters` ] ,
7275
7279
RouteResponseId : [ , __expectString , `routeResponseId` ] ,
7276
7280
RouteResponseKey : [ , __expectString , `routeResponseKey` ] ,
7277
7281
} ) as any ;
@@ -7310,17 +7314,17 @@ const de_RouteSettingsMap = (output: any, context: __SerdeContext): Record<strin
7310
7314
*/
7311
7315
const de_Stage = ( output : any , context : __SerdeContext ) : Stage => {
7312
7316
return take ( output , {
7313
- AccessLogSettings : ( _ ) => [ , de_AccessLogSettings ( _ , context ) , `accessLogSettings` ] ,
7317
+ AccessLogSettings : [ , ( _ : any ) => de_AccessLogSettings ( _ , context ) , `accessLogSettings` ] ,
7314
7318
ApiGatewayManaged : [ , __expectBoolean , `apiGatewayManaged` ] ,
7315
7319
AutoDeploy : [ , __expectBoolean , `autoDeploy` ] ,
7316
7320
ClientCertificateId : [ , __expectString , `clientCertificateId` ] ,
7317
- CreatedDate : ( _ ) => [ , __expectNonNull ( __parseRfc3339DateTimeWithOffset ( _ ) ) , `createdDate` ] ,
7318
- DefaultRouteSettings : ( _ ) => [ , de_RouteSettings ( _ , context ) , `defaultRouteSettings` ] ,
7321
+ CreatedDate : [ , ( _ : any ) => __expectNonNull ( __parseRfc3339DateTimeWithOffset ( _ ) ) , `createdDate` ] ,
7322
+ DefaultRouteSettings : [ , ( _ : any ) => de_RouteSettings ( _ , context ) , `defaultRouteSettings` ] ,
7319
7323
DeploymentId : [ , __expectString , `deploymentId` ] ,
7320
7324
Description : [ , __expectString , `description` ] ,
7321
7325
LastDeploymentStatusMessage : [ , __expectString , `lastDeploymentStatusMessage` ] ,
7322
- LastUpdatedDate : ( _ ) => [ , __expectNonNull ( __parseRfc3339DateTimeWithOffset ( _ ) ) , `lastUpdatedDate` ] ,
7323
- RouteSettings : ( _ ) => [ , de_RouteSettingsMap ( _ , context ) , `routeSettings` ] ,
7326
+ LastUpdatedDate : [ , ( _ : any ) => __expectNonNull ( __parseRfc3339DateTimeWithOffset ( _ ) ) , `lastUpdatedDate` ] ,
7327
+ RouteSettings : [ , ( _ : any ) => de_RouteSettingsMap ( _ , context ) , `routeSettings` ] ,
7324
7328
StageName : [ , __expectString , `stageName` ] ,
7325
7329
StageVariables : [ , _json , `stageVariables` ] ,
7326
7330
Tags : [ , _json , `tags` ] ,
@@ -7349,7 +7353,7 @@ const de_TlsConfig = (output: any, context: __SerdeContext): TlsConfig => {
7349
7353
*/
7350
7354
const de_VpcLink = ( output : any , context : __SerdeContext ) : VpcLink => {
7351
7355
return take ( output , {
7352
- CreatedDate : ( _ ) => [ , __expectNonNull ( __parseRfc3339DateTimeWithOffset ( _ ) ) , `createdDate` ] ,
7356
+ CreatedDate : [ , ( _ : any ) => __expectNonNull ( __parseRfc3339DateTimeWithOffset ( _ ) ) , `createdDate` ] ,
7353
7357
Name : [ , __expectString , `name` ] ,
7354
7358
SecurityGroupIds : [ , _json , `securityGroupIds` ] ,
7355
7359
SubnetIds : [ , _json , `subnetIds` ] ,
0 commit comments