@aws-sdk/client-cloudfront 3.797.0 → 3.799.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (204) hide show
  1. package/README.md +200 -0
  2. package/dist-cjs/index.js +2696 -655
  3. package/dist-cjs/runtimeConfig.js +1 -0
  4. package/dist-es/CloudFront.js +50 -0
  5. package/dist-es/commands/AssociateDistributionTenantWebACLCommand.js +22 -0
  6. package/dist-es/commands/AssociateDistributionWebACLCommand.js +22 -0
  7. package/dist-es/commands/CreateConnectionGroupCommand.js +22 -0
  8. package/dist-es/commands/CreateDistributionTenantCommand.js +22 -0
  9. package/dist-es/commands/CreateInvalidationForDistributionTenantCommand.js +22 -0
  10. package/dist-es/commands/DeleteConnectionGroupCommand.js +22 -0
  11. package/dist-es/commands/DeleteDistributionTenantCommand.js +22 -0
  12. package/dist-es/commands/DisassociateDistributionTenantWebACLCommand.js +22 -0
  13. package/dist-es/commands/DisassociateDistributionWebACLCommand.js +22 -0
  14. package/dist-es/commands/GetConnectionGroupByRoutingEndpointCommand.js +22 -0
  15. package/dist-es/commands/GetConnectionGroupCommand.js +22 -0
  16. package/dist-es/commands/GetDistributionTenantByDomainCommand.js +22 -0
  17. package/dist-es/commands/GetDistributionTenantCommand.js +22 -0
  18. package/dist-es/commands/GetInvalidationForDistributionTenantCommand.js +22 -0
  19. package/dist-es/commands/GetManagedCertificateDetailsCommand.js +22 -0
  20. package/dist-es/commands/ListConnectionGroupsCommand.js +22 -0
  21. package/dist-es/commands/ListDistributionTenantsByCustomizationCommand.js +22 -0
  22. package/dist-es/commands/ListDistributionTenantsCommand.js +22 -0
  23. package/dist-es/commands/ListDistributionsByConnectionModeCommand.js +23 -0
  24. package/dist-es/commands/ListDomainConflictsCommand.js +22 -0
  25. package/dist-es/commands/ListInvalidationsForDistributionTenantCommand.js +22 -0
  26. package/dist-es/commands/TestFunctionCommand.js +1 -1
  27. package/dist-es/commands/UpdateConnectionGroupCommand.js +22 -0
  28. package/dist-es/commands/UpdateDistributionCommand.js +1 -1
  29. package/dist-es/commands/UpdateDistributionTenantCommand.js +22 -0
  30. package/dist-es/commands/UpdateDistributionWithStagingConfigCommand.js +1 -1
  31. package/dist-es/commands/UpdateDomainAssociationCommand.js +22 -0
  32. package/dist-es/commands/UpdateFunctionCommand.js +1 -1
  33. package/dist-es/commands/VerifyDnsConfigurationCommand.js +22 -0
  34. package/dist-es/commands/index.js +26 -1
  35. package/dist-es/models/index.js +1 -0
  36. package/dist-es/models/models_0.js +77 -201
  37. package/dist-es/models/models_1.js +203 -58
  38. package/dist-es/models/models_2.js +52 -0
  39. package/dist-es/pagination/ListConnectionGroupsPaginator.js +4 -0
  40. package/dist-es/pagination/ListDistributionTenantsByCustomizationPaginator.js +4 -0
  41. package/dist-es/pagination/ListDistributionTenantsPaginator.js +4 -0
  42. package/dist-es/pagination/ListDistributionsByConnectionModePaginator.js +4 -0
  43. package/dist-es/pagination/ListDomainConflictsPaginator.js +4 -0
  44. package/dist-es/pagination/ListInvalidationsForDistributionTenantPaginator.js +4 -0
  45. package/dist-es/pagination/index.js +6 -0
  46. package/dist-es/protocols/Aws_restXml.js +1907 -460
  47. package/dist-es/runtimeConfig.js +2 -1
  48. package/dist-es/waiters/index.js +1 -0
  49. package/dist-es/waiters/waitForInvalidationForDistributionTenantCompleted.js +31 -0
  50. package/dist-types/CloudFront.d.ts +178 -0
  51. package/dist-types/CloudFrontClient.d.ts +27 -2
  52. package/dist-types/commands/AssociateDistributionTenantWebACLCommand.d.ts +92 -0
  53. package/dist-types/commands/AssociateDistributionWebACLCommand.d.ts +92 -0
  54. package/dist-types/commands/CopyDistributionCommand.d.ts +16 -1
  55. package/dist-types/commands/CreateConnectionGroupCommand.d.ts +123 -0
  56. package/dist-types/commands/CreateDistributionCommand.d.ts +35 -2
  57. package/dist-types/commands/CreateDistributionTenantCommand.d.ts +185 -0
  58. package/dist-types/commands/CreateDistributionWithTagsCommand.d.ts +32 -2
  59. package/dist-types/commands/CreateInvalidationForDistributionTenantCommand.d.ts +119 -0
  60. package/dist-types/commands/CreateOriginRequestPolicyCommand.d.ts +1 -1
  61. package/dist-types/commands/CreatePublicKeyCommand.d.ts +1 -1
  62. package/dist-types/commands/CreateRealtimeLogConfigCommand.d.ts +1 -1
  63. package/dist-types/commands/CreateStreamingDistributionCommand.d.ts +2 -2
  64. package/dist-types/commands/CreateStreamingDistributionWithTagsCommand.d.ts +2 -2
  65. package/dist-types/commands/DeleteConnectionGroupCommand.d.ts +90 -0
  66. package/dist-types/commands/DeleteDistributionCommand.d.ts +3 -0
  67. package/dist-types/commands/DeleteDistributionTenantCommand.d.ts +88 -0
  68. package/dist-types/commands/DisassociateDistributionTenantWebACLCommand.d.ts +90 -0
  69. package/dist-types/commands/DisassociateDistributionWebACLCommand.d.ts +90 -0
  70. package/dist-types/commands/GetConnectionGroupByRoutingEndpointCommand.d.ts +99 -0
  71. package/dist-types/commands/GetConnectionGroupCommand.d.ts +99 -0
  72. package/dist-types/commands/GetDistributionCommand.d.ts +16 -1
  73. package/dist-types/commands/GetDistributionConfigCommand.d.ts +16 -1
  74. package/dist-types/commands/GetDistributionTenantByDomainCommand.d.ts +124 -0
  75. package/dist-types/commands/GetDistributionTenantCommand.d.ts +124 -0
  76. package/dist-types/commands/GetInvalidationForDistributionTenantCommand.d.ts +95 -0
  77. package/dist-types/commands/GetManagedCertificateDetailsCommand.d.ts +89 -0
  78. package/dist-types/commands/GetStreamingDistributionCommand.d.ts +1 -1
  79. package/dist-types/commands/GetStreamingDistributionConfigCommand.d.ts +1 -1
  80. package/dist-types/commands/ListConnectionGroupsCommand.d.ts +100 -0
  81. package/dist-types/commands/ListDistributionTenantsByCustomizationCommand.d.ts +120 -0
  82. package/dist-types/commands/ListDistributionTenantsCommand.d.ts +121 -0
  83. package/dist-types/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +3 -1
  84. package/dist-types/commands/ListDistributionsByConnectionModeCommand.d.ts +392 -0
  85. package/dist-types/commands/ListDistributionsByRealtimeLogConfigCommand.d.ts +3 -1
  86. package/dist-types/commands/ListDistributionsByWebACLIdCommand.d.ts +3 -1
  87. package/dist-types/commands/ListDistributionsCommand.d.ts +3 -1
  88. package/dist-types/commands/ListDomainConflictsCommand.d.ts +96 -0
  89. package/dist-types/commands/ListInvalidationsForDistributionTenantCommand.d.ts +96 -0
  90. package/dist-types/commands/ListStreamingDistributionsCommand.d.ts +3 -2
  91. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  92. package/dist-types/commands/ListVpcOriginsCommand.d.ts +1 -1
  93. package/dist-types/commands/PublishFunctionCommand.d.ts +1 -1
  94. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  95. package/dist-types/commands/TestFunctionCommand.d.ts +1 -1
  96. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  97. package/dist-types/commands/UpdateCachePolicyCommand.d.ts +1 -1
  98. package/dist-types/commands/UpdateCloudFrontOriginAccessIdentityCommand.d.ts +1 -1
  99. package/dist-types/commands/UpdateConnectionGroupCommand.d.ts +123 -0
  100. package/dist-types/commands/UpdateContinuousDeploymentPolicyCommand.d.ts +1 -1
  101. package/dist-types/commands/UpdateDistributionCommand.d.ts +33 -3
  102. package/dist-types/commands/UpdateDistributionTenantCommand.d.ts +182 -0
  103. package/dist-types/commands/UpdateDistributionWithStagingConfigCommand.d.ts +17 -2
  104. package/dist-types/commands/UpdateDomainAssociationCommand.d.ts +98 -0
  105. package/dist-types/commands/UpdateFieldLevelEncryptionConfigCommand.d.ts +1 -1
  106. package/dist-types/commands/UpdateFieldLevelEncryptionProfileCommand.d.ts +1 -1
  107. package/dist-types/commands/UpdateFunctionCommand.d.ts +1 -1
  108. package/dist-types/commands/UpdateKeyGroupCommand.d.ts +1 -1
  109. package/dist-types/commands/UpdateKeyValueStoreCommand.d.ts +1 -1
  110. package/dist-types/commands/UpdateOriginAccessControlCommand.d.ts +1 -1
  111. package/dist-types/commands/UpdateOriginRequestPolicyCommand.d.ts +1 -1
  112. package/dist-types/commands/UpdatePublicKeyCommand.d.ts +1 -1
  113. package/dist-types/commands/UpdateRealtimeLogConfigCommand.d.ts +1 -1
  114. package/dist-types/commands/UpdateResponseHeadersPolicyCommand.d.ts +1 -1
  115. package/dist-types/commands/UpdateStreamingDistributionCommand.d.ts +3 -3
  116. package/dist-types/commands/UpdateVpcOriginCommand.d.ts +1 -1
  117. package/dist-types/commands/VerifyDnsConfigurationCommand.d.ts +88 -0
  118. package/dist-types/commands/index.d.ts +26 -1
  119. package/dist-types/models/index.d.ts +1 -0
  120. package/dist-types/models/models_0.d.ts +830 -869
  121. package/dist-types/models/models_1.d.ts +2571 -2123
  122. package/dist-types/models/models_2.d.ts +1244 -0
  123. package/dist-types/pagination/ListConnectionGroupsPaginator.d.ts +7 -0
  124. package/dist-types/pagination/ListDistributionTenantsByCustomizationPaginator.d.ts +7 -0
  125. package/dist-types/pagination/ListDistributionTenantsPaginator.d.ts +7 -0
  126. package/dist-types/pagination/ListDistributionsByConnectionModePaginator.d.ts +7 -0
  127. package/dist-types/pagination/ListDomainConflictsPaginator.d.ts +7 -0
  128. package/dist-types/pagination/ListInvalidationsForDistributionTenantPaginator.d.ts +7 -0
  129. package/dist-types/pagination/index.d.ts +6 -0
  130. package/dist-types/protocols/Aws_restXml.d.ts +225 -0
  131. package/dist-types/runtimeConfig.d.ts +1 -1
  132. package/dist-types/ts3.4/CloudFront.d.ts +476 -0
  133. package/dist-types/ts3.4/CloudFrontClient.d.ts +152 -2
  134. package/dist-types/ts3.4/commands/AssociateDistributionTenantWebACLCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/AssociateDistributionWebACLCommand.d.ts +51 -0
  136. package/dist-types/ts3.4/commands/CreateConnectionGroupCommand.d.ts +51 -0
  137. package/dist-types/ts3.4/commands/CreateDistributionTenantCommand.d.ts +51 -0
  138. package/dist-types/ts3.4/commands/CreateInvalidationForDistributionTenantCommand.d.ts +51 -0
  139. package/dist-types/ts3.4/commands/CreateOriginRequestPolicyCommand.d.ts +1 -1
  140. package/dist-types/ts3.4/commands/CreatePublicKeyCommand.d.ts +1 -1
  141. package/dist-types/ts3.4/commands/CreateRealtimeLogConfigCommand.d.ts +1 -1
  142. package/dist-types/ts3.4/commands/DeleteConnectionGroupCommand.d.ts +46 -0
  143. package/dist-types/ts3.4/commands/DeleteDistributionTenantCommand.d.ts +47 -0
  144. package/dist-types/ts3.4/commands/DisassociateDistributionTenantWebACLCommand.d.ts +51 -0
  145. package/dist-types/ts3.4/commands/DisassociateDistributionWebACLCommand.d.ts +51 -0
  146. package/dist-types/ts3.4/commands/GetConnectionGroupByRoutingEndpointCommand.d.ts +51 -0
  147. package/dist-types/ts3.4/commands/GetConnectionGroupCommand.d.ts +51 -0
  148. package/dist-types/ts3.4/commands/GetDistributionTenantByDomainCommand.d.ts +51 -0
  149. package/dist-types/ts3.4/commands/GetDistributionTenantCommand.d.ts +51 -0
  150. package/dist-types/ts3.4/commands/GetInvalidationForDistributionTenantCommand.d.ts +51 -0
  151. package/dist-types/ts3.4/commands/GetManagedCertificateDetailsCommand.d.ts +51 -0
  152. package/dist-types/ts3.4/commands/ListConnectionGroupsCommand.d.ts +51 -0
  153. package/dist-types/ts3.4/commands/ListDistributionTenantsByCustomizationCommand.d.ts +51 -0
  154. package/dist-types/ts3.4/commands/ListDistributionTenantsCommand.d.ts +51 -0
  155. package/dist-types/ts3.4/commands/ListDistributionsByConnectionModeCommand.d.ts +51 -0
  156. package/dist-types/ts3.4/commands/ListDomainConflictsCommand.d.ts +51 -0
  157. package/dist-types/ts3.4/commands/ListInvalidationsForDistributionTenantCommand.d.ts +51 -0
  158. package/dist-types/ts3.4/commands/ListStreamingDistributionsCommand.d.ts +2 -4
  159. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  160. package/dist-types/ts3.4/commands/ListVpcOriginsCommand.d.ts +1 -1
  161. package/dist-types/ts3.4/commands/PublishFunctionCommand.d.ts +1 -1
  162. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  163. package/dist-types/ts3.4/commands/TestFunctionCommand.d.ts +1 -1
  164. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  165. package/dist-types/ts3.4/commands/UpdateCachePolicyCommand.d.ts +1 -1
  166. package/dist-types/ts3.4/commands/UpdateCloudFrontOriginAccessIdentityCommand.d.ts +1 -1
  167. package/dist-types/ts3.4/commands/UpdateConnectionGroupCommand.d.ts +51 -0
  168. package/dist-types/ts3.4/commands/UpdateContinuousDeploymentPolicyCommand.d.ts +1 -1
  169. package/dist-types/ts3.4/commands/UpdateDistributionCommand.d.ts +1 -1
  170. package/dist-types/ts3.4/commands/UpdateDistributionTenantCommand.d.ts +51 -0
  171. package/dist-types/ts3.4/commands/UpdateDistributionWithStagingConfigCommand.d.ts +1 -1
  172. package/dist-types/ts3.4/commands/UpdateDomainAssociationCommand.d.ts +51 -0
  173. package/dist-types/ts3.4/commands/UpdateFieldLevelEncryptionConfigCommand.d.ts +1 -1
  174. package/dist-types/ts3.4/commands/UpdateFieldLevelEncryptionProfileCommand.d.ts +1 -1
  175. package/dist-types/ts3.4/commands/UpdateFunctionCommand.d.ts +1 -1
  176. package/dist-types/ts3.4/commands/UpdateKeyGroupCommand.d.ts +1 -1
  177. package/dist-types/ts3.4/commands/UpdateKeyValueStoreCommand.d.ts +1 -1
  178. package/dist-types/ts3.4/commands/UpdateOriginAccessControlCommand.d.ts +1 -1
  179. package/dist-types/ts3.4/commands/UpdateOriginRequestPolicyCommand.d.ts +1 -1
  180. package/dist-types/ts3.4/commands/UpdatePublicKeyCommand.d.ts +1 -1
  181. package/dist-types/ts3.4/commands/UpdateRealtimeLogConfigCommand.d.ts +1 -1
  182. package/dist-types/ts3.4/commands/UpdateResponseHeadersPolicyCommand.d.ts +1 -1
  183. package/dist-types/ts3.4/commands/UpdateStreamingDistributionCommand.d.ts +1 -1
  184. package/dist-types/ts3.4/commands/UpdateVpcOriginCommand.d.ts +1 -1
  185. package/dist-types/ts3.4/commands/VerifyDnsConfigurationCommand.d.ts +51 -0
  186. package/dist-types/ts3.4/commands/index.d.ts +26 -1
  187. package/dist-types/ts3.4/models/index.d.ts +1 -0
  188. package/dist-types/ts3.4/models/models_0.d.ts +190 -214
  189. package/dist-types/ts3.4/models/models_1.d.ts +413 -275
  190. package/dist-types/ts3.4/models/models_2.d.ts +363 -0
  191. package/dist-types/ts3.4/pagination/ListConnectionGroupsPaginator.d.ts +11 -0
  192. package/dist-types/ts3.4/pagination/ListDistributionTenantsByCustomizationPaginator.d.ts +11 -0
  193. package/dist-types/ts3.4/pagination/ListDistributionTenantsPaginator.d.ts +11 -0
  194. package/dist-types/ts3.4/pagination/ListDistributionsByConnectionModePaginator.d.ts +11 -0
  195. package/dist-types/ts3.4/pagination/ListDomainConflictsPaginator.d.ts +11 -0
  196. package/dist-types/ts3.4/pagination/ListInvalidationsForDistributionTenantPaginator.d.ts +11 -0
  197. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  198. package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +300 -0
  199. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -4
  200. package/dist-types/ts3.4/waiters/index.d.ts +1 -0
  201. package/dist-types/ts3.4/waiters/waitForInvalidationForDistributionTenantCompleted.d.ts +11 -0
  202. package/dist-types/waiters/index.d.ts +1 -0
  203. package/dist-types/waiters/waitForInvalidationForDistributionTenantCompleted.d.ts +14 -0
  204. package/package.json +11 -11
@@ -3,8 +3,9 @@ import { XmlNode as __XmlNode } from "@aws-sdk/xml-builder";
3
3
  import { requestBuilder as rb } from "@smithy/core";
4
4
  import { collectBody, decorateServiceException as __decorateServiceException, expectNonNull as __expectNonNull, expectObject as __expectObject, expectString as __expectString, getArrayIfSingleItem as __getArrayIfSingleItem, isSerializableHeaderValue, map, parseBoolean as __parseBoolean, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, strictParseFloat as __strictParseFloat, strictParseInt32 as __strictParseInt32, strictParseLong as __strictParseLong, withBaseException, } from "@smithy/smithy-client";
5
5
  import { CloudFrontServiceException as __BaseException } from "../models/CloudFrontServiceException";
6
- import { AccessDenied, BatchTooLarge, CachePolicyAlreadyExists, CachePolicyInUse, CannotChangeImmutablePublicKeyFields, CannotDeleteEntityWhileInUse, CannotUpdateEntityWhileInUse, CloudFrontOriginAccessIdentityAlreadyExists, CNAMEAlreadyExists, ContinuousDeploymentPolicyAlreadyExists, ContinuousDeploymentPolicyInUse, DistributionAlreadyExists, EntityAlreadyExists, EntityLimitExceeded, EntityNotFound, EntitySizeLimitExceeded, FieldLevelEncryptionConfigAlreadyExists, FieldLevelEncryptionProfileAlreadyExists, FieldLevelEncryptionProfileSizeExceeded, FunctionAlreadyExists, FunctionSizeLimitExceeded, IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior, IllegalOriginAccessConfiguration, IllegalUpdate, InconsistentQuantities, InvalidArgument, InvalidDefaultRootObject, InvalidDomainNameForOriginAccessControl, InvalidErrorCode, InvalidForwardCookies, InvalidFunctionAssociation, InvalidGeoRestrictionParameter, InvalidHeadersForS3Origin, InvalidIfMatchVersion, InvalidLambdaFunctionAssociation, InvalidLocationCode, InvalidMinimumProtocolVersion, InvalidOrigin, InvalidOriginAccessControl, InvalidOriginAccessIdentity, InvalidOriginKeepaliveTimeout, InvalidOriginReadTimeout, InvalidProtocolSettings, InvalidQueryStringParameters, InvalidRelativePath, InvalidRequiredProtocol, InvalidResponseCode, InvalidTagging, InvalidTTLOrder, InvalidViewerCertificate, InvalidWebACLId, KeyGroupAlreadyExists, MissingBody, MonitoringSubscriptionAlreadyExists, NoSuchCachePolicy, NoSuchContinuousDeploymentPolicy, NoSuchDistribution, NoSuchFieldLevelEncryptionConfig, NoSuchFieldLevelEncryptionProfile, NoSuchOrigin, NoSuchOriginRequestPolicy, NoSuchPublicKey, NoSuchRealtimeLogConfig, NoSuchResponseHeadersPolicy, OriginAccessControlAlreadyExists, OriginRequestPolicyAlreadyExists, PreconditionFailed, PublicKeyAlreadyExists, QueryArgProfileEmpty, RealtimeLogConfigAlreadyExists, RealtimeLogConfigOwnerMismatch, StagingDistributionInUse, TooManyCacheBehaviors, TooManyCachePolicies, TooManyCertificates, TooManyCloudFrontOriginAccessIdentities, TooManyContinuousDeploymentPolicies, TooManyCookieNamesInWhiteList, TooManyCookiesInCachePolicy, TooManyCookiesInOriginRequestPolicy, TooManyDistributionCNAMEs, TooManyDistributions, TooManyDistributionsAssociatedToCachePolicy, TooManyDistributionsAssociatedToFieldLevelEncryptionConfig, TooManyDistributionsAssociatedToKeyGroup, TooManyDistributionsAssociatedToOriginAccessControl, TooManyDistributionsAssociatedToOriginRequestPolicy, TooManyDistributionsAssociatedToResponseHeadersPolicy, TooManyDistributionsWithFunctionAssociations, TooManyDistributionsWithLambdaAssociations, TooManyDistributionsWithSingleFunctionARN, TooManyFieldLevelEncryptionConfigs, TooManyFieldLevelEncryptionContentTypeProfiles, TooManyFieldLevelEncryptionEncryptionEntities, TooManyFieldLevelEncryptionFieldPatterns, TooManyFieldLevelEncryptionProfiles, TooManyFieldLevelEncryptionQueryArgProfiles, TooManyFunctionAssociations, TooManyFunctions, TooManyHeadersInCachePolicy, TooManyHeadersInForwardedValues, TooManyHeadersInOriginRequestPolicy, TooManyInvalidationsInProgress, TooManyKeyGroups, TooManyKeyGroupsAssociatedToDistribution, TooManyLambdaFunctionAssociations, TooManyOriginAccessControls, TooManyOriginCustomHeaders, TooManyOriginGroupsPerDistribution, TooManyOriginRequestPolicies, TooManyOrigins, TooManyPublicKeys, TooManyPublicKeysInKeyGroup, TooManyQueryStringParameters, TooManyQueryStringsInCachePolicy, TooManyQueryStringsInOriginRequestPolicy, TooManyRealtimeLogConfigs, TooManyTrustedSigners, TrustedKeyGroupDoesNotExist, TrustedSignerDoesNotExist, UnsupportedOperation, } from "../models/models_0";
7
- import { CloudFrontOriginAccessIdentityInUse, DistributionNotDisabled, FieldLevelEncryptionConfigInUse, FieldLevelEncryptionProfileInUse, FunctionInUse, IllegalDelete, NoSuchCloudFrontOriginAccessIdentity, NoSuchFunctionExists, NoSuchInvalidation, NoSuchMonitoringSubscription, NoSuchOriginAccessControl, NoSuchResource, NoSuchStreamingDistribution, OriginAccessControlInUse, OriginRequestPolicyInUse, PublicKeyInUse, RealtimeLogConfigInUse, ResourceInUse, ResponseHeadersPolicyAlreadyExists, ResponseHeadersPolicyInUse, StreamingDistributionAlreadyExists, StreamingDistributionNotDisabled, TestFunctionFailed, TooLongCSPInResponseHeadersPolicy, TooManyCustomHeadersInResponseHeadersPolicy, TooManyRemoveHeadersInResponseHeadersPolicy, TooManyResponseHeadersPolicies, TooManyStreamingDistributionCNAMEs, TooManyStreamingDistributions, } from "../models/models_1";
6
+ import { AccessDenied, BatchTooLarge, CachePolicyAlreadyExists, CachePolicyInUse, CannotChangeImmutablePublicKeyFields, CannotDeleteEntityWhileInUse, CannotUpdateEntityWhileInUse, CloudFrontOriginAccessIdentityAlreadyExists, CNAMEAlreadyExists, ContinuousDeploymentPolicyAlreadyExists, ContinuousDeploymentPolicyInUse, DistributionAlreadyExists, EntityAlreadyExists, EntityLimitExceeded, EntityNotFound, EntitySizeLimitExceeded, FieldLevelEncryptionConfigAlreadyExists, FieldLevelEncryptionProfileAlreadyExists, FieldLevelEncryptionProfileSizeExceeded, FunctionAlreadyExists, FunctionSizeLimitExceeded, IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior, IllegalOriginAccessConfiguration, IllegalUpdate, InconsistentQuantities, InvalidArgument, InvalidAssociation, InvalidDefaultRootObject, InvalidDomainNameForOriginAccessControl, InvalidErrorCode, InvalidForwardCookies, InvalidFunctionAssociation, InvalidGeoRestrictionParameter, InvalidHeadersForS3Origin, InvalidIfMatchVersion, InvalidLambdaFunctionAssociation, InvalidLocationCode, InvalidMinimumProtocolVersion, InvalidOrigin, InvalidOriginAccessControl, InvalidOriginAccessIdentity, InvalidOriginKeepaliveTimeout, InvalidOriginReadTimeout, InvalidProtocolSettings, InvalidQueryStringParameters, InvalidRelativePath, InvalidRequiredProtocol, InvalidResponseCode, InvalidTagging, InvalidTTLOrder, InvalidViewerCertificate, InvalidWebACLId, KeyGroupAlreadyExists, MissingBody, MonitoringSubscriptionAlreadyExists, NoSuchCachePolicy, NoSuchContinuousDeploymentPolicy, NoSuchDistribution, NoSuchFieldLevelEncryptionConfig, NoSuchFieldLevelEncryptionProfile, NoSuchOrigin, NoSuchOriginRequestPolicy, NoSuchPublicKey, NoSuchRealtimeLogConfig, NoSuchResponseHeadersPolicy, OriginAccessControlAlreadyExists, PreconditionFailed, QueryArgProfileEmpty, RealtimeLogConfigOwnerMismatch, StagingDistributionInUse, TooManyCacheBehaviors, TooManyCachePolicies, TooManyCertificates, TooManyCloudFrontOriginAccessIdentities, TooManyContinuousDeploymentPolicies, TooManyCookieNamesInWhiteList, TooManyCookiesInCachePolicy, TooManyDistributionCNAMEs, TooManyDistributions, TooManyDistributionsAssociatedToCachePolicy, TooManyDistributionsAssociatedToFieldLevelEncryptionConfig, TooManyDistributionsAssociatedToKeyGroup, TooManyDistributionsAssociatedToOriginAccessControl, TooManyDistributionsAssociatedToOriginRequestPolicy, TooManyDistributionsAssociatedToResponseHeadersPolicy, TooManyDistributionsWithFunctionAssociations, TooManyDistributionsWithLambdaAssociations, TooManyDistributionsWithSingleFunctionARN, TooManyFieldLevelEncryptionConfigs, TooManyFieldLevelEncryptionContentTypeProfiles, TooManyFieldLevelEncryptionEncryptionEntities, TooManyFieldLevelEncryptionFieldPatterns, TooManyFieldLevelEncryptionProfiles, TooManyFieldLevelEncryptionQueryArgProfiles, TooManyFunctionAssociations, TooManyFunctions, TooManyHeadersInCachePolicy, TooManyHeadersInForwardedValues, TooManyInvalidationsInProgress, TooManyKeyGroups, TooManyKeyGroupsAssociatedToDistribution, TooManyLambdaFunctionAssociations, TooManyOriginCustomHeaders, TooManyOriginGroupsPerDistribution, TooManyOrigins, TooManyPublicKeysInKeyGroup, TooManyQueryStringParameters, TooManyQueryStringsInCachePolicy, TooManyTrustedSigners, TrustedKeyGroupDoesNotExist, TrustedSignerDoesNotExist, UnsupportedOperation, } from "../models/models_0";
7
+ import { CloudFrontOriginAccessIdentityInUse, DistributionNotDisabled, FieldLevelEncryptionConfigInUse, FieldLevelEncryptionProfileInUse, FunctionInUse, IllegalDelete, NoSuchCloudFrontOriginAccessIdentity, NoSuchFunctionExists, NoSuchInvalidation, NoSuchMonitoringSubscription, NoSuchOriginAccessControl, NoSuchResource, NoSuchStreamingDistribution, OriginAccessControlInUse, OriginRequestPolicyAlreadyExists, OriginRequestPolicyInUse, PublicKeyAlreadyExists, PublicKeyInUse, RealtimeLogConfigAlreadyExists, RealtimeLogConfigInUse, ResourceInUse, ResourceNotDisabled, ResponseHeadersPolicyAlreadyExists, ResponseHeadersPolicyInUse, StreamingDistributionAlreadyExists, StreamingDistributionNotDisabled, TooLongCSPInResponseHeadersPolicy, TooManyCookiesInOriginRequestPolicy, TooManyCustomHeadersInResponseHeadersPolicy, TooManyHeadersInOriginRequestPolicy, TooManyOriginAccessControls, TooManyOriginRequestPolicies, TooManyPublicKeys, TooManyQueryStringsInOriginRequestPolicy, TooManyRealtimeLogConfigs, TooManyRemoveHeadersInResponseHeadersPolicy, TooManyResponseHeadersPolicies, TooManyStreamingDistributionCNAMEs, TooManyStreamingDistributions, } from "../models/models_1";
8
+ import { TestFunctionFailed, } from "../models/models_2";
8
9
  export const se_AssociateAliasCommand = async (input, context) => {
9
10
  const b = rb(input, context);
10
11
  const headers = {};
@@ -17,11 +18,49 @@ export const se_AssociateAliasCommand = async (input, context) => {
17
18
  b.m("PUT").h(headers).q(query).b(body);
18
19
  return b.build();
19
20
  };
21
+ export const se_AssociateDistributionTenantWebACLCommand = async (input, context) => {
22
+ const b = rb(input, context);
23
+ const headers = map({}, isSerializableHeaderValue, {
24
+ "content-type": "application/xml",
25
+ [_im]: input[_IM],
26
+ });
27
+ b.bp("/2020-05-31/distribution-tenant/{Id}/associate-web-acl");
28
+ b.p("Id", () => input.Id, "{Id}", false);
29
+ let body;
30
+ body = _ve;
31
+ const bn = new __XmlNode(_ADTWACLR);
32
+ bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
33
+ if (input[_WACLA] != null) {
34
+ bn.c(__XmlNode.of(_s, input[_WACLA]).n(_WACLA));
35
+ }
36
+ body += bn.toString();
37
+ b.m("PUT").h(headers).b(body);
38
+ return b.build();
39
+ };
40
+ export const se_AssociateDistributionWebACLCommand = async (input, context) => {
41
+ const b = rb(input, context);
42
+ const headers = map({}, isSerializableHeaderValue, {
43
+ "content-type": "application/xml",
44
+ [_im]: input[_IM],
45
+ });
46
+ b.bp("/2020-05-31/distribution/{Id}/associate-web-acl");
47
+ b.p("Id", () => input.Id, "{Id}", false);
48
+ let body;
49
+ body = _ve;
50
+ const bn = new __XmlNode(_ADWACLR);
51
+ bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
52
+ if (input[_WACLA] != null) {
53
+ bn.c(__XmlNode.of(_s, input[_WACLA]).n(_WACLA));
54
+ }
55
+ body += bn.toString();
56
+ b.m("PUT").h(headers).b(body);
57
+ return b.build();
58
+ };
20
59
  export const se_CopyDistributionCommand = async (input, context) => {
21
60
  const b = rb(input, context);
22
61
  const headers = map({}, isSerializableHeaderValue, {
23
62
  "content-type": "application/xml",
24
- [_s]: [() => isSerializableHeaderValue(input[_S]), () => input[_S].toString()],
63
+ [_st]: [() => isSerializableHeaderValue(input[_S]), () => input[_S].toString()],
25
64
  [_im]: input[_IM],
26
65
  });
27
66
  b.bp("/2020-05-31/distribution/{PrimaryDistributionId}/copy");
@@ -31,7 +70,7 @@ export const se_CopyDistributionCommand = async (input, context) => {
31
70
  const bn = new __XmlNode(_CDR);
32
71
  bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
33
72
  if (input[_CR] != null) {
34
- bn.c(__XmlNode.of(_st, input[_CR]).n(_CR));
73
+ bn.c(__XmlNode.of(_s, input[_CR]).n(_CR));
35
74
  }
36
75
  if (input[_E] != null) {
37
76
  bn.c(__XmlNode.of(_b, String(input[_E])).n(_E));
@@ -97,6 +136,35 @@ export const se_CreateCloudFrontOriginAccessIdentityCommand = async (input, cont
97
136
  b.m("POST").h(headers).b(body);
98
137
  return b.build();
99
138
  };
139
+ export const se_CreateConnectionGroupCommand = async (input, context) => {
140
+ const b = rb(input, context);
141
+ const headers = {
142
+ "content-type": "application/xml",
143
+ };
144
+ b.bp("/2020-05-31/connection-group");
145
+ let body;
146
+ body = _ve;
147
+ const bn = new __XmlNode(_CCGR);
148
+ bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
149
+ if (input[_AILI] != null) {
150
+ bn.c(__XmlNode.of(_s, input[_AILI]).n(_AILI));
151
+ }
152
+ if (input[_E] != null) {
153
+ bn.c(__XmlNode.of(_b, String(input[_E])).n(_E));
154
+ }
155
+ if (input[_IE] != null) {
156
+ bn.c(__XmlNode.of(_b, String(input[_IE])).n(_IE));
157
+ }
158
+ if (input[_N] != null) {
159
+ bn.c(__XmlNode.of(_s, input[_N]).n(_N));
160
+ }
161
+ if (input[_T] != null) {
162
+ bn.c(se_Tags(input[_T], context).n(_T));
163
+ }
164
+ body += bn.toString();
165
+ b.m("POST").h(headers).b(body);
166
+ return b.build();
167
+ };
100
168
  export const se_CreateContinuousDeploymentPolicyCommand = async (input, context) => {
101
169
  const b = rb(input, context);
102
170
  const headers = {
@@ -131,6 +199,43 @@ export const se_CreateDistributionCommand = async (input, context) => {
131
199
  b.m("POST").h(headers).b(body);
132
200
  return b.build();
133
201
  };
202
+ export const se_CreateDistributionTenantCommand = async (input, context) => {
203
+ const b = rb(input, context);
204
+ const headers = {
205
+ "content-type": "application/xml",
206
+ };
207
+ b.bp("/2020-05-31/distribution-tenant");
208
+ let body;
209
+ body = _ve;
210
+ const bn = new __XmlNode(_CDTR);
211
+ bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
212
+ if (input[_CGI] != null) {
213
+ bn.c(__XmlNode.of(_s, input[_CGI]).n(_CGI));
214
+ }
215
+ if (input[_C] != null) {
216
+ bn.c(se_Customizations(input[_C], context).n(_C));
217
+ }
218
+ if (input[_DI] != null) {
219
+ bn.c(__XmlNode.of(_s, input[_DI]).n(_DI));
220
+ }
221
+ bn.lc(input, "Domains", "Domains", () => se_DomainList(input[_D], context));
222
+ if (input[_E] != null) {
223
+ bn.c(__XmlNode.of(_b, String(input[_E])).n(_E));
224
+ }
225
+ if (input[_MCR] != null) {
226
+ bn.c(se_ManagedCertificateRequest(input[_MCR], context).n(_MCR));
227
+ }
228
+ if (input[_N] != null) {
229
+ bn.c(__XmlNode.of(_s, input[_N]).n(_N));
230
+ }
231
+ bn.lc(input, "Parameters", "Parameters", () => se_Parameters(input[_P], context));
232
+ if (input[_T] != null) {
233
+ bn.c(se_Tags(input[_T], context).n(_T));
234
+ }
235
+ body += bn.toString();
236
+ b.m("POST").h(headers).b(body);
237
+ return b.build();
238
+ };
134
239
  export const se_CreateDistributionWithTagsCommand = async (input, context) => {
135
240
  const b = rb(input, context);
136
241
  const headers = {
@@ -226,6 +331,24 @@ export const se_CreateInvalidationCommand = async (input, context) => {
226
331
  b.m("POST").h(headers).b(body);
227
332
  return b.build();
228
333
  };
334
+ export const se_CreateInvalidationForDistributionTenantCommand = async (input, context) => {
335
+ const b = rb(input, context);
336
+ const headers = {
337
+ "content-type": "application/xml",
338
+ };
339
+ b.bp("/2020-05-31/distribution-tenant/{Id}/invalidation");
340
+ b.p("Id", () => input.Id, "{Id}", false);
341
+ let body;
342
+ let contents;
343
+ if (input.InvalidationBatch !== undefined) {
344
+ contents = se_InvalidationBatch(input.InvalidationBatch, context);
345
+ body = _ve;
346
+ contents.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
347
+ body += contents.toString();
348
+ }
349
+ b.m("POST").h(headers).b(body);
350
+ return b.build();
351
+ };
229
352
  export const se_CreateKeyGroupCommand = async (input, context) => {
230
353
  const b = rb(input, context);
231
354
  const headers = {
@@ -253,8 +376,8 @@ export const se_CreateKeyValueStoreCommand = async (input, context) => {
253
376
  body = _ve;
254
377
  const bn = new __XmlNode(_CKVSR);
255
378
  bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
256
- if (input[_C] != null) {
257
- bn.c(__XmlNode.of(_KVSC, input[_C]).n(_C));
379
+ if (input[_Co] != null) {
380
+ bn.c(__XmlNode.of(_KVSC, input[_Co]).n(_Co));
258
381
  }
259
382
  if (input[_IS] != null) {
260
383
  bn.c(se_ImportSource(input[_IS], context).n(_IS));
@@ -348,7 +471,7 @@ export const se_CreateRealtimeLogConfigCommand = async (input, context) => {
348
471
  bn.lc(input, "EndPoints", "EndPoints", () => se_EndPointList(input[_EP], context));
349
472
  bn.lc(input, "Fields", "Fields", () => se_FieldList(input[_F], context));
350
473
  if (input[_N] != null) {
351
- bn.c(__XmlNode.of(_st, input[_N]).n(_N));
474
+ bn.c(__XmlNode.of(_s, input[_N]).n(_N));
352
475
  }
353
476
  if (input[_SR] != null) {
354
477
  bn.c(__XmlNode.of(_l, String(input[_SR])).n(_SR));
@@ -464,6 +587,17 @@ export const se_DeleteCloudFrontOriginAccessIdentityCommand = async (input, cont
464
587
  b.m("DELETE").h(headers).b(body);
465
588
  return b.build();
466
589
  };
590
+ export const se_DeleteConnectionGroupCommand = async (input, context) => {
591
+ const b = rb(input, context);
592
+ const headers = map({}, isSerializableHeaderValue, {
593
+ [_im]: input[_IM],
594
+ });
595
+ b.bp("/2020-05-31/connection-group/{Id}");
596
+ b.p("Id", () => input.Id, "{Id}", false);
597
+ let body;
598
+ b.m("DELETE").h(headers).b(body);
599
+ return b.build();
600
+ };
467
601
  export const se_DeleteContinuousDeploymentPolicyCommand = async (input, context) => {
468
602
  const b = rb(input, context);
469
603
  const headers = map({}, isSerializableHeaderValue, {
@@ -486,6 +620,17 @@ export const se_DeleteDistributionCommand = async (input, context) => {
486
620
  b.m("DELETE").h(headers).b(body);
487
621
  return b.build();
488
622
  };
623
+ export const se_DeleteDistributionTenantCommand = async (input, context) => {
624
+ const b = rb(input, context);
625
+ const headers = map({}, isSerializableHeaderValue, {
626
+ [_im]: input[_IM],
627
+ });
628
+ b.bp("/2020-05-31/distribution-tenant/{Id}");
629
+ b.p("Id", () => input.Id, "{Id}", false);
630
+ let body;
631
+ b.m("DELETE").h(headers).b(body);
632
+ return b.build();
633
+ };
489
634
  export const se_DeleteFieldLevelEncryptionConfigCommand = async (input, context) => {
490
635
  const b = rb(input, context);
491
636
  const headers = map({}, isSerializableHeaderValue, {
@@ -594,10 +739,10 @@ export const se_DeleteRealtimeLogConfigCommand = async (input, context) => {
594
739
  const bn = new __XmlNode(_DRLCR);
595
740
  bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
596
741
  if (input[_ARN] != null) {
597
- bn.c(__XmlNode.of(_st, input[_ARN]).n(_ARN));
742
+ bn.c(__XmlNode.of(_s, input[_ARN]).n(_ARN));
598
743
  }
599
744
  if (input[_N] != null) {
600
- bn.c(__XmlNode.of(_st, input[_N]).n(_N));
745
+ bn.c(__XmlNode.of(_s, input[_N]).n(_N));
601
746
  }
602
747
  body += bn.toString();
603
748
  b.m("POST").h(headers).b(body);
@@ -657,6 +802,28 @@ export const se_DescribeKeyValueStoreCommand = async (input, context) => {
657
802
  b.m("GET").h(headers).b(body);
658
803
  return b.build();
659
804
  };
805
+ export const se_DisassociateDistributionTenantWebACLCommand = async (input, context) => {
806
+ const b = rb(input, context);
807
+ const headers = map({}, isSerializableHeaderValue, {
808
+ [_im]: input[_IM],
809
+ });
810
+ b.bp("/2020-05-31/distribution-tenant/{Id}/disassociate-web-acl");
811
+ b.p("Id", () => input.Id, "{Id}", false);
812
+ let body;
813
+ b.m("PUT").h(headers).b(body);
814
+ return b.build();
815
+ };
816
+ export const se_DisassociateDistributionWebACLCommand = async (input, context) => {
817
+ const b = rb(input, context);
818
+ const headers = map({}, isSerializableHeaderValue, {
819
+ [_im]: input[_IM],
820
+ });
821
+ b.bp("/2020-05-31/distribution/{Id}/disassociate-web-acl");
822
+ b.p("Id", () => input.Id, "{Id}", false);
823
+ let body;
824
+ b.m("PUT").h(headers).b(body);
825
+ return b.build();
826
+ };
660
827
  export const se_GetAnycastIpListCommand = async (input, context) => {
661
828
  const b = rb(input, context);
662
829
  const headers = {};
@@ -702,6 +869,26 @@ export const se_GetCloudFrontOriginAccessIdentityConfigCommand = async (input, c
702
869
  b.m("GET").h(headers).b(body);
703
870
  return b.build();
704
871
  };
872
+ export const se_GetConnectionGroupCommand = async (input, context) => {
873
+ const b = rb(input, context);
874
+ const headers = {};
875
+ b.bp("/2020-05-31/connection-group/{Identifier}");
876
+ b.p("Identifier", () => input.Identifier, "{Identifier}", false);
877
+ let body;
878
+ b.m("GET").h(headers).b(body);
879
+ return b.build();
880
+ };
881
+ export const se_GetConnectionGroupByRoutingEndpointCommand = async (input, context) => {
882
+ const b = rb(input, context);
883
+ const headers = {};
884
+ b.bp("/2020-05-31/connection-group");
885
+ const query = map({
886
+ [_RE]: [, __expectNonNull(input[_RE], `RoutingEndpoint`)],
887
+ });
888
+ let body;
889
+ b.m("GET").h(headers).q(query).b(body);
890
+ return b.build();
891
+ };
705
892
  export const se_GetContinuousDeploymentPolicyCommand = async (input, context) => {
706
893
  const b = rb(input, context);
707
894
  const headers = {};
@@ -738,6 +925,26 @@ export const se_GetDistributionConfigCommand = async (input, context) => {
738
925
  b.m("GET").h(headers).b(body);
739
926
  return b.build();
740
927
  };
928
+ export const se_GetDistributionTenantCommand = async (input, context) => {
929
+ const b = rb(input, context);
930
+ const headers = {};
931
+ b.bp("/2020-05-31/distribution-tenant/{Identifier}");
932
+ b.p("Identifier", () => input.Identifier, "{Identifier}", false);
933
+ let body;
934
+ b.m("GET").h(headers).b(body);
935
+ return b.build();
936
+ };
937
+ export const se_GetDistributionTenantByDomainCommand = async (input, context) => {
938
+ const b = rb(input, context);
939
+ const headers = {};
940
+ b.bp("/2020-05-31/distribution-tenant");
941
+ const query = map({
942
+ [_d]: [, __expectNonNull(input[_Do], `Domain`)],
943
+ });
944
+ let body;
945
+ b.m("GET").h(headers).q(query).b(body);
946
+ return b.build();
947
+ };
741
948
  export const se_GetFieldLevelEncryptionCommand = async (input, context) => {
742
949
  const b = rb(input, context);
743
950
  const headers = {};
@@ -796,6 +1003,16 @@ export const se_GetInvalidationCommand = async (input, context) => {
796
1003
  b.m("GET").h(headers).b(body);
797
1004
  return b.build();
798
1005
  };
1006
+ export const se_GetInvalidationForDistributionTenantCommand = async (input, context) => {
1007
+ const b = rb(input, context);
1008
+ const headers = {};
1009
+ b.bp("/2020-05-31/distribution-tenant/{DistributionTenantId}/invalidation/{Id}");
1010
+ b.p("DistributionTenantId", () => input.DistributionTenantId, "{DistributionTenantId}", false);
1011
+ b.p("Id", () => input.Id, "{Id}", false);
1012
+ let body;
1013
+ b.m("GET").h(headers).b(body);
1014
+ return b.build();
1015
+ };
799
1016
  export const se_GetKeyGroupCommand = async (input, context) => {
800
1017
  const b = rb(input, context);
801
1018
  const headers = {};
@@ -814,6 +1031,15 @@ export const se_GetKeyGroupConfigCommand = async (input, context) => {
814
1031
  b.m("GET").h(headers).b(body);
815
1032
  return b.build();
816
1033
  };
1034
+ export const se_GetManagedCertificateDetailsCommand = async (input, context) => {
1035
+ const b = rb(input, context);
1036
+ const headers = {};
1037
+ b.bp("/2020-05-31/managed-certificate/{Identifier}");
1038
+ b.p("Identifier", () => input.Identifier, "{Identifier}", false);
1039
+ let body;
1040
+ b.m("GET").h(headers).b(body);
1041
+ return b.build();
1042
+ };
817
1043
  export const se_GetMonitoringSubscriptionCommand = async (input, context) => {
818
1044
  const b = rb(input, context);
819
1045
  const headers = {};
@@ -888,10 +1114,10 @@ export const se_GetRealtimeLogConfigCommand = async (input, context) => {
888
1114
  const bn = new __XmlNode(_GRLCR);
889
1115
  bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
890
1116
  if (input[_ARN] != null) {
891
- bn.c(__XmlNode.of(_st, input[_ARN]).n(_ARN));
1117
+ bn.c(__XmlNode.of(_s, input[_ARN]).n(_ARN));
892
1118
  }
893
1119
  if (input[_N] != null) {
894
- bn.c(__XmlNode.of(_st, input[_N]).n(_N));
1120
+ bn.c(__XmlNode.of(_s, input[_N]).n(_N));
895
1121
  }
896
1122
  body += bn.toString();
897
1123
  b.m("POST").h(headers).b(body);
@@ -993,6 +1219,29 @@ export const se_ListConflictingAliasesCommand = async (input, context) => {
993
1219
  b.m("GET").h(headers).q(query).b(body);
994
1220
  return b.build();
995
1221
  };
1222
+ export const se_ListConnectionGroupsCommand = async (input, context) => {
1223
+ const b = rb(input, context);
1224
+ const headers = {
1225
+ "content-type": "application/xml",
1226
+ };
1227
+ b.bp("/2020-05-31/connection-groups");
1228
+ let body;
1229
+ body = _ve;
1230
+ const bn = new __XmlNode(_LCGR);
1231
+ bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
1232
+ if (input[_AF] != null) {
1233
+ bn.c(se_ConnectionGroupAssociationFilter(input[_AF], context).n(_AF));
1234
+ }
1235
+ if (input[_M] != null) {
1236
+ bn.c(__XmlNode.of(_s, input[_M]).n(_M));
1237
+ }
1238
+ if (input[_MI] != null) {
1239
+ bn.c(__XmlNode.of(_i, String(input[_MI])).n(_MI));
1240
+ }
1241
+ body += bn.toString();
1242
+ b.m("POST").h(headers).b(body);
1243
+ return b.build();
1244
+ };
996
1245
  export const se_ListContinuousDeploymentPoliciesCommand = async (input, context) => {
997
1246
  const b = rb(input, context);
998
1247
  const headers = {};
@@ -1043,6 +1292,19 @@ export const se_ListDistributionsByCachePolicyIdCommand = async (input, context)
1043
1292
  b.m("GET").h(headers).q(query).b(body);
1044
1293
  return b.build();
1045
1294
  };
1295
+ export const se_ListDistributionsByConnectionModeCommand = async (input, context) => {
1296
+ const b = rb(input, context);
1297
+ const headers = {};
1298
+ b.bp("/2020-05-31/distributionsByConnectionMode/{ConnectionMode}");
1299
+ b.p("ConnectionMode", () => input.ConnectionMode, "{ConnectionMode}", false);
1300
+ const query = map({
1301
+ [_M]: [, input[_M]],
1302
+ [_MI]: [() => input.MaxItems !== void 0, () => input[_MI].toString()],
1303
+ });
1304
+ let body;
1305
+ b.m("GET").h(headers).q(query).b(body);
1306
+ return b.build();
1307
+ };
1046
1308
  export const se_ListDistributionsByKeyGroupCommand = async (input, context) => {
1047
1309
  const b = rb(input, context);
1048
1310
  const headers = {};
@@ -1080,16 +1342,16 @@ export const se_ListDistributionsByRealtimeLogConfigCommand = async (input, cont
1080
1342
  const bn = new __XmlNode(_LDBRLCR);
1081
1343
  bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
1082
1344
  if (input[_M] != null) {
1083
- bn.c(__XmlNode.of(_st, input[_M]).n(_M));
1345
+ bn.c(__XmlNode.of(_s, input[_M]).n(_M));
1084
1346
  }
1085
1347
  if (input[_MI] != null) {
1086
1348
  bn.c(__XmlNode.of(_i, String(input[_MI])).n(_MI));
1087
1349
  }
1088
1350
  if (input[_RLCA] != null) {
1089
- bn.c(__XmlNode.of(_st, input[_RLCA]).n(_RLCA));
1351
+ bn.c(__XmlNode.of(_s, input[_RLCA]).n(_RLCA));
1090
1352
  }
1091
1353
  if (input[_RLCN] != null) {
1092
- bn.c(__XmlNode.of(_st, input[_RLCN]).n(_RLCN));
1354
+ bn.c(__XmlNode.of(_s, input[_RLCN]).n(_RLCN));
1093
1355
  }
1094
1356
  body += bn.toString();
1095
1357
  b.m("POST").h(headers).b(body);
@@ -1134,6 +1396,81 @@ export const se_ListDistributionsByWebACLIdCommand = async (input, context) => {
1134
1396
  b.m("GET").h(headers).q(query).b(body);
1135
1397
  return b.build();
1136
1398
  };
1399
+ export const se_ListDistributionTenantsCommand = async (input, context) => {
1400
+ const b = rb(input, context);
1401
+ const headers = {
1402
+ "content-type": "application/xml",
1403
+ };
1404
+ b.bp("/2020-05-31/distribution-tenants");
1405
+ let body;
1406
+ body = _ve;
1407
+ const bn = new __XmlNode(_LDTR);
1408
+ bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
1409
+ if (input[_AF] != null) {
1410
+ bn.c(se_DistributionTenantAssociationFilter(input[_AF], context).n(_AF));
1411
+ }
1412
+ if (input[_M] != null) {
1413
+ bn.c(__XmlNode.of(_s, input[_M]).n(_M));
1414
+ }
1415
+ if (input[_MI] != null) {
1416
+ bn.c(__XmlNode.of(_i, String(input[_MI])).n(_MI));
1417
+ }
1418
+ body += bn.toString();
1419
+ b.m("POST").h(headers).b(body);
1420
+ return b.build();
1421
+ };
1422
+ export const se_ListDistributionTenantsByCustomizationCommand = async (input, context) => {
1423
+ const b = rb(input, context);
1424
+ const headers = {
1425
+ "content-type": "application/xml",
1426
+ };
1427
+ b.bp("/2020-05-31/distribution-tenants-by-customization");
1428
+ let body;
1429
+ body = _ve;
1430
+ const bn = new __XmlNode(_LDTBCR);
1431
+ bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
1432
+ if (input[_CA] != null) {
1433
+ bn.c(__XmlNode.of(_s, input[_CA]).n(_CA));
1434
+ }
1435
+ if (input[_M] != null) {
1436
+ bn.c(__XmlNode.of(_s, input[_M]).n(_M));
1437
+ }
1438
+ if (input[_MI] != null) {
1439
+ bn.c(__XmlNode.of(_i, String(input[_MI])).n(_MI));
1440
+ }
1441
+ if (input[_WACLA] != null) {
1442
+ bn.c(__XmlNode.of(_s, input[_WACLA]).n(_WACLA));
1443
+ }
1444
+ body += bn.toString();
1445
+ b.m("POST").h(headers).b(body);
1446
+ return b.build();
1447
+ };
1448
+ export const se_ListDomainConflictsCommand = async (input, context) => {
1449
+ const b = rb(input, context);
1450
+ const headers = {
1451
+ "content-type": "application/xml",
1452
+ };
1453
+ b.bp("/2020-05-31/domain-conflicts");
1454
+ let body;
1455
+ body = _ve;
1456
+ const bn = new __XmlNode(_LDCR);
1457
+ bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
1458
+ if (input[_Do] != null) {
1459
+ bn.c(__XmlNode.of(_s, input[_Do]).n(_Do));
1460
+ }
1461
+ if (input[_DCVR] != null) {
1462
+ bn.c(se_DistributionResourceId(input[_DCVR], context).n(_DCVR));
1463
+ }
1464
+ if (input[_M] != null) {
1465
+ bn.c(__XmlNode.of(_s, input[_M]).n(_M));
1466
+ }
1467
+ if (input[_MI] != null) {
1468
+ bn.c(__XmlNode.of(_i, String(input[_MI])).n(_MI));
1469
+ }
1470
+ body += bn.toString();
1471
+ b.m("POST").h(headers).b(body);
1472
+ return b.build();
1473
+ };
1137
1474
  export const se_ListFieldLevelEncryptionConfigsCommand = async (input, context) => {
1138
1475
  const b = rb(input, context);
1139
1476
  const headers = {};
@@ -1184,6 +1521,19 @@ export const se_ListInvalidationsCommand = async (input, context) => {
1184
1521
  b.m("GET").h(headers).q(query).b(body);
1185
1522
  return b.build();
1186
1523
  };
1524
+ export const se_ListInvalidationsForDistributionTenantCommand = async (input, context) => {
1525
+ const b = rb(input, context);
1526
+ const headers = {};
1527
+ b.bp("/2020-05-31/distribution-tenant/{Id}/invalidation");
1528
+ b.p("Id", () => input.Id, "{Id}", false);
1529
+ const query = map({
1530
+ [_M]: [, input[_M]],
1531
+ [_MI]: [() => input.MaxItems !== void 0, () => input[_MI].toString()],
1532
+ });
1533
+ let body;
1534
+ b.m("GET").h(headers).q(query).b(body);
1535
+ return b.build();
1536
+ };
1187
1537
  export const se_ListKeyGroupsCommand = async (input, context) => {
1188
1538
  const b = rb(input, context);
1189
1539
  const headers = {};
@@ -1419,6 +1769,31 @@ export const se_UpdateCloudFrontOriginAccessIdentityCommand = async (input, cont
1419
1769
  b.m("PUT").h(headers).b(body);
1420
1770
  return b.build();
1421
1771
  };
1772
+ export const se_UpdateConnectionGroupCommand = async (input, context) => {
1773
+ const b = rb(input, context);
1774
+ const headers = map({}, isSerializableHeaderValue, {
1775
+ "content-type": "application/xml",
1776
+ [_im]: input[_IM],
1777
+ });
1778
+ b.bp("/2020-05-31/connection-group/{Id}");
1779
+ b.p("Id", () => input.Id, "{Id}", false);
1780
+ let body;
1781
+ body = _ve;
1782
+ const bn = new __XmlNode(_UCGR);
1783
+ bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
1784
+ if (input[_AILI] != null) {
1785
+ bn.c(__XmlNode.of(_s, input[_AILI]).n(_AILI));
1786
+ }
1787
+ if (input[_E] != null) {
1788
+ bn.c(__XmlNode.of(_b, String(input[_E])).n(_E));
1789
+ }
1790
+ if (input[_IE] != null) {
1791
+ bn.c(__XmlNode.of(_b, String(input[_IE])).n(_IE));
1792
+ }
1793
+ body += bn.toString();
1794
+ b.m("PUT").h(headers).b(body);
1795
+ return b.build();
1796
+ };
1422
1797
  export const se_UpdateContinuousDeploymentPolicyCommand = async (input, context) => {
1423
1798
  const b = rb(input, context);
1424
1799
  const headers = map({}, isSerializableHeaderValue, {
@@ -1457,6 +1832,39 @@ export const se_UpdateDistributionCommand = async (input, context) => {
1457
1832
  b.m("PUT").h(headers).b(body);
1458
1833
  return b.build();
1459
1834
  };
1835
+ export const se_UpdateDistributionTenantCommand = async (input, context) => {
1836
+ const b = rb(input, context);
1837
+ const headers = map({}, isSerializableHeaderValue, {
1838
+ "content-type": "application/xml",
1839
+ [_im]: input[_IM],
1840
+ });
1841
+ b.bp("/2020-05-31/distribution-tenant/{Id}");
1842
+ b.p("Id", () => input.Id, "{Id}", false);
1843
+ let body;
1844
+ body = _ve;
1845
+ const bn = new __XmlNode(_UDTR);
1846
+ bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
1847
+ if (input[_CGI] != null) {
1848
+ bn.c(__XmlNode.of(_s, input[_CGI]).n(_CGI));
1849
+ }
1850
+ if (input[_C] != null) {
1851
+ bn.c(se_Customizations(input[_C], context).n(_C));
1852
+ }
1853
+ if (input[_DI] != null) {
1854
+ bn.c(__XmlNode.of(_s, input[_DI]).n(_DI));
1855
+ }
1856
+ bn.lc(input, "Domains", "Domains", () => se_DomainList(input[_D], context));
1857
+ if (input[_E] != null) {
1858
+ bn.c(__XmlNode.of(_b, String(input[_E])).n(_E));
1859
+ }
1860
+ if (input[_MCR] != null) {
1861
+ bn.c(se_ManagedCertificateRequest(input[_MCR], context).n(_MCR));
1862
+ }
1863
+ bn.lc(input, "Parameters", "Parameters", () => se_Parameters(input[_P], context));
1864
+ body += bn.toString();
1865
+ b.m("PUT").h(headers).b(body);
1866
+ return b.build();
1867
+ };
1460
1868
  export const se_UpdateDistributionWithStagingConfigCommand = async (input, context) => {
1461
1869
  const b = rb(input, context);
1462
1870
  const headers = map({}, isSerializableHeaderValue, {
@@ -1471,6 +1879,27 @@ export const se_UpdateDistributionWithStagingConfigCommand = async (input, conte
1471
1879
  b.m("PUT").h(headers).q(query).b(body);
1472
1880
  return b.build();
1473
1881
  };
1882
+ export const se_UpdateDomainAssociationCommand = async (input, context) => {
1883
+ const b = rb(input, context);
1884
+ const headers = map({}, isSerializableHeaderValue, {
1885
+ "content-type": "application/xml",
1886
+ [_im]: input[_IM],
1887
+ });
1888
+ b.bp("/2020-05-31/domain-association");
1889
+ let body;
1890
+ body = _ve;
1891
+ const bn = new __XmlNode(_UDAR);
1892
+ bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
1893
+ if (input[_Do] != null) {
1894
+ bn.c(__XmlNode.of(_s, input[_Do]).n(_Do));
1895
+ }
1896
+ if (input[_TR] != null) {
1897
+ bn.c(se_DistributionResourceId(input[_TR], context).n(_TR));
1898
+ }
1899
+ body += bn.toString();
1900
+ b.m("POST").h(headers).b(body);
1901
+ return b.build();
1902
+ };
1474
1903
  export const se_UpdateFieldLevelEncryptionConfigCommand = async (input, context) => {
1475
1904
  const b = rb(input, context);
1476
1905
  const headers = map({}, isSerializableHeaderValue, {
@@ -1562,8 +1991,8 @@ export const se_UpdateKeyValueStoreCommand = async (input, context) => {
1562
1991
  body = _ve;
1563
1992
  const bn = new __XmlNode(_UKVSR);
1564
1993
  bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
1565
- if (input[_C] != null) {
1566
- bn.c(__XmlNode.of(_KVSC, input[_C]).n(_C));
1994
+ if (input[_Co] != null) {
1995
+ bn.c(__XmlNode.of(_KVSC, input[_Co]).n(_Co));
1567
1996
  }
1568
1997
  body += bn.toString();
1569
1998
  b.m("PUT").h(headers).b(body);
@@ -1637,12 +2066,12 @@ export const se_UpdateRealtimeLogConfigCommand = async (input, context) => {
1637
2066
  const bn = new __XmlNode(_URLCR);
1638
2067
  bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
1639
2068
  if (input[_ARN] != null) {
1640
- bn.c(__XmlNode.of(_st, input[_ARN]).n(_ARN));
2069
+ bn.c(__XmlNode.of(_s, input[_ARN]).n(_ARN));
1641
2070
  }
1642
2071
  bn.lc(input, "EndPoints", "EndPoints", () => se_EndPointList(input[_EP], context));
1643
2072
  bn.lc(input, "Fields", "Fields", () => se_FieldList(input[_F], context));
1644
2073
  if (input[_N] != null) {
1645
- bn.c(__XmlNode.of(_st, input[_N]).n(_N));
2074
+ bn.c(__XmlNode.of(_s, input[_N]).n(_N));
1646
2075
  }
1647
2076
  if (input[_SR] != null) {
1648
2077
  bn.c(__XmlNode.of(_l, String(input[_SR])).n(_SR));
@@ -1705,17 +2134,71 @@ export const se_UpdateVpcOriginCommand = async (input, context) => {
1705
2134
  contents.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
1706
2135
  body += contents.toString();
1707
2136
  }
1708
- b.m("PUT").h(headers).b(body);
1709
- return b.build();
2137
+ b.m("PUT").h(headers).b(body);
2138
+ return b.build();
2139
+ };
2140
+ export const se_VerifyDnsConfigurationCommand = async (input, context) => {
2141
+ const b = rb(input, context);
2142
+ const headers = {
2143
+ "content-type": "application/xml",
2144
+ };
2145
+ b.bp("/2020-05-31/verify-dns-configuration");
2146
+ let body;
2147
+ body = _ve;
2148
+ const bn = new __XmlNode(_VDCR);
2149
+ bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
2150
+ if (input[_Do] != null) {
2151
+ bn.c(__XmlNode.of(_s, input[_Do]).n(_Do));
2152
+ }
2153
+ if (input[_I] != null) {
2154
+ bn.c(__XmlNode.of(_s, input[_I]).n(_I));
2155
+ }
2156
+ body += bn.toString();
2157
+ b.m("POST").h(headers).b(body);
2158
+ return b.build();
2159
+ };
2160
+ export const de_AssociateAliasCommand = async (output, context) => {
2161
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
2162
+ return de_CommandError(output, context);
2163
+ }
2164
+ const contents = map({
2165
+ $metadata: deserializeMetadata(output),
2166
+ });
2167
+ await collectBody(output.body, context);
2168
+ return contents;
2169
+ };
2170
+ export const de_AssociateDistributionTenantWebACLCommand = async (output, context) => {
2171
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
2172
+ return de_CommandError(output, context);
2173
+ }
2174
+ const contents = map({
2175
+ $metadata: deserializeMetadata(output),
2176
+ [_ET]: [, output.headers[_e]],
2177
+ });
2178
+ const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
2179
+ if (data[_Id] != null) {
2180
+ contents[_Id] = __expectString(data[_Id]);
2181
+ }
2182
+ if (data[_WACLA] != null) {
2183
+ contents[_WACLA] = __expectString(data[_WACLA]);
2184
+ }
2185
+ return contents;
1710
2186
  };
1711
- export const de_AssociateAliasCommand = async (output, context) => {
2187
+ export const de_AssociateDistributionWebACLCommand = async (output, context) => {
1712
2188
  if (output.statusCode !== 200 && output.statusCode >= 300) {
1713
2189
  return de_CommandError(output, context);
1714
2190
  }
1715
2191
  const contents = map({
1716
2192
  $metadata: deserializeMetadata(output),
2193
+ [_ET]: [, output.headers[_e]],
1717
2194
  });
1718
- await collectBody(output.body, context);
2195
+ const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
2196
+ if (data[_Id] != null) {
2197
+ contents[_Id] = __expectString(data[_Id]);
2198
+ }
2199
+ if (data[_WACLA] != null) {
2200
+ contents[_WACLA] = __expectString(data[_WACLA]);
2201
+ }
1719
2202
  return contents;
1720
2203
  };
1721
2204
  export const de_CopyDistributionCommand = async (output, context) => {
@@ -1769,6 +2252,18 @@ export const de_CreateCloudFrontOriginAccessIdentityCommand = async (output, con
1769
2252
  contents.CloudFrontOriginAccessIdentity = de_CloudFrontOriginAccessIdentity(data, context);
1770
2253
  return contents;
1771
2254
  };
2255
+ export const de_CreateConnectionGroupCommand = async (output, context) => {
2256
+ if (output.statusCode !== 201 && output.statusCode >= 300) {
2257
+ return de_CommandError(output, context);
2258
+ }
2259
+ const contents = map({
2260
+ $metadata: deserializeMetadata(output),
2261
+ [_ET]: [, output.headers[_e]],
2262
+ });
2263
+ const data = __expectObject(await parseBody(output.body, context));
2264
+ contents.ConnectionGroup = de_ConnectionGroup(data, context);
2265
+ return contents;
2266
+ };
1772
2267
  export const de_CreateContinuousDeploymentPolicyCommand = async (output, context) => {
1773
2268
  if (output.statusCode !== 201 && output.statusCode >= 300) {
1774
2269
  return de_CommandError(output, context);
@@ -1795,6 +2290,18 @@ export const de_CreateDistributionCommand = async (output, context) => {
1795
2290
  contents.Distribution = de_Distribution(data, context);
1796
2291
  return contents;
1797
2292
  };
2293
+ export const de_CreateDistributionTenantCommand = async (output, context) => {
2294
+ if (output.statusCode !== 201 && output.statusCode >= 300) {
2295
+ return de_CommandError(output, context);
2296
+ }
2297
+ const contents = map({
2298
+ $metadata: deserializeMetadata(output),
2299
+ [_ET]: [, output.headers[_e]],
2300
+ });
2301
+ const data = __expectObject(await parseBody(output.body, context));
2302
+ contents.DistributionTenant = de_DistributionTenant(data, context);
2303
+ return contents;
2304
+ };
1798
2305
  export const de_CreateDistributionWithTagsCommand = async (output, context) => {
1799
2306
  if (output.statusCode !== 201 && output.statusCode >= 300) {
1800
2307
  return de_CommandError(output, context);
@@ -1859,6 +2366,18 @@ export const de_CreateInvalidationCommand = async (output, context) => {
1859
2366
  contents.Invalidation = de_Invalidation(data, context);
1860
2367
  return contents;
1861
2368
  };
2369
+ export const de_CreateInvalidationForDistributionTenantCommand = async (output, context) => {
2370
+ if (output.statusCode !== 201 && output.statusCode >= 300) {
2371
+ return de_CommandError(output, context);
2372
+ }
2373
+ const contents = map({
2374
+ $metadata: deserializeMetadata(output),
2375
+ [_L]: [, output.headers[_lo]],
2376
+ });
2377
+ const data = __expectObject(await parseBody(output.body, context));
2378
+ contents.Invalidation = de_Invalidation(data, context);
2379
+ return contents;
2380
+ };
1862
2381
  export const de_CreateKeyGroupCommand = async (output, context) => {
1863
2382
  if (output.statusCode !== 201 && output.statusCode >= 300) {
1864
2383
  return de_CommandError(output, context);
@@ -2030,6 +2549,16 @@ export const de_DeleteCloudFrontOriginAccessIdentityCommand = async (output, con
2030
2549
  await collectBody(output.body, context);
2031
2550
  return contents;
2032
2551
  };
2552
+ export const de_DeleteConnectionGroupCommand = async (output, context) => {
2553
+ if (output.statusCode !== 204 && output.statusCode >= 300) {
2554
+ return de_CommandError(output, context);
2555
+ }
2556
+ const contents = map({
2557
+ $metadata: deserializeMetadata(output),
2558
+ });
2559
+ await collectBody(output.body, context);
2560
+ return contents;
2561
+ };
2033
2562
  export const de_DeleteContinuousDeploymentPolicyCommand = async (output, context) => {
2034
2563
  if (output.statusCode !== 204 && output.statusCode >= 300) {
2035
2564
  return de_CommandError(output, context);
@@ -2050,6 +2579,16 @@ export const de_DeleteDistributionCommand = async (output, context) => {
2050
2579
  await collectBody(output.body, context);
2051
2580
  return contents;
2052
2581
  };
2582
+ export const de_DeleteDistributionTenantCommand = async (output, context) => {
2583
+ if (output.statusCode !== 204 && output.statusCode >= 300) {
2584
+ return de_CommandError(output, context);
2585
+ }
2586
+ const contents = map({
2587
+ $metadata: deserializeMetadata(output),
2588
+ });
2589
+ await collectBody(output.body, context);
2590
+ return contents;
2591
+ };
2053
2592
  export const de_DeleteFieldLevelEncryptionConfigCommand = async (output, context) => {
2054
2593
  if (output.statusCode !== 204 && output.statusCode >= 300) {
2055
2594
  return de_CommandError(output, context);
@@ -2206,6 +2745,34 @@ export const de_DescribeKeyValueStoreCommand = async (output, context) => {
2206
2745
  contents.KeyValueStore = de_KeyValueStore(data, context);
2207
2746
  return contents;
2208
2747
  };
2748
+ export const de_DisassociateDistributionTenantWebACLCommand = async (output, context) => {
2749
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
2750
+ return de_CommandError(output, context);
2751
+ }
2752
+ const contents = map({
2753
+ $metadata: deserializeMetadata(output),
2754
+ [_ET]: [, output.headers[_e]],
2755
+ });
2756
+ const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
2757
+ if (data[_Id] != null) {
2758
+ contents[_Id] = __expectString(data[_Id]);
2759
+ }
2760
+ return contents;
2761
+ };
2762
+ export const de_DisassociateDistributionWebACLCommand = async (output, context) => {
2763
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
2764
+ return de_CommandError(output, context);
2765
+ }
2766
+ const contents = map({
2767
+ $metadata: deserializeMetadata(output),
2768
+ [_ET]: [, output.headers[_e]],
2769
+ });
2770
+ const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
2771
+ if (data[_Id] != null) {
2772
+ contents[_Id] = __expectString(data[_Id]);
2773
+ }
2774
+ return contents;
2775
+ };
2209
2776
  export const de_GetAnycastIpListCommand = async (output, context) => {
2210
2777
  if (output.statusCode !== 200 && output.statusCode >= 300) {
2211
2778
  return de_CommandError(output, context);
@@ -2266,6 +2833,30 @@ export const de_GetCloudFrontOriginAccessIdentityConfigCommand = async (output,
2266
2833
  contents.CloudFrontOriginAccessIdentityConfig = de_CloudFrontOriginAccessIdentityConfig(data, context);
2267
2834
  return contents;
2268
2835
  };
2836
+ export const de_GetConnectionGroupCommand = async (output, context) => {
2837
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
2838
+ return de_CommandError(output, context);
2839
+ }
2840
+ const contents = map({
2841
+ $metadata: deserializeMetadata(output),
2842
+ [_ET]: [, output.headers[_e]],
2843
+ });
2844
+ const data = __expectObject(await parseBody(output.body, context));
2845
+ contents.ConnectionGroup = de_ConnectionGroup(data, context);
2846
+ return contents;
2847
+ };
2848
+ export const de_GetConnectionGroupByRoutingEndpointCommand = async (output, context) => {
2849
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
2850
+ return de_CommandError(output, context);
2851
+ }
2852
+ const contents = map({
2853
+ $metadata: deserializeMetadata(output),
2854
+ [_ET]: [, output.headers[_e]],
2855
+ });
2856
+ const data = __expectObject(await parseBody(output.body, context));
2857
+ contents.ConnectionGroup = de_ConnectionGroup(data, context);
2858
+ return contents;
2859
+ };
2269
2860
  export const de_GetContinuousDeploymentPolicyCommand = async (output, context) => {
2270
2861
  if (output.statusCode !== 200 && output.statusCode >= 300) {
2271
2862
  return de_CommandError(output, context);
@@ -2314,6 +2905,30 @@ export const de_GetDistributionConfigCommand = async (output, context) => {
2314
2905
  contents.DistributionConfig = de_DistributionConfig(data, context);
2315
2906
  return contents;
2316
2907
  };
2908
+ export const de_GetDistributionTenantCommand = async (output, context) => {
2909
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
2910
+ return de_CommandError(output, context);
2911
+ }
2912
+ const contents = map({
2913
+ $metadata: deserializeMetadata(output),
2914
+ [_ET]: [, output.headers[_e]],
2915
+ });
2916
+ const data = __expectObject(await parseBody(output.body, context));
2917
+ contents.DistributionTenant = de_DistributionTenant(data, context);
2918
+ return contents;
2919
+ };
2920
+ export const de_GetDistributionTenantByDomainCommand = async (output, context) => {
2921
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
2922
+ return de_CommandError(output, context);
2923
+ }
2924
+ const contents = map({
2925
+ $metadata: deserializeMetadata(output),
2926
+ [_ET]: [, output.headers[_e]],
2927
+ });
2928
+ const data = __expectObject(await parseBody(output.body, context));
2929
+ contents.DistributionTenant = de_DistributionTenant(data, context);
2930
+ return contents;
2931
+ };
2317
2932
  export const de_GetFieldLevelEncryptionCommand = async (output, context) => {
2318
2933
  if (output.statusCode !== 200 && output.statusCode >= 300) {
2319
2934
  return de_CommandError(output, context);
@@ -2386,6 +3001,17 @@ export const de_GetInvalidationCommand = async (output, context) => {
2386
3001
  contents.Invalidation = de_Invalidation(data, context);
2387
3002
  return contents;
2388
3003
  };
3004
+ export const de_GetInvalidationForDistributionTenantCommand = async (output, context) => {
3005
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
3006
+ return de_CommandError(output, context);
3007
+ }
3008
+ const contents = map({
3009
+ $metadata: deserializeMetadata(output),
3010
+ });
3011
+ const data = __expectObject(await parseBody(output.body, context));
3012
+ contents.Invalidation = de_Invalidation(data, context);
3013
+ return contents;
3014
+ };
2389
3015
  export const de_GetKeyGroupCommand = async (output, context) => {
2390
3016
  if (output.statusCode !== 200 && output.statusCode >= 300) {
2391
3017
  return de_CommandError(output, context);
@@ -2410,6 +3036,17 @@ export const de_GetKeyGroupConfigCommand = async (output, context) => {
2410
3036
  contents.KeyGroupConfig = de_KeyGroupConfig(data, context);
2411
3037
  return contents;
2412
3038
  };
3039
+ export const de_GetManagedCertificateDetailsCommand = async (output, context) => {
3040
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
3041
+ return de_CommandError(output, context);
3042
+ }
3043
+ const contents = map({
3044
+ $metadata: deserializeMetadata(output),
3045
+ });
3046
+ const data = __expectObject(await parseBody(output.body, context));
3047
+ contents.ManagedCertificateDetails = de_ManagedCertificateDetails(data, context);
3048
+ return contents;
3049
+ };
2413
3050
  export const de_GetMonitoringSubscriptionCommand = async (output, context) => {
2414
3051
  if (output.statusCode !== 200 && output.statusCode >= 300) {
2415
3052
  return de_CommandError(output, context);
@@ -2610,6 +3247,25 @@ export const de_ListConflictingAliasesCommand = async (output, context) => {
2610
3247
  contents.ConflictingAliasesList = de_ConflictingAliasesList(data, context);
2611
3248
  return contents;
2612
3249
  };
3250
+ export const de_ListConnectionGroupsCommand = async (output, context) => {
3251
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
3252
+ return de_CommandError(output, context);
3253
+ }
3254
+ const contents = map({
3255
+ $metadata: deserializeMetadata(output),
3256
+ });
3257
+ const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
3258
+ if (data.ConnectionGroups === "") {
3259
+ contents[_CG] = [];
3260
+ }
3261
+ else if (data[_CG] != null && data[_CG][_CGS] != null) {
3262
+ contents[_CG] = de_ConnectionGroupSummaryList(__getArrayIfSingleItem(data[_CG][_CGS]), context);
3263
+ }
3264
+ if (data[_NM] != null) {
3265
+ contents[_NM] = __expectString(data[_NM]);
3266
+ }
3267
+ return contents;
3268
+ };
2613
3269
  export const de_ListContinuousDeploymentPoliciesCommand = async (output, context) => {
2614
3270
  if (output.statusCode !== 200 && output.statusCode >= 300) {
2615
3271
  return de_CommandError(output, context);
@@ -2654,6 +3310,17 @@ export const de_ListDistributionsByCachePolicyIdCommand = async (output, context
2654
3310
  contents.DistributionIdList = de_DistributionIdList(data, context);
2655
3311
  return contents;
2656
3312
  };
3313
+ export const de_ListDistributionsByConnectionModeCommand = async (output, context) => {
3314
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
3315
+ return de_CommandError(output, context);
3316
+ }
3317
+ const contents = map({
3318
+ $metadata: deserializeMetadata(output),
3319
+ });
3320
+ const data = __expectObject(await parseBody(output.body, context));
3321
+ contents.DistributionList = de_DistributionList(data, context);
3322
+ return contents;
3323
+ };
2657
3324
  export const de_ListDistributionsByKeyGroupCommand = async (output, context) => {
2658
3325
  if (output.statusCode !== 200 && output.statusCode >= 300) {
2659
3326
  return de_CommandError(output, context);
@@ -2720,6 +3387,63 @@ export const de_ListDistributionsByWebACLIdCommand = async (output, context) =>
2720
3387
  contents.DistributionList = de_DistributionList(data, context);
2721
3388
  return contents;
2722
3389
  };
3390
+ export const de_ListDistributionTenantsCommand = async (output, context) => {
3391
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
3392
+ return de_CommandError(output, context);
3393
+ }
3394
+ const contents = map({
3395
+ $metadata: deserializeMetadata(output),
3396
+ });
3397
+ const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
3398
+ if (data.DistributionTenantList === "") {
3399
+ contents[_DTL] = [];
3400
+ }
3401
+ else if (data[_DTL] != null && data[_DTL][_DTS] != null) {
3402
+ contents[_DTL] = de_DistributionTenantList(__getArrayIfSingleItem(data[_DTL][_DTS]), context);
3403
+ }
3404
+ if (data[_NM] != null) {
3405
+ contents[_NM] = __expectString(data[_NM]);
3406
+ }
3407
+ return contents;
3408
+ };
3409
+ export const de_ListDistributionTenantsByCustomizationCommand = async (output, context) => {
3410
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
3411
+ return de_CommandError(output, context);
3412
+ }
3413
+ const contents = map({
3414
+ $metadata: deserializeMetadata(output),
3415
+ });
3416
+ const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
3417
+ if (data.DistributionTenantList === "") {
3418
+ contents[_DTL] = [];
3419
+ }
3420
+ else if (data[_DTL] != null && data[_DTL][_DTS] != null) {
3421
+ contents[_DTL] = de_DistributionTenantList(__getArrayIfSingleItem(data[_DTL][_DTS]), context);
3422
+ }
3423
+ if (data[_NM] != null) {
3424
+ contents[_NM] = __expectString(data[_NM]);
3425
+ }
3426
+ return contents;
3427
+ };
3428
+ export const de_ListDomainConflictsCommand = async (output, context) => {
3429
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
3430
+ return de_CommandError(output, context);
3431
+ }
3432
+ const contents = map({
3433
+ $metadata: deserializeMetadata(output),
3434
+ });
3435
+ const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
3436
+ if (data.DomainConflicts === "") {
3437
+ contents[_DC] = [];
3438
+ }
3439
+ else if (data[_DC] != null && data[_DC][_DC] != null) {
3440
+ contents[_DC] = de_DomainConflictsList(__getArrayIfSingleItem(data[_DC][_DC]), context);
3441
+ }
3442
+ if (data[_NM] != null) {
3443
+ contents[_NM] = __expectString(data[_NM]);
3444
+ }
3445
+ return contents;
3446
+ };
2723
3447
  export const de_ListFieldLevelEncryptionConfigsCommand = async (output, context) => {
2724
3448
  if (output.statusCode !== 200 && output.statusCode >= 300) {
2725
3449
  return de_CommandError(output, context);
@@ -2764,6 +3488,17 @@ export const de_ListInvalidationsCommand = async (output, context) => {
2764
3488
  contents.InvalidationList = de_InvalidationList(data, context);
2765
3489
  return contents;
2766
3490
  };
3491
+ export const de_ListInvalidationsForDistributionTenantCommand = async (output, context) => {
3492
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
3493
+ return de_CommandError(output, context);
3494
+ }
3495
+ const contents = map({
3496
+ $metadata: deserializeMetadata(output),
3497
+ });
3498
+ const data = __expectObject(await parseBody(output.body, context));
3499
+ contents.InvalidationList = de_InvalidationList(data, context);
3500
+ return contents;
3501
+ };
2767
3502
  export const de_ListKeyGroupsCommand = async (output, context) => {
2768
3503
  if (output.statusCode !== 200 && output.statusCode >= 300) {
2769
3504
  return de_CommandError(output, context);
@@ -2940,6 +3675,18 @@ export const de_UpdateCloudFrontOriginAccessIdentityCommand = async (output, con
2940
3675
  contents.CloudFrontOriginAccessIdentity = de_CloudFrontOriginAccessIdentity(data, context);
2941
3676
  return contents;
2942
3677
  };
3678
+ export const de_UpdateConnectionGroupCommand = async (output, context) => {
3679
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
3680
+ return de_CommandError(output, context);
3681
+ }
3682
+ const contents = map({
3683
+ $metadata: deserializeMetadata(output),
3684
+ [_ET]: [, output.headers[_e]],
3685
+ });
3686
+ const data = __expectObject(await parseBody(output.body, context));
3687
+ contents.ConnectionGroup = de_ConnectionGroup(data, context);
3688
+ return contents;
3689
+ };
2943
3690
  export const de_UpdateContinuousDeploymentPolicyCommand = async (output, context) => {
2944
3691
  if (output.statusCode !== 200 && output.statusCode >= 300) {
2945
3692
  return de_CommandError(output, context);
@@ -2964,6 +3711,18 @@ export const de_UpdateDistributionCommand = async (output, context) => {
2964
3711
  contents.Distribution = de_Distribution(data, context);
2965
3712
  return contents;
2966
3713
  };
3714
+ export const de_UpdateDistributionTenantCommand = async (output, context) => {
3715
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
3716
+ return de_CommandError(output, context);
3717
+ }
3718
+ const contents = map({
3719
+ $metadata: deserializeMetadata(output),
3720
+ [_ET]: [, output.headers[_e]],
3721
+ });
3722
+ const data = __expectObject(await parseBody(output.body, context));
3723
+ contents.DistributionTenant = de_DistributionTenant(data, context);
3724
+ return contents;
3725
+ };
2967
3726
  export const de_UpdateDistributionWithStagingConfigCommand = async (output, context) => {
2968
3727
  if (output.statusCode !== 200 && output.statusCode >= 300) {
2969
3728
  return de_CommandError(output, context);
@@ -2976,6 +3735,23 @@ export const de_UpdateDistributionWithStagingConfigCommand = async (output, cont
2976
3735
  contents.Distribution = de_Distribution(data, context);
2977
3736
  return contents;
2978
3737
  };
3738
+ export const de_UpdateDomainAssociationCommand = async (output, context) => {
3739
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
3740
+ return de_CommandError(output, context);
3741
+ }
3742
+ const contents = map({
3743
+ $metadata: deserializeMetadata(output),
3744
+ [_ET]: [, output.headers[_e]],
3745
+ });
3746
+ const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
3747
+ if (data[_Do] != null) {
3748
+ contents[_Do] = __expectString(data[_Do]);
3749
+ }
3750
+ if (data[_RI] != null) {
3751
+ contents[_RI] = __expectString(data[_RI]);
3752
+ }
3753
+ return contents;
3754
+ };
2979
3755
  export const de_UpdateFieldLevelEncryptionConfigCommand = async (output, context) => {
2980
3756
  if (output.statusCode !== 200 && output.statusCode >= 300) {
2981
3757
  return de_CommandError(output, context);
@@ -3109,16 +3885,32 @@ export const de_UpdateStreamingDistributionCommand = async (output, context) =>
3109
3885
  contents.StreamingDistribution = de_StreamingDistribution(data, context);
3110
3886
  return contents;
3111
3887
  };
3112
- export const de_UpdateVpcOriginCommand = async (output, context) => {
3113
- if (output.statusCode !== 202 && output.statusCode >= 300) {
3888
+ export const de_UpdateVpcOriginCommand = async (output, context) => {
3889
+ if (output.statusCode !== 202 && output.statusCode >= 300) {
3890
+ return de_CommandError(output, context);
3891
+ }
3892
+ const contents = map({
3893
+ $metadata: deserializeMetadata(output),
3894
+ [_ET]: [, output.headers[_e]],
3895
+ });
3896
+ const data = __expectObject(await parseBody(output.body, context));
3897
+ contents.VpcOrigin = de_VpcOrigin(data, context);
3898
+ return contents;
3899
+ };
3900
+ export const de_VerifyDnsConfigurationCommand = async (output, context) => {
3901
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
3114
3902
  return de_CommandError(output, context);
3115
3903
  }
3116
3904
  const contents = map({
3117
3905
  $metadata: deserializeMetadata(output),
3118
- [_ET]: [, output.headers[_e]],
3119
3906
  });
3120
- const data = __expectObject(await parseBody(output.body, context));
3121
- contents.VpcOrigin = de_VpcOrigin(data, context);
3907
+ const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
3908
+ if (data.DnsConfigurationList === "") {
3909
+ contents[_DCL] = [];
3910
+ }
3911
+ else if (data[_DCL] != null && data[_DCL][_DCn] != null) {
3912
+ contents[_DCL] = de_DnsConfigurationList(__getArrayIfSingleItem(data[_DCL][_DCn]), context);
3913
+ }
3122
3914
  return contents;
3123
3915
  };
3124
3916
  const de_CommandError = async (output, context) => {
@@ -3143,6 +3935,15 @@ const de_CommandError = async (output, context) => {
3143
3935
  case "TooManyDistributionCNAMEs":
3144
3936
  case "com.amazonaws.cloudfront#TooManyDistributionCNAMEs":
3145
3937
  throw await de_TooManyDistributionCNAMEsRes(parsedOutput, context);
3938
+ case "EntityNotFound":
3939
+ case "com.amazonaws.cloudfront#EntityNotFound":
3940
+ throw await de_EntityNotFoundRes(parsedOutput, context);
3941
+ case "InvalidIfMatchVersion":
3942
+ case "com.amazonaws.cloudfront#InvalidIfMatchVersion":
3943
+ throw await de_InvalidIfMatchVersionRes(parsedOutput, context);
3944
+ case "PreconditionFailed":
3945
+ case "com.amazonaws.cloudfront#PreconditionFailed":
3946
+ throw await de_PreconditionFailedRes(parsedOutput, context);
3146
3947
  case "CNAMEAlreadyExists":
3147
3948
  case "com.amazonaws.cloudfront#CNAMEAlreadyExists":
3148
3949
  throw await de_CNAMEAlreadyExistsRes(parsedOutput, context);
@@ -3173,9 +3974,6 @@ const de_CommandError = async (output, context) => {
3173
3974
  case "InvalidHeadersForS3Origin":
3174
3975
  case "com.amazonaws.cloudfront#InvalidHeadersForS3Origin":
3175
3976
  throw await de_InvalidHeadersForS3OriginRes(parsedOutput, context);
3176
- case "InvalidIfMatchVersion":
3177
- case "com.amazonaws.cloudfront#InvalidIfMatchVersion":
3178
- throw await de_InvalidIfMatchVersionRes(parsedOutput, context);
3179
3977
  case "InvalidLambdaFunctionAssociation":
3180
3978
  case "com.amazonaws.cloudfront#InvalidLambdaFunctionAssociation":
3181
3979
  throw await de_InvalidLambdaFunctionAssociationRes(parsedOutput, context);
@@ -3245,9 +4043,6 @@ const de_CommandError = async (output, context) => {
3245
4043
  case "NoSuchResponseHeadersPolicy":
3246
4044
  case "com.amazonaws.cloudfront#NoSuchResponseHeadersPolicy":
3247
4045
  throw await de_NoSuchResponseHeadersPolicyRes(parsedOutput, context);
3248
- case "PreconditionFailed":
3249
- case "com.amazonaws.cloudfront#PreconditionFailed":
3250
- throw await de_PreconditionFailedRes(parsedOutput, context);
3251
4046
  case "RealtimeLogConfigOwnerMismatch":
3252
4047
  case "com.amazonaws.cloudfront#RealtimeLogConfigOwnerMismatch":
3253
4048
  throw await de_RealtimeLogConfigOwnerMismatchRes(parsedOutput, context);
@@ -3368,9 +4163,6 @@ const de_CommandError = async (output, context) => {
3368
4163
  case "ContinuousDeploymentPolicyInUse":
3369
4164
  case "com.amazonaws.cloudfront#ContinuousDeploymentPolicyInUse":
3370
4165
  throw await de_ContinuousDeploymentPolicyInUseRes(parsedOutput, context);
3371
- case "EntityNotFound":
3372
- case "com.amazonaws.cloudfront#EntityNotFound":
3373
- throw await de_EntityNotFoundRes(parsedOutput, context);
3374
4166
  case "IllegalOriginAccessConfiguration":
3375
4167
  case "com.amazonaws.cloudfront#IllegalOriginAccessConfiguration":
3376
4168
  throw await de_IllegalOriginAccessConfigurationRes(parsedOutput, context);
@@ -3380,6 +4172,9 @@ const de_CommandError = async (output, context) => {
3380
4172
  case "NoSuchContinuousDeploymentPolicy":
3381
4173
  case "com.amazonaws.cloudfront#NoSuchContinuousDeploymentPolicy":
3382
4174
  throw await de_NoSuchContinuousDeploymentPolicyRes(parsedOutput, context);
4175
+ case "InvalidAssociation":
4176
+ case "com.amazonaws.cloudfront#InvalidAssociation":
4177
+ throw await de_InvalidAssociationRes(parsedOutput, context);
3383
4178
  case "FieldLevelEncryptionConfigAlreadyExists":
3384
4179
  case "com.amazonaws.cloudfront#FieldLevelEncryptionConfigAlreadyExists":
3385
4180
  throw await de_FieldLevelEncryptionConfigAlreadyExistsRes(parsedOutput, context);
@@ -3518,9 +4313,15 @@ const de_CommandError = async (output, context) => {
3518
4313
  case "NoSuchCloudFrontOriginAccessIdentity":
3519
4314
  case "com.amazonaws.cloudfront#NoSuchCloudFrontOriginAccessIdentity":
3520
4315
  throw await de_NoSuchCloudFrontOriginAccessIdentityRes(parsedOutput, context);
4316
+ case "ResourceNotDisabled":
4317
+ case "com.amazonaws.cloudfront#ResourceNotDisabled":
4318
+ throw await de_ResourceNotDisabledRes(parsedOutput, context);
3521
4319
  case "DistributionNotDisabled":
3522
4320
  case "com.amazonaws.cloudfront#DistributionNotDisabled":
3523
4321
  throw await de_DistributionNotDisabledRes(parsedOutput, context);
4322
+ case "ResourceInUse":
4323
+ case "com.amazonaws.cloudfront#ResourceInUse":
4324
+ throw await de_ResourceInUseRes(parsedOutput, context);
3524
4325
  case "FieldLevelEncryptionConfigInUse":
3525
4326
  case "com.amazonaws.cloudfront#FieldLevelEncryptionConfigInUse":
3526
4327
  throw await de_FieldLevelEncryptionConfigInUseRes(parsedOutput, context);
@@ -3536,9 +4337,6 @@ const de_CommandError = async (output, context) => {
3536
4337
  case "NoSuchResource":
3537
4338
  case "com.amazonaws.cloudfront#NoSuchResource":
3538
4339
  throw await de_NoSuchResourceRes(parsedOutput, context);
3539
- case "ResourceInUse":
3540
- case "com.amazonaws.cloudfront#ResourceInUse":
3541
- throw await de_ResourceInUseRes(parsedOutput, context);
3542
4340
  case "NoSuchMonitoringSubscription":
3543
4341
  case "com.amazonaws.cloudfront#NoSuchMonitoringSubscription":
3544
4342
  throw await de_NoSuchMonitoringSubscriptionRes(parsedOutput, context);
@@ -3972,6 +4770,18 @@ const de_InvalidArgumentRes = async (parsedOutput, context) => {
3972
4770
  });
3973
4771
  return __decorateServiceException(exception, parsedOutput.body.Error);
3974
4772
  };
4773
+ const de_InvalidAssociationRes = async (parsedOutput, context) => {
4774
+ const contents = map({});
4775
+ const data = parsedOutput.body.Error;
4776
+ if (data[_Me] != null) {
4777
+ contents[_Me] = __expectString(data[_Me]);
4778
+ }
4779
+ const exception = new InvalidAssociation({
4780
+ $metadata: deserializeMetadata(parsedOutput),
4781
+ ...contents,
4782
+ });
4783
+ return __decorateServiceException(exception, parsedOutput.body.Error);
4784
+ };
3975
4785
  const de_InvalidDefaultRootObjectRes = async (parsedOutput, context) => {
3976
4786
  const contents = map({});
3977
4787
  const data = parsedOutput.body.Error;
@@ -4656,6 +5466,18 @@ const de_ResourceInUseRes = async (parsedOutput, context) => {
4656
5466
  });
4657
5467
  return __decorateServiceException(exception, parsedOutput.body.Error);
4658
5468
  };
5469
+ const de_ResourceNotDisabledRes = async (parsedOutput, context) => {
5470
+ const contents = map({});
5471
+ const data = parsedOutput.body.Error;
5472
+ if (data[_Me] != null) {
5473
+ contents[_Me] = __expectString(data[_Me]);
5474
+ }
5475
+ const exception = new ResourceNotDisabled({
5476
+ $metadata: deserializeMetadata(parsedOutput),
5477
+ ...contents,
5478
+ });
5479
+ return __decorateServiceException(exception, parsedOutput.body.Error);
5480
+ };
4659
5481
  const de_ResponseHeadersPolicyAlreadyExistsRes = async (parsedOutput, context) => {
4660
5482
  const contents = map({});
4661
5483
  const data = parsedOutput.body.Error;
@@ -5392,7 +6214,7 @@ const se_AccessControlAllowHeadersList = (input, context) => {
5392
6214
  return input
5393
6215
  .filter((e) => e != null)
5394
6216
  .map((entry) => {
5395
- const n = __XmlNode.of(_st, entry);
6217
+ const n = __XmlNode.of(_s, entry);
5396
6218
  return n.n(_H);
5397
6219
  });
5398
6220
  };
@@ -5408,7 +6230,7 @@ const se_AccessControlAllowOriginsList = (input, context) => {
5408
6230
  return input
5409
6231
  .filter((e) => e != null)
5410
6232
  .map((entry) => {
5411
- const n = __XmlNode.of(_st, entry);
6233
+ const n = __XmlNode.of(_s, entry);
5412
6234
  return n.n(_Or);
5413
6235
  });
5414
6236
  };
@@ -5416,7 +6238,7 @@ const se_AccessControlExposeHeadersList = (input, context) => {
5416
6238
  return input
5417
6239
  .filter((e) => e != null)
5418
6240
  .map((entry) => {
5419
- const n = __XmlNode.of(_st, entry);
6241
+ const n = __XmlNode.of(_s, entry);
5420
6242
  return n.n(_H);
5421
6243
  });
5422
6244
  };
@@ -5425,14 +6247,14 @@ const se_Aliases = (input, context) => {
5425
6247
  if (input[_Q] != null) {
5426
6248
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
5427
6249
  }
5428
- bn.lc(input, "Items", "Items", () => se_AliasList(input[_I], context));
6250
+ bn.lc(input, "Items", "Items", () => se_AliasList(input[_It], context));
5429
6251
  return bn;
5430
6252
  };
5431
6253
  const se_AliasList = (input, context) => {
5432
6254
  return input
5433
6255
  .filter((e) => e != null)
5434
6256
  .map((entry) => {
5435
- const n = __XmlNode.of(_st, entry);
6257
+ const n = __XmlNode.of(_s, entry);
5436
6258
  return n.n(_CNAME);
5437
6259
  });
5438
6260
  };
@@ -5441,7 +6263,7 @@ const se_AllowedMethods = (input, context) => {
5441
6263
  if (input[_Q] != null) {
5442
6264
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
5443
6265
  }
5444
- bn.lc(input, "Items", "Items", () => se_MethodsList(input[_I], context));
6266
+ bn.lc(input, "Items", "Items", () => se_MethodsList(input[_It], context));
5445
6267
  if (input[_CM] != null) {
5446
6268
  bn.c(se_CachedMethods(input[_CM], context).n(_CM));
5447
6269
  }
@@ -5451,17 +6273,17 @@ const se_AwsAccountNumberList = (input, context) => {
5451
6273
  return input
5452
6274
  .filter((e) => e != null)
5453
6275
  .map((entry) => {
5454
- const n = __XmlNode.of(_st, entry);
6276
+ const n = __XmlNode.of(_s, entry);
5455
6277
  return n.n(_AAN);
5456
6278
  });
5457
6279
  };
5458
6280
  const se_CacheBehavior = (input, context) => {
5459
6281
  const bn = new __XmlNode(_CB);
5460
6282
  if (input[_PP] != null) {
5461
- bn.c(__XmlNode.of(_st, input[_PP]).n(_PP));
6283
+ bn.c(__XmlNode.of(_s, input[_PP]).n(_PP));
5462
6284
  }
5463
6285
  if (input[_TOI] != null) {
5464
- bn.c(__XmlNode.of(_st, input[_TOI]).n(_TOI));
6286
+ bn.c(__XmlNode.of(_s, input[_TOI]).n(_TOI));
5465
6287
  }
5466
6288
  if (input[_TS] != null) {
5467
6289
  bn.c(se_TrustedSigners(input[_TS], context).n(_TS));
@@ -5476,8 +6298,8 @@ const se_CacheBehavior = (input, context) => {
5476
6298
  if (input[_SS] != null) {
5477
6299
  bn.c(__XmlNode.of(_b, String(input[_SS])).n(_SS));
5478
6300
  }
5479
- if (input[_Co] != null) {
5480
- bn.c(__XmlNode.of(_b, String(input[_Co])).n(_Co));
6301
+ if (input[_Com] != null) {
6302
+ bn.c(__XmlNode.of(_b, String(input[_Com])).n(_Com));
5481
6303
  }
5482
6304
  if (input[_LFA] != null) {
5483
6305
  bn.c(se_LambdaFunctionAssociations(input[_LFA], context).n(_LFA));
@@ -5486,19 +6308,19 @@ const se_CacheBehavior = (input, context) => {
5486
6308
  bn.c(se_FunctionAssociations(input[_FA], context).n(_FA));
5487
6309
  }
5488
6310
  if (input[_FLEI] != null) {
5489
- bn.c(__XmlNode.of(_st, input[_FLEI]).n(_FLEI));
6311
+ bn.c(__XmlNode.of(_s, input[_FLEI]).n(_FLEI));
5490
6312
  }
5491
6313
  if (input[_RLCA] != null) {
5492
- bn.c(__XmlNode.of(_st, input[_RLCA]).n(_RLCA));
6314
+ bn.c(__XmlNode.of(_s, input[_RLCA]).n(_RLCA));
5493
6315
  }
5494
6316
  if (input[_CPI] != null) {
5495
- bn.c(__XmlNode.of(_st, input[_CPI]).n(_CPI));
6317
+ bn.c(__XmlNode.of(_s, input[_CPI]).n(_CPI));
5496
6318
  }
5497
6319
  if (input[_ORPI] != null) {
5498
- bn.c(__XmlNode.of(_st, input[_ORPI]).n(_ORPI));
6320
+ bn.c(__XmlNode.of(_s, input[_ORPI]).n(_ORPI));
5499
6321
  }
5500
6322
  if (input[_RHPI] != null) {
5501
- bn.c(__XmlNode.of(_st, input[_RHPI]).n(_RHPI));
6323
+ bn.c(__XmlNode.of(_s, input[_RHPI]).n(_RHPI));
5502
6324
  }
5503
6325
  if (input[_GC] != null) {
5504
6326
  bn.c(se_GrpcConfig(input[_GC], context).n(_GC));
@@ -5530,7 +6352,7 @@ const se_CacheBehaviors = (input, context) => {
5530
6352
  if (input[_Q] != null) {
5531
6353
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
5532
6354
  }
5533
- bn.lc(input, "Items", "Items", () => se_CacheBehaviorList(input[_I], context));
6355
+ bn.lc(input, "Items", "Items", () => se_CacheBehaviorList(input[_It], context));
5534
6356
  return bn;
5535
6357
  };
5536
6358
  const se_CachedMethods = (input, context) => {
@@ -5538,16 +6360,16 @@ const se_CachedMethods = (input, context) => {
5538
6360
  if (input[_Q] != null) {
5539
6361
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
5540
6362
  }
5541
- bn.lc(input, "Items", "Items", () => se_MethodsList(input[_I], context));
6363
+ bn.lc(input, "Items", "Items", () => se_MethodsList(input[_It], context));
5542
6364
  return bn;
5543
6365
  };
5544
6366
  const se_CachePolicyConfig = (input, context) => {
5545
6367
  const bn = new __XmlNode(_CPC);
5546
- if (input[_C] != null) {
5547
- bn.c(__XmlNode.of(_st, input[_C]).n(_C));
6368
+ if (input[_Co] != null) {
6369
+ bn.c(__XmlNode.of(_s, input[_Co]).n(_Co));
5548
6370
  }
5549
6371
  if (input[_N] != null) {
5550
- bn.c(__XmlNode.of(_st, input[_N]).n(_N));
6372
+ bn.c(__XmlNode.of(_s, input[_N]).n(_N));
5551
6373
  }
5552
6374
  if (input[_DTTL] != null) {
5553
6375
  bn.c(__XmlNode.of(_l, String(input[_DTTL])).n(_DTTL));
@@ -5593,13 +6415,27 @@ const se_CachePolicyQueryStringsConfig = (input, context) => {
5593
6415
  }
5594
6416
  return bn;
5595
6417
  };
6418
+ const se_Certificate = (input, context) => {
6419
+ const bn = new __XmlNode(_Ce);
6420
+ if (input[_Ar] != null) {
6421
+ bn.c(__XmlNode.of(_s, input[_Ar]).n(_Ar));
6422
+ }
6423
+ return bn;
6424
+ };
5596
6425
  const se_CloudFrontOriginAccessIdentityConfig = (input, context) => {
5597
6426
  const bn = new __XmlNode(_CFOAIC);
5598
6427
  if (input[_CR] != null) {
5599
- bn.c(__XmlNode.of(_st, input[_CR]).n(_CR));
6428
+ bn.c(__XmlNode.of(_s, input[_CR]).n(_CR));
5600
6429
  }
5601
- if (input[_C] != null) {
5602
- bn.c(__XmlNode.of(_st, input[_C]).n(_C));
6430
+ if (input[_Co] != null) {
6431
+ bn.c(__XmlNode.of(_s, input[_Co]).n(_Co));
6432
+ }
6433
+ return bn;
6434
+ };
6435
+ const se_ConnectionGroupAssociationFilter = (input, context) => {
6436
+ const bn = new __XmlNode(_CGAF);
6437
+ if (input[_AILI] != null) {
6438
+ bn.c(__XmlNode.of(_s, input[_AILI]).n(_AILI));
5603
6439
  }
5604
6440
  return bn;
5605
6441
  };
@@ -5607,10 +6443,10 @@ const se_ContentTypeProfile = (input, context) => {
5607
6443
  const bn = new __XmlNode(_CTP);
5608
6444
  bn.cc(input, _Fo);
5609
6445
  if (input[_PI] != null) {
5610
- bn.c(__XmlNode.of(_st, input[_PI]).n(_PI));
6446
+ bn.c(__XmlNode.of(_s, input[_PI]).n(_PI));
5611
6447
  }
5612
6448
  if (input[_CT] != null) {
5613
- bn.c(__XmlNode.of(_st, input[_CT]).n(_CT));
6449
+ bn.c(__XmlNode.of(_s, input[_CT]).n(_CT));
5614
6450
  }
5615
6451
  return bn;
5616
6452
  };
@@ -5637,7 +6473,7 @@ const se_ContentTypeProfiles = (input, context) => {
5637
6473
  if (input[_Q] != null) {
5638
6474
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
5639
6475
  }
5640
- bn.lc(input, "Items", "Items", () => se_ContentTypeProfileList(input[_I], context));
6476
+ bn.lc(input, "Items", "Items", () => se_ContentTypeProfileList(input[_It], context));
5641
6477
  return bn;
5642
6478
  };
5643
6479
  const se_ContinuousDeploymentPolicyConfig = (input, context) => {
@@ -5656,10 +6492,10 @@ const se_ContinuousDeploymentPolicyConfig = (input, context) => {
5656
6492
  const se_ContinuousDeploymentSingleHeaderConfig = (input, context) => {
5657
6493
  const bn = new __XmlNode(_CDSHC);
5658
6494
  if (input[_H] != null) {
5659
- bn.c(__XmlNode.of(_st, input[_H]).n(_H));
6495
+ bn.c(__XmlNode.of(_s, input[_H]).n(_H));
5660
6496
  }
5661
6497
  if (input[_V] != null) {
5662
- bn.c(__XmlNode.of(_st, input[_V]).n(_V));
6498
+ bn.c(__XmlNode.of(_s, input[_V]).n(_V));
5663
6499
  }
5664
6500
  return bn;
5665
6501
  };
@@ -5677,7 +6513,7 @@ const se_CookieNameList = (input, context) => {
5677
6513
  return input
5678
6514
  .filter((e) => e != null)
5679
6515
  .map((entry) => {
5680
- const n = __XmlNode.of(_st, entry);
6516
+ const n = __XmlNode.of(_s, entry);
5681
6517
  return n.n(_N);
5682
6518
  });
5683
6519
  };
@@ -5686,7 +6522,7 @@ const se_CookieNames = (input, context) => {
5686
6522
  if (input[_Q] != null) {
5687
6523
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
5688
6524
  }
5689
- bn.lc(input, "Items", "Items", () => se_CookieNameList(input[_I], context));
6525
+ bn.lc(input, "Items", "Items", () => se_CookieNameList(input[_It], context));
5690
6526
  return bn;
5691
6527
  };
5692
6528
  const se_CookiePreference = (input, context) => {
@@ -5705,10 +6541,10 @@ const se_CustomErrorResponse = (input, context) => {
5705
6541
  bn.c(__XmlNode.of(_i, String(input[_EC])).n(_EC));
5706
6542
  }
5707
6543
  if (input[_RPP] != null) {
5708
- bn.c(__XmlNode.of(_st, input[_RPP]).n(_RPP));
6544
+ bn.c(__XmlNode.of(_s, input[_RPP]).n(_RPP));
5709
6545
  }
5710
6546
  if (input[_RC] != null) {
5711
- bn.c(__XmlNode.of(_st, input[_RC]).n(_RC));
6547
+ bn.c(__XmlNode.of(_s, input[_RC]).n(_RC));
5712
6548
  }
5713
6549
  if (input[_ECMTTL] != null) {
5714
6550
  bn.c(__XmlNode.of(_l, String(input[_ECMTTL])).n(_ECMTTL));
@@ -5728,7 +6564,7 @@ const se_CustomErrorResponses = (input, context) => {
5728
6564
  if (input[_Q] != null) {
5729
6565
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
5730
6566
  }
5731
- bn.lc(input, "Items", "Items", () => se_CustomErrorResponseList(input[_I], context));
6567
+ bn.lc(input, "Items", "Items", () => se_CustomErrorResponseList(input[_It], context));
5732
6568
  return bn;
5733
6569
  };
5734
6570
  const se_CustomHeaders = (input, context) => {
@@ -5736,7 +6572,20 @@ const se_CustomHeaders = (input, context) => {
5736
6572
  if (input[_Q] != null) {
5737
6573
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
5738
6574
  }
5739
- bn.lc(input, "Items", "Items", () => se_OriginCustomHeadersList(input[_I], context));
6575
+ bn.lc(input, "Items", "Items", () => se_OriginCustomHeadersList(input[_It], context));
6576
+ return bn;
6577
+ };
6578
+ const se_Customizations = (input, context) => {
6579
+ const bn = new __XmlNode(_C);
6580
+ if (input[_WA] != null) {
6581
+ bn.c(se_WebAclCustomization(input[_WA], context).n(_WA));
6582
+ }
6583
+ if (input[_Ce] != null) {
6584
+ bn.c(se_Certificate(input[_Ce], context).n(_Ce));
6585
+ }
6586
+ if (input[_GR] != null) {
6587
+ bn.c(se_GeoRestrictionCustomization(input[_GR], context).n(_GR));
6588
+ }
5740
6589
  return bn;
5741
6590
  };
5742
6591
  const se_CustomOriginConfig = (input, context) => {
@@ -5762,7 +6611,7 @@ const se_CustomOriginConfig = (input, context) => {
5762
6611
  const se_DefaultCacheBehavior = (input, context) => {
5763
6612
  const bn = new __XmlNode(_DCB);
5764
6613
  if (input[_TOI] != null) {
5765
- bn.c(__XmlNode.of(_st, input[_TOI]).n(_TOI));
6614
+ bn.c(__XmlNode.of(_s, input[_TOI]).n(_TOI));
5766
6615
  }
5767
6616
  if (input[_TS] != null) {
5768
6617
  bn.c(se_TrustedSigners(input[_TS], context).n(_TS));
@@ -5777,8 +6626,8 @@ const se_DefaultCacheBehavior = (input, context) => {
5777
6626
  if (input[_SS] != null) {
5778
6627
  bn.c(__XmlNode.of(_b, String(input[_SS])).n(_SS));
5779
6628
  }
5780
- if (input[_Co] != null) {
5781
- bn.c(__XmlNode.of(_b, String(input[_Co])).n(_Co));
6629
+ if (input[_Com] != null) {
6630
+ bn.c(__XmlNode.of(_b, String(input[_Com])).n(_Com));
5782
6631
  }
5783
6632
  if (input[_LFA] != null) {
5784
6633
  bn.c(se_LambdaFunctionAssociations(input[_LFA], context).n(_LFA));
@@ -5787,19 +6636,19 @@ const se_DefaultCacheBehavior = (input, context) => {
5787
6636
  bn.c(se_FunctionAssociations(input[_FA], context).n(_FA));
5788
6637
  }
5789
6638
  if (input[_FLEI] != null) {
5790
- bn.c(__XmlNode.of(_st, input[_FLEI]).n(_FLEI));
6639
+ bn.c(__XmlNode.of(_s, input[_FLEI]).n(_FLEI));
5791
6640
  }
5792
6641
  if (input[_RLCA] != null) {
5793
- bn.c(__XmlNode.of(_st, input[_RLCA]).n(_RLCA));
6642
+ bn.c(__XmlNode.of(_s, input[_RLCA]).n(_RLCA));
5794
6643
  }
5795
6644
  if (input[_CPI] != null) {
5796
- bn.c(__XmlNode.of(_st, input[_CPI]).n(_CPI));
6645
+ bn.c(__XmlNode.of(_s, input[_CPI]).n(_CPI));
5797
6646
  }
5798
6647
  if (input[_ORPI] != null) {
5799
- bn.c(__XmlNode.of(_st, input[_ORPI]).n(_ORPI));
6648
+ bn.c(__XmlNode.of(_s, input[_ORPI]).n(_ORPI));
5800
6649
  }
5801
6650
  if (input[_RHPI] != null) {
5802
- bn.c(__XmlNode.of(_st, input[_RHPI]).n(_RHPI));
6651
+ bn.c(__XmlNode.of(_s, input[_RHPI]).n(_RHPI));
5803
6652
  }
5804
6653
  if (input[_GC] != null) {
5805
6654
  bn.c(se_GrpcConfig(input[_GC], context).n(_GC));
@@ -5819,15 +6668,15 @@ const se_DefaultCacheBehavior = (input, context) => {
5819
6668
  return bn;
5820
6669
  };
5821
6670
  const se_DistributionConfig = (input, context) => {
5822
- const bn = new __XmlNode(_DC);
6671
+ const bn = new __XmlNode(_DCi);
5823
6672
  if (input[_CR] != null) {
5824
- bn.c(__XmlNode.of(_st, input[_CR]).n(_CR));
6673
+ bn.c(__XmlNode.of(_s, input[_CR]).n(_CR));
5825
6674
  }
5826
6675
  if (input[_Al] != null) {
5827
6676
  bn.c(se_Aliases(input[_Al], context).n(_Al));
5828
6677
  }
5829
6678
  if (input[_DRO] != null) {
5830
- bn.c(__XmlNode.of(_st, input[_DRO]).n(_DRO));
6679
+ bn.c(__XmlNode.of(_s, input[_DRO]).n(_DRO));
5831
6680
  }
5832
6681
  if (input[_Ori] != null) {
5833
6682
  bn.c(se_Origins(input[_Ori], context).n(_Ori));
@@ -5844,8 +6693,8 @@ const se_DistributionConfig = (input, context) => {
5844
6693
  if (input[_CERu] != null) {
5845
6694
  bn.c(se_CustomErrorResponses(input[_CERu], context).n(_CERu));
5846
6695
  }
5847
- if (input[_C] != null) {
5848
- bn.c(__XmlNode.of(_CTo, input[_C]).n(_C));
6696
+ if (input[_Co] != null) {
6697
+ bn.c(__XmlNode.of(_CTo, input[_Co]).n(_Co));
5849
6698
  }
5850
6699
  if (input[_Lo] != null) {
5851
6700
  bn.c(se_LoggingConfig(input[_Lo], context).n(_Lo));
@@ -5861,48 +6710,87 @@ const se_DistributionConfig = (input, context) => {
5861
6710
  bn.c(se_Restrictions(input[_Re], context).n(_Re));
5862
6711
  }
5863
6712
  if (input[_WACLI] != null) {
5864
- bn.c(__XmlNode.of(_st, input[_WACLI]).n(_WACLI));
6713
+ bn.c(__XmlNode.of(_s, input[_WACLI]).n(_WACLI));
5865
6714
  }
5866
6715
  bn.cc(input, _HV);
5867
6716
  if (input[_IIPVE] != null) {
5868
6717
  bn.c(__XmlNode.of(_b, String(input[_IIPVE])).n(_IIPVE));
5869
6718
  }
5870
6719
  if (input[_CDPI] != null) {
5871
- bn.c(__XmlNode.of(_st, input[_CDPI]).n(_CDPI));
6720
+ bn.c(__XmlNode.of(_s, input[_CDPI]).n(_CDPI));
5872
6721
  }
5873
6722
  if (input[_S] != null) {
5874
6723
  bn.c(__XmlNode.of(_b, String(input[_S])).n(_S));
5875
6724
  }
5876
6725
  if (input[_AILI] != null) {
5877
- bn.c(__XmlNode.of(_st, input[_AILI]).n(_AILI));
6726
+ bn.c(__XmlNode.of(_s, input[_AILI]).n(_AILI));
5878
6727
  }
6728
+ if (input[_TCe] != null) {
6729
+ bn.c(se_TenantConfig(input[_TCe], context).n(_TCe));
6730
+ }
6731
+ bn.cc(input, _CMo);
5879
6732
  return bn;
5880
6733
  };
5881
6734
  const se_DistributionConfigWithTags = (input, context) => {
5882
6735
  const bn = new __XmlNode(_DCWT);
5883
- if (input[_DC] != null) {
5884
- bn.c(se_DistributionConfig(input[_DC], context).n(_DC));
6736
+ if (input[_DCi] != null) {
6737
+ bn.c(se_DistributionConfig(input[_DCi], context).n(_DCi));
5885
6738
  }
5886
6739
  if (input[_T] != null) {
5887
6740
  bn.c(se_Tags(input[_T], context).n(_T));
5888
6741
  }
5889
6742
  return bn;
5890
6743
  };
6744
+ const se_DistributionResourceId = (input, context) => {
6745
+ const bn = new __XmlNode(_DRI);
6746
+ if (input[_DI] != null) {
6747
+ bn.c(__XmlNode.of(_s, input[_DI]).n(_DI));
6748
+ }
6749
+ if (input[_DTI] != null) {
6750
+ bn.c(__XmlNode.of(_s, input[_DTI]).n(_DTI));
6751
+ }
6752
+ return bn;
6753
+ };
6754
+ const se_DistributionTenantAssociationFilter = (input, context) => {
6755
+ const bn = new __XmlNode(_DTAF);
6756
+ if (input[_DI] != null) {
6757
+ bn.c(__XmlNode.of(_s, input[_DI]).n(_DI));
6758
+ }
6759
+ if (input[_CGI] != null) {
6760
+ bn.c(__XmlNode.of(_s, input[_CGI]).n(_CGI));
6761
+ }
6762
+ return bn;
6763
+ };
6764
+ const se_DomainItem = (input, context) => {
6765
+ const bn = new __XmlNode(_DIo);
6766
+ if (input[_Do] != null) {
6767
+ bn.c(__XmlNode.of(_s, input[_Do]).n(_Do));
6768
+ }
6769
+ return bn;
6770
+ };
6771
+ const se_DomainList = (input, context) => {
6772
+ return input
6773
+ .filter((e) => e != null)
6774
+ .map((entry) => {
6775
+ const n = se_DomainItem(entry, context);
6776
+ return n.n(_m);
6777
+ });
6778
+ };
5891
6779
  const se_EncryptionEntities = (input, context) => {
5892
6780
  const bn = new __XmlNode(_EE);
5893
6781
  if (input[_Q] != null) {
5894
6782
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
5895
6783
  }
5896
- bn.lc(input, "Items", "Items", () => se_EncryptionEntityList(input[_I], context));
6784
+ bn.lc(input, "Items", "Items", () => se_EncryptionEntityList(input[_It], context));
5897
6785
  return bn;
5898
6786
  };
5899
6787
  const se_EncryptionEntity = (input, context) => {
5900
6788
  const bn = new __XmlNode(_EEn);
5901
6789
  if (input[_PKI] != null) {
5902
- bn.c(__XmlNode.of(_st, input[_PKI]).n(_PKI));
6790
+ bn.c(__XmlNode.of(_s, input[_PKI]).n(_PKI));
5903
6791
  }
5904
6792
  if (input[_PIr] != null) {
5905
- bn.c(__XmlNode.of(_st, input[_PIr]).n(_PIr));
6793
+ bn.c(__XmlNode.of(_s, input[_PIr]).n(_PIr));
5906
6794
  }
5907
6795
  if (input[_FP] != null) {
5908
6796
  bn.c(se_FieldPatterns(input[_FP], context).n(_FP));
@@ -5920,7 +6808,7 @@ const se_EncryptionEntityList = (input, context) => {
5920
6808
  const se_EndPoint = (input, context) => {
5921
6809
  const bn = new __XmlNode(_EPn);
5922
6810
  if (input[_ST] != null) {
5923
- bn.c(__XmlNode.of(_st, input[_ST]).n(_ST));
6811
+ bn.c(__XmlNode.of(_s, input[_ST]).n(_ST));
5924
6812
  }
5925
6813
  if (input[_KSC] != null) {
5926
6814
  bn.c(se_KinesisStreamConfig(input[_KSC], context).n(_KSC));
@@ -5938,10 +6826,10 @@ const se_EndPointList = (input, context) => {
5938
6826
  const se_FieldLevelEncryptionConfig = (input, context) => {
5939
6827
  const bn = new __XmlNode(_FLEC);
5940
6828
  if (input[_CR] != null) {
5941
- bn.c(__XmlNode.of(_st, input[_CR]).n(_CR));
6829
+ bn.c(__XmlNode.of(_s, input[_CR]).n(_CR));
5942
6830
  }
5943
- if (input[_C] != null) {
5944
- bn.c(__XmlNode.of(_st, input[_C]).n(_C));
6831
+ if (input[_Co] != null) {
6832
+ bn.c(__XmlNode.of(_s, input[_Co]).n(_Co));
5945
6833
  }
5946
6834
  if (input[_QAPC] != null) {
5947
6835
  bn.c(se_QueryArgProfileConfig(input[_QAPC], context).n(_QAPC));
@@ -5954,13 +6842,13 @@ const se_FieldLevelEncryptionConfig = (input, context) => {
5954
6842
  const se_FieldLevelEncryptionProfileConfig = (input, context) => {
5955
6843
  const bn = new __XmlNode(_FLEPC);
5956
6844
  if (input[_N] != null) {
5957
- bn.c(__XmlNode.of(_st, input[_N]).n(_N));
6845
+ bn.c(__XmlNode.of(_s, input[_N]).n(_N));
5958
6846
  }
5959
6847
  if (input[_CR] != null) {
5960
- bn.c(__XmlNode.of(_st, input[_CR]).n(_CR));
6848
+ bn.c(__XmlNode.of(_s, input[_CR]).n(_CR));
5961
6849
  }
5962
- if (input[_C] != null) {
5963
- bn.c(__XmlNode.of(_st, input[_C]).n(_C));
6850
+ if (input[_Co] != null) {
6851
+ bn.c(__XmlNode.of(_s, input[_Co]).n(_Co));
5964
6852
  }
5965
6853
  if (input[_EE] != null) {
5966
6854
  bn.c(se_EncryptionEntities(input[_EE], context).n(_EE));
@@ -5971,7 +6859,7 @@ const se_FieldList = (input, context) => {
5971
6859
  return input
5972
6860
  .filter((e) => e != null)
5973
6861
  .map((entry) => {
5974
- const n = __XmlNode.of(_st, entry);
6862
+ const n = __XmlNode.of(_s, entry);
5975
6863
  return n.n(_Fi);
5976
6864
  });
5977
6865
  };
@@ -5979,7 +6867,7 @@ const se_FieldPatternList = (input, context) => {
5979
6867
  return input
5980
6868
  .filter((e) => e != null)
5981
6869
  .map((entry) => {
5982
- const n = __XmlNode.of(_st, entry);
6870
+ const n = __XmlNode.of(_s, entry);
5983
6871
  return n.n(_FPi);
5984
6872
  });
5985
6873
  };
@@ -5988,7 +6876,7 @@ const se_FieldPatterns = (input, context) => {
5988
6876
  if (input[_Q] != null) {
5989
6877
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
5990
6878
  }
5991
- bn.lc(input, "Items", "Items", () => se_FieldPatternList(input[_I], context));
6879
+ bn.lc(input, "Items", "Items", () => se_FieldPatternList(input[_It], context));
5992
6880
  return bn;
5993
6881
  };
5994
6882
  const se_ForwardedValues = (input, context) => {
@@ -6026,13 +6914,13 @@ const se_FunctionAssociations = (input, context) => {
6026
6914
  if (input[_Q] != null) {
6027
6915
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6028
6916
  }
6029
- bn.lc(input, "Items", "Items", () => se_FunctionAssociationList(input[_I], context));
6917
+ bn.lc(input, "Items", "Items", () => se_FunctionAssociationList(input[_It], context));
6030
6918
  return bn;
6031
6919
  };
6032
6920
  const se_FunctionConfig = (input, context) => {
6033
6921
  const bn = new __XmlNode(_FCu);
6034
- if (input[_C] != null) {
6035
- bn.c(__XmlNode.of(_st, input[_C]).n(_C));
6922
+ if (input[_Co] != null) {
6923
+ bn.c(__XmlNode.of(_s, input[_Co]).n(_Co));
6036
6924
  }
6037
6925
  if (input[_Ru] != null) {
6038
6926
  bn.c(__XmlNode.of(_FR, input[_Ru]).n(_Ru));
@@ -6043,14 +6931,22 @@ const se_FunctionConfig = (input, context) => {
6043
6931
  return bn;
6044
6932
  };
6045
6933
  const se_GeoRestriction = (input, context) => {
6046
- const bn = new __XmlNode(_GR);
6934
+ const bn = new __XmlNode(_GRe);
6047
6935
  if (input[_RT] != null) {
6048
6936
  bn.c(__XmlNode.of(_GRT, input[_RT]).n(_RT));
6049
6937
  }
6050
6938
  if (input[_Q] != null) {
6051
6939
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6052
6940
  }
6053
- bn.lc(input, "Items", "Items", () => se_LocationList(input[_I], context));
6941
+ bn.lc(input, "Items", "Items", () => se_LocationList(input[_It], context));
6942
+ return bn;
6943
+ };
6944
+ const se_GeoRestrictionCustomization = (input, context) => {
6945
+ const bn = new __XmlNode(_GRC);
6946
+ if (input[_RT] != null) {
6947
+ bn.c(__XmlNode.of(_GRT, input[_RT]).n(_RT));
6948
+ }
6949
+ bn.lc(input, "Locations", "Locations", () => se_LocationList(input[_Loc], context));
6054
6950
  return bn;
6055
6951
  };
6056
6952
  const se_GrpcConfig = (input, context) => {
@@ -6064,7 +6960,7 @@ const se_HeaderList = (input, context) => {
6064
6960
  return input
6065
6961
  .filter((e) => e != null)
6066
6962
  .map((entry) => {
6067
- const n = __XmlNode.of(_st, entry);
6963
+ const n = __XmlNode.of(_s, entry);
6068
6964
  return n.n(_N);
6069
6965
  });
6070
6966
  };
@@ -6073,7 +6969,7 @@ const se_Headers = (input, context) => {
6073
6969
  if (input[_Q] != null) {
6074
6970
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6075
6971
  }
6076
- bn.lc(input, "Items", "Items", () => se_HeaderList(input[_I], context));
6972
+ bn.lc(input, "Items", "Items", () => se_HeaderList(input[_It], context));
6077
6973
  return bn;
6078
6974
  };
6079
6975
  const se_ImportSource = (input, context) => {
@@ -6082,28 +6978,28 @@ const se_ImportSource = (input, context) => {
6082
6978
  bn.c(__XmlNode.of(_IST, input[_STo]).n(_STo));
6083
6979
  }
6084
6980
  if (input[_SARN] != null) {
6085
- bn.c(__XmlNode.of(_st, input[_SARN]).n(_SARN));
6981
+ bn.c(__XmlNode.of(_s, input[_SARN]).n(_SARN));
6086
6982
  }
6087
6983
  return bn;
6088
6984
  };
6089
6985
  const se_InvalidationBatch = (input, context) => {
6090
6986
  const bn = new __XmlNode(_IB);
6091
- if (input[_P] != null) {
6092
- bn.c(se_Paths(input[_P], context).n(_P));
6987
+ if (input[_Pa] != null) {
6988
+ bn.c(se_Paths(input[_Pa], context).n(_Pa));
6093
6989
  }
6094
6990
  if (input[_CR] != null) {
6095
- bn.c(__XmlNode.of(_st, input[_CR]).n(_CR));
6991
+ bn.c(__XmlNode.of(_s, input[_CR]).n(_CR));
6096
6992
  }
6097
6993
  return bn;
6098
6994
  };
6099
6995
  const se_KeyGroupConfig = (input, context) => {
6100
6996
  const bn = new __XmlNode(_KGC);
6101
6997
  if (input[_N] != null) {
6102
- bn.c(__XmlNode.of(_st, input[_N]).n(_N));
6998
+ bn.c(__XmlNode.of(_s, input[_N]).n(_N));
6103
6999
  }
6104
- bn.lc(input, "Items", "Items", () => se_PublicKeyIdList(input[_I], context));
6105
- if (input[_C] != null) {
6106
- bn.c(__XmlNode.of(_st, input[_C]).n(_C));
7000
+ bn.lc(input, "Items", "Items", () => se_PublicKeyIdList(input[_It], context));
7001
+ if (input[_Co] != null) {
7002
+ bn.c(__XmlNode.of(_s, input[_Co]).n(_Co));
6107
7003
  }
6108
7004
  return bn;
6109
7005
  };
@@ -6125,16 +7021,16 @@ const se_KeyValueStoreAssociations = (input, context) => {
6125
7021
  if (input[_Q] != null) {
6126
7022
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6127
7023
  }
6128
- bn.lc(input, "Items", "Items", () => se_KeyValueStoreAssociationList(input[_I], context));
7024
+ bn.lc(input, "Items", "Items", () => se_KeyValueStoreAssociationList(input[_It], context));
6129
7025
  return bn;
6130
7026
  };
6131
7027
  const se_KinesisStreamConfig = (input, context) => {
6132
7028
  const bn = new __XmlNode(_KSC);
6133
7029
  if (input[_RARN] != null) {
6134
- bn.c(__XmlNode.of(_st, input[_RARN]).n(_RARN));
7030
+ bn.c(__XmlNode.of(_s, input[_RARN]).n(_RARN));
6135
7031
  }
6136
7032
  if (input[_SARNt] != null) {
6137
- bn.c(__XmlNode.of(_st, input[_SARNt]).n(_SARNt));
7033
+ bn.c(__XmlNode.of(_s, input[_SARNt]).n(_SARNt));
6138
7034
  }
6139
7035
  return bn;
6140
7036
  };
@@ -6160,14 +7056,14 @@ const se_LambdaFunctionAssociations = (input, context) => {
6160
7056
  if (input[_Q] != null) {
6161
7057
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6162
7058
  }
6163
- bn.lc(input, "Items", "Items", () => se_LambdaFunctionAssociationList(input[_I], context));
7059
+ bn.lc(input, "Items", "Items", () => se_LambdaFunctionAssociationList(input[_It], context));
6164
7060
  return bn;
6165
7061
  };
6166
7062
  const se_LocationList = (input, context) => {
6167
7063
  return input
6168
7064
  .filter((e) => e != null)
6169
7065
  .map((entry) => {
6170
- const n = __XmlNode.of(_st, entry);
7066
+ const n = __XmlNode.of(_s, entry);
6171
7067
  return n.n(_L);
6172
7068
  });
6173
7069
  };
@@ -6180,11 +7076,20 @@ const se_LoggingConfig = (input, context) => {
6180
7076
  bn.c(__XmlNode.of(_b, String(input[_ICn])).n(_ICn));
6181
7077
  }
6182
7078
  if (input[_B] != null) {
6183
- bn.c(__XmlNode.of(_st, input[_B]).n(_B));
7079
+ bn.c(__XmlNode.of(_s, input[_B]).n(_B));
6184
7080
  }
6185
7081
  if (input[_Pr] != null) {
6186
- bn.c(__XmlNode.of(_st, input[_Pr]).n(_Pr));
7082
+ bn.c(__XmlNode.of(_s, input[_Pr]).n(_Pr));
7083
+ }
7084
+ return bn;
7085
+ };
7086
+ const se_ManagedCertificateRequest = (input, context) => {
7087
+ const bn = new __XmlNode(_MCR);
7088
+ bn.cc(input, _VTH);
7089
+ if (input[_PDN] != null) {
7090
+ bn.c(__XmlNode.of(_s, input[_PDN]).n(_PDN));
6187
7091
  }
7092
+ bn.cc(input, _CTLP);
6188
7093
  return bn;
6189
7094
  };
6190
7095
  const se_MethodsList = (input, context) => {
@@ -6205,13 +7110,13 @@ const se_MonitoringSubscription = (input, context) => {
6205
7110
  const se_Origin = (input, context) => {
6206
7111
  const bn = new __XmlNode(_Or);
6207
7112
  if (input[_Id] != null) {
6208
- bn.c(__XmlNode.of(_st, input[_Id]).n(_Id));
7113
+ bn.c(__XmlNode.of(_s, input[_Id]).n(_Id));
6209
7114
  }
6210
7115
  if (input[_DN] != null) {
6211
- bn.c(__XmlNode.of(_st, input[_DN]).n(_DN));
7116
+ bn.c(__XmlNode.of(_s, input[_DN]).n(_DN));
6212
7117
  }
6213
7118
  if (input[_OP] != null) {
6214
- bn.c(__XmlNode.of(_st, input[_OP]).n(_OP));
7119
+ bn.c(__XmlNode.of(_s, input[_OP]).n(_OP));
6215
7120
  }
6216
7121
  if (input[_CH] != null) {
6217
7122
  bn.c(se_CustomHeaders(input[_CH], context).n(_CH));
@@ -6225,8 +7130,8 @@ const se_Origin = (input, context) => {
6225
7130
  if (input[_VOC] != null) {
6226
7131
  bn.c(se_VpcOriginConfig(input[_VOC], context).n(_VOC));
6227
7132
  }
6228
- if (input[_CA] != null) {
6229
- bn.c(__XmlNode.of(_i, String(input[_CA])).n(_CA));
7133
+ if (input[_CAo] != null) {
7134
+ bn.c(__XmlNode.of(_i, String(input[_CAo])).n(_CAo));
6230
7135
  }
6231
7136
  if (input[_CTon] != null) {
6232
7137
  bn.c(__XmlNode.of(_i, String(input[_CTon])).n(_CTon));
@@ -6235,17 +7140,17 @@ const se_Origin = (input, context) => {
6235
7140
  bn.c(se_OriginShield(input[_OS], context).n(_OS));
6236
7141
  }
6237
7142
  if (input[_OACI] != null) {
6238
- bn.c(__XmlNode.of(_st, input[_OACI]).n(_OACI));
7143
+ bn.c(__XmlNode.of(_s, input[_OACI]).n(_OACI));
6239
7144
  }
6240
7145
  return bn;
6241
7146
  };
6242
7147
  const se_OriginAccessControlConfig = (input, context) => {
6243
7148
  const bn = new __XmlNode(_OACC);
6244
7149
  if (input[_N] != null) {
6245
- bn.c(__XmlNode.of(_st, input[_N]).n(_N));
7150
+ bn.c(__XmlNode.of(_s, input[_N]).n(_N));
6246
7151
  }
6247
- if (input[_D] != null) {
6248
- bn.c(__XmlNode.of(_st, input[_D]).n(_D));
7152
+ if (input[_De] != null) {
7153
+ bn.c(__XmlNode.of(_s, input[_De]).n(_De));
6249
7154
  }
6250
7155
  if (input[_SP] != null) {
6251
7156
  bn.c(__XmlNode.of(_OACSP, input[_SP]).n(_SP));
@@ -6261,7 +7166,7 @@ const se_OriginAccessControlConfig = (input, context) => {
6261
7166
  const se_OriginCustomHeader = (input, context) => {
6262
7167
  const bn = new __XmlNode(_OCH);
6263
7168
  if (input[_HN] != null) {
6264
- bn.c(__XmlNode.of(_st, input[_HN]).n(_HN));
7169
+ bn.c(__XmlNode.of(_s, input[_HN]).n(_HN));
6265
7170
  }
6266
7171
  if (input[_HVe] != null) {
6267
7172
  bn.c(__XmlNode.of(_sST, input[_HVe]).n(_HVe));
@@ -6279,7 +7184,7 @@ const se_OriginCustomHeadersList = (input, context) => {
6279
7184
  const se_OriginGroup = (input, context) => {
6280
7185
  const bn = new __XmlNode(_OGr);
6281
7186
  if (input[_Id] != null) {
6282
- bn.c(__XmlNode.of(_st, input[_Id]).n(_Id));
7187
+ bn.c(__XmlNode.of(_s, input[_Id]).n(_Id));
6283
7188
  }
6284
7189
  if (input[_FCa] != null) {
6285
7190
  bn.c(se_OriginGroupFailoverCriteria(input[_FCa], context).n(_FCa));
@@ -6310,7 +7215,7 @@ const se_OriginGroupList = (input, context) => {
6310
7215
  const se_OriginGroupMember = (input, context) => {
6311
7216
  const bn = new __XmlNode(_OGM);
6312
7217
  if (input[_OI] != null) {
6313
- bn.c(__XmlNode.of(_st, input[_OI]).n(_OI));
7218
+ bn.c(__XmlNode.of(_s, input[_OI]).n(_OI));
6314
7219
  }
6315
7220
  return bn;
6316
7221
  };
@@ -6327,7 +7232,7 @@ const se_OriginGroupMembers = (input, context) => {
6327
7232
  if (input[_Q] != null) {
6328
7233
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6329
7234
  }
6330
- bn.lc(input, "Items", "Items", () => se_OriginGroupMemberList(input[_I], context));
7235
+ bn.lc(input, "Items", "Items", () => se_OriginGroupMemberList(input[_It], context));
6331
7236
  return bn;
6332
7237
  };
6333
7238
  const se_OriginGroups = (input, context) => {
@@ -6335,7 +7240,7 @@ const se_OriginGroups = (input, context) => {
6335
7240
  if (input[_Q] != null) {
6336
7241
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6337
7242
  }
6338
- bn.lc(input, "Items", "Items", () => se_OriginGroupList(input[_I], context));
7243
+ bn.lc(input, "Items", "Items", () => se_OriginGroupList(input[_It], context));
6339
7244
  return bn;
6340
7245
  };
6341
7246
  const se_OriginList = (input, context) => {
@@ -6348,11 +7253,11 @@ const se_OriginList = (input, context) => {
6348
7253
  };
6349
7254
  const se_OriginRequestPolicyConfig = (input, context) => {
6350
7255
  const bn = new __XmlNode(_ORPC);
6351
- if (input[_C] != null) {
6352
- bn.c(__XmlNode.of(_st, input[_C]).n(_C));
7256
+ if (input[_Co] != null) {
7257
+ bn.c(__XmlNode.of(_s, input[_Co]).n(_Co));
6353
7258
  }
6354
7259
  if (input[_N] != null) {
6355
- bn.c(__XmlNode.of(_st, input[_N]).n(_N));
7260
+ bn.c(__XmlNode.of(_s, input[_N]).n(_N));
6356
7261
  }
6357
7262
  if (input[_HC] != null) {
6358
7263
  bn.c(se_OriginRequestPolicyHeadersConfig(input[_HC], context).n(_HC));
@@ -6400,7 +7305,7 @@ const se_Origins = (input, context) => {
6400
7305
  if (input[_Q] != null) {
6401
7306
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6402
7307
  }
6403
- bn.lc(input, "Items", "Items", () => se_OriginList(input[_I], context));
7308
+ bn.lc(input, "Items", "Items", () => se_OriginList(input[_It], context));
6404
7309
  return bn;
6405
7310
  };
6406
7311
  const se_OriginShield = (input, context) => {
@@ -6416,9 +7321,52 @@ const se_OriginSslProtocols = (input, context) => {
6416
7321
  if (input[_Q] != null) {
6417
7322
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6418
7323
  }
6419
- bn.lc(input, "Items", "Items", () => se_SslProtocolsList(input[_I], context));
7324
+ bn.lc(input, "Items", "Items", () => se_SslProtocolsList(input[_It], context));
7325
+ return bn;
7326
+ };
7327
+ const se_Parameter = (input, context) => {
7328
+ const bn = new __XmlNode(_Par);
7329
+ if (input[_N] != null) {
7330
+ bn.c(__XmlNode.of(_PN, input[_N]).n(_N));
7331
+ }
7332
+ if (input[_V] != null) {
7333
+ bn.c(__XmlNode.of(_PV, input[_V]).n(_V));
7334
+ }
7335
+ return bn;
7336
+ };
7337
+ const se_ParameterDefinition = (input, context) => {
7338
+ const bn = new __XmlNode(_PD);
7339
+ if (input[_N] != null) {
7340
+ bn.c(__XmlNode.of(_PN, input[_N]).n(_N));
7341
+ }
7342
+ if (input[_Def] != null) {
7343
+ bn.c(se_ParameterDefinitionSchema(input[_Def], context).n(_Def));
7344
+ }
7345
+ return bn;
7346
+ };
7347
+ const se_ParameterDefinitions = (input, context) => {
7348
+ return input
7349
+ .filter((e) => e != null)
7350
+ .map((entry) => {
7351
+ const n = se_ParameterDefinition(entry, context);
7352
+ return n.n(_m);
7353
+ });
7354
+ };
7355
+ const se_ParameterDefinitionSchema = (input, context) => {
7356
+ const bn = new __XmlNode(_PDS);
7357
+ if (input[_SSt] != null) {
7358
+ bn.c(se_StringSchemaConfig(input[_SSt], context).n(_SSt));
7359
+ }
6420
7360
  return bn;
6421
7361
  };
7362
+ const se_Parameters = (input, context) => {
7363
+ return input
7364
+ .filter((e) => e != null)
7365
+ .map((entry) => {
7366
+ const n = se_Parameter(entry, context);
7367
+ return n.n(_m);
7368
+ });
7369
+ };
6422
7370
  const se_ParametersInCacheKeyAndForwardedToOrigin = (input, context) => {
6423
7371
  const bn = new __XmlNode(_PICKAFTO);
6424
7372
  if (input[_EAEG] != null) {
@@ -6442,31 +7390,31 @@ const se_PathList = (input, context) => {
6442
7390
  return input
6443
7391
  .filter((e) => e != null)
6444
7392
  .map((entry) => {
6445
- const n = __XmlNode.of(_st, entry);
6446
- return n.n(_Pa);
7393
+ const n = __XmlNode.of(_s, entry);
7394
+ return n.n(_Pat);
6447
7395
  });
6448
7396
  };
6449
7397
  const se_Paths = (input, context) => {
6450
- const bn = new __XmlNode(_P);
7398
+ const bn = new __XmlNode(_Pa);
6451
7399
  if (input[_Q] != null) {
6452
7400
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6453
7401
  }
6454
- bn.lc(input, "Items", "Items", () => se_PathList(input[_I], context));
7402
+ bn.lc(input, "Items", "Items", () => se_PathList(input[_It], context));
6455
7403
  return bn;
6456
7404
  };
6457
7405
  const se_PublicKeyConfig = (input, context) => {
6458
7406
  const bn = new __XmlNode(_PKC);
6459
7407
  if (input[_CR] != null) {
6460
- bn.c(__XmlNode.of(_st, input[_CR]).n(_CR));
7408
+ bn.c(__XmlNode.of(_s, input[_CR]).n(_CR));
6461
7409
  }
6462
7410
  if (input[_N] != null) {
6463
- bn.c(__XmlNode.of(_st, input[_N]).n(_N));
7411
+ bn.c(__XmlNode.of(_s, input[_N]).n(_N));
6464
7412
  }
6465
7413
  if (input[_EK] != null) {
6466
- bn.c(__XmlNode.of(_st, input[_EK]).n(_EK));
7414
+ bn.c(__XmlNode.of(_s, input[_EK]).n(_EK));
6467
7415
  }
6468
- if (input[_C] != null) {
6469
- bn.c(__XmlNode.of(_st, input[_C]).n(_C));
7416
+ if (input[_Co] != null) {
7417
+ bn.c(__XmlNode.of(_s, input[_Co]).n(_Co));
6470
7418
  }
6471
7419
  return bn;
6472
7420
  };
@@ -6474,17 +7422,17 @@ const se_PublicKeyIdList = (input, context) => {
6474
7422
  return input
6475
7423
  .filter((e) => e != null)
6476
7424
  .map((entry) => {
6477
- const n = __XmlNode.of(_st, entry);
7425
+ const n = __XmlNode.of(_s, entry);
6478
7426
  return n.n(_PK);
6479
7427
  });
6480
7428
  };
6481
7429
  const se_QueryArgProfile = (input, context) => {
6482
7430
  const bn = new __XmlNode(_QAP);
6483
7431
  if (input[_QA] != null) {
6484
- bn.c(__XmlNode.of(_st, input[_QA]).n(_QA));
7432
+ bn.c(__XmlNode.of(_s, input[_QA]).n(_QA));
6485
7433
  }
6486
7434
  if (input[_PI] != null) {
6487
- bn.c(__XmlNode.of(_st, input[_PI]).n(_PI));
7435
+ bn.c(__XmlNode.of(_s, input[_PI]).n(_PI));
6488
7436
  }
6489
7437
  return bn;
6490
7438
  };
@@ -6511,7 +7459,7 @@ const se_QueryArgProfiles = (input, context) => {
6511
7459
  if (input[_Q] != null) {
6512
7460
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6513
7461
  }
6514
- bn.lc(input, "Items", "Items", () => se_QueryArgProfileList(input[_I], context));
7462
+ bn.lc(input, "Items", "Items", () => se_QueryArgProfileList(input[_It], context));
6515
7463
  return bn;
6516
7464
  };
6517
7465
  const se_QueryStringCacheKeys = (input, context) => {
@@ -6519,14 +7467,14 @@ const se_QueryStringCacheKeys = (input, context) => {
6519
7467
  if (input[_Q] != null) {
6520
7468
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6521
7469
  }
6522
- bn.lc(input, "Items", "Items", () => se_QueryStringCacheKeysList(input[_I], context));
7470
+ bn.lc(input, "Items", "Items", () => se_QueryStringCacheKeysList(input[_It], context));
6523
7471
  return bn;
6524
7472
  };
6525
7473
  const se_QueryStringCacheKeysList = (input, context) => {
6526
7474
  return input
6527
7475
  .filter((e) => e != null)
6528
7476
  .map((entry) => {
6529
- const n = __XmlNode.of(_st, entry);
7477
+ const n = __XmlNode.of(_s, entry);
6530
7478
  return n.n(_N);
6531
7479
  });
6532
7480
  };
@@ -6535,14 +7483,14 @@ const se_QueryStringNames = (input, context) => {
6535
7483
  if (input[_Q] != null) {
6536
7484
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6537
7485
  }
6538
- bn.lc(input, "Items", "Items", () => se_QueryStringNamesList(input[_I], context));
7486
+ bn.lc(input, "Items", "Items", () => se_QueryStringNamesList(input[_It], context));
6539
7487
  return bn;
6540
7488
  };
6541
7489
  const se_QueryStringNamesList = (input, context) => {
6542
7490
  return input
6543
7491
  .filter((e) => e != null)
6544
7492
  .map((entry) => {
6545
- const n = __XmlNode.of(_st, entry);
7493
+ const n = __XmlNode.of(_s, entry);
6546
7494
  return n.n(_N);
6547
7495
  });
6548
7496
  };
@@ -6556,7 +7504,7 @@ const se_ResponseHeadersPolicyAccessControlAllowHeaders = (input, context) => {
6556
7504
  if (input[_Q] != null) {
6557
7505
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6558
7506
  }
6559
- bn.lc(input, "Items", "Items", () => se_AccessControlAllowHeadersList(input[_I], context));
7507
+ bn.lc(input, "Items", "Items", () => se_AccessControlAllowHeadersList(input[_It], context));
6560
7508
  return bn;
6561
7509
  };
6562
7510
  const se_ResponseHeadersPolicyAccessControlAllowMethods = (input, context) => {
@@ -6564,7 +7512,7 @@ const se_ResponseHeadersPolicyAccessControlAllowMethods = (input, context) => {
6564
7512
  if (input[_Q] != null) {
6565
7513
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6566
7514
  }
6567
- bn.lc(input, "Items", "Items", () => se_AccessControlAllowMethodsList(input[_I], context));
7515
+ bn.lc(input, "Items", "Items", () => se_AccessControlAllowMethodsList(input[_It], context));
6568
7516
  return bn;
6569
7517
  };
6570
7518
  const se_ResponseHeadersPolicyAccessControlAllowOrigins = (input, context) => {
@@ -6572,7 +7520,7 @@ const se_ResponseHeadersPolicyAccessControlAllowOrigins = (input, context) => {
6572
7520
  if (input[_Q] != null) {
6573
7521
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6574
7522
  }
6575
- bn.lc(input, "Items", "Items", () => se_AccessControlAllowOriginsList(input[_I], context));
7523
+ bn.lc(input, "Items", "Items", () => se_AccessControlAllowOriginsList(input[_It], context));
6576
7524
  return bn;
6577
7525
  };
6578
7526
  const se_ResponseHeadersPolicyAccessControlExposeHeaders = (input, context) => {
@@ -6580,16 +7528,16 @@ const se_ResponseHeadersPolicyAccessControlExposeHeaders = (input, context) => {
6580
7528
  if (input[_Q] != null) {
6581
7529
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6582
7530
  }
6583
- bn.lc(input, "Items", "Items", () => se_AccessControlExposeHeadersList(input[_I], context));
7531
+ bn.lc(input, "Items", "Items", () => se_AccessControlExposeHeadersList(input[_It], context));
6584
7532
  return bn;
6585
7533
  };
6586
7534
  const se_ResponseHeadersPolicyConfig = (input, context) => {
6587
7535
  const bn = new __XmlNode(_RHPC);
6588
- if (input[_C] != null) {
6589
- bn.c(__XmlNode.of(_st, input[_C]).n(_C));
7536
+ if (input[_Co] != null) {
7537
+ bn.c(__XmlNode.of(_s, input[_Co]).n(_Co));
6590
7538
  }
6591
7539
  if (input[_N] != null) {
6592
- bn.c(__XmlNode.of(_st, input[_N]).n(_N));
7540
+ bn.c(__XmlNode.of(_s, input[_N]).n(_N));
6593
7541
  }
6594
7542
  if (input[_CCo] != null) {
6595
7543
  bn.c(se_ResponseHeadersPolicyCorsConfig(input[_CCo], context).n(_CCo));
@@ -6614,7 +7562,7 @@ const se_ResponseHeadersPolicyContentSecurityPolicy = (input, context) => {
6614
7562
  bn.c(__XmlNode.of(_b, String(input[_Ov])).n(_Ov));
6615
7563
  }
6616
7564
  if (input[_CSP] != null) {
6617
- bn.c(__XmlNode.of(_st, input[_CSP]).n(_CSP));
7565
+ bn.c(__XmlNode.of(_s, input[_CSP]).n(_CSP));
6618
7566
  }
6619
7567
  return bn;
6620
7568
  };
@@ -6653,10 +7601,10 @@ const se_ResponseHeadersPolicyCorsConfig = (input, context) => {
6653
7601
  const se_ResponseHeadersPolicyCustomHeader = (input, context) => {
6654
7602
  const bn = new __XmlNode(_RHPCH);
6655
7603
  if (input[_H] != null) {
6656
- bn.c(__XmlNode.of(_st, input[_H]).n(_H));
7604
+ bn.c(__XmlNode.of(_s, input[_H]).n(_H));
6657
7605
  }
6658
7606
  if (input[_V] != null) {
6659
- bn.c(__XmlNode.of(_st, input[_V]).n(_V));
7607
+ bn.c(__XmlNode.of(_s, input[_V]).n(_V));
6660
7608
  }
6661
7609
  if (input[_Ov] != null) {
6662
7610
  bn.c(__XmlNode.of(_b, String(input[_Ov])).n(_Ov));
@@ -6676,7 +7624,7 @@ const se_ResponseHeadersPolicyCustomHeadersConfig = (input, context) => {
6676
7624
  if (input[_Q] != null) {
6677
7625
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6678
7626
  }
6679
- bn.lc(input, "Items", "Items", () => se_ResponseHeadersPolicyCustomHeaderList(input[_I], context));
7627
+ bn.lc(input, "Items", "Items", () => se_ResponseHeadersPolicyCustomHeaderList(input[_It], context));
6680
7628
  return bn;
6681
7629
  };
6682
7630
  const se_ResponseHeadersPolicyFrameOptions = (input, context) => {
@@ -6702,7 +7650,7 @@ const se_ResponseHeadersPolicyReferrerPolicy = (input, context) => {
6702
7650
  const se_ResponseHeadersPolicyRemoveHeader = (input, context) => {
6703
7651
  const bn = new __XmlNode(_RHPRH);
6704
7652
  if (input[_H] != null) {
6705
- bn.c(__XmlNode.of(_st, input[_H]).n(_H));
7653
+ bn.c(__XmlNode.of(_s, input[_H]).n(_H));
6706
7654
  }
6707
7655
  return bn;
6708
7656
  };
@@ -6719,7 +7667,7 @@ const se_ResponseHeadersPolicyRemoveHeadersConfig = (input, context) => {
6719
7667
  if (input[_Q] != null) {
6720
7668
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6721
7669
  }
6722
- bn.lc(input, "Items", "Items", () => se_ResponseHeadersPolicyRemoveHeaderList(input[_I], context));
7670
+ bn.lc(input, "Items", "Items", () => se_ResponseHeadersPolicyRemoveHeaderList(input[_It], context));
6723
7671
  return bn;
6724
7672
  };
6725
7673
  const se_ResponseHeadersPolicySecurityHeadersConfig = (input, context) => {
@@ -6782,31 +7730,31 @@ const se_ResponseHeadersPolicyXSSProtection = (input, context) => {
6782
7730
  bn.c(__XmlNode.of(_b, String(input[_MB])).n(_MB));
6783
7731
  }
6784
7732
  if (input[_RU] != null) {
6785
- bn.c(__XmlNode.of(_st, input[_RU]).n(_RU));
7733
+ bn.c(__XmlNode.of(_s, input[_RU]).n(_RU));
6786
7734
  }
6787
7735
  return bn;
6788
7736
  };
6789
7737
  const se_Restrictions = (input, context) => {
6790
7738
  const bn = new __XmlNode(_Re);
6791
- if (input[_GR] != null) {
6792
- bn.c(se_GeoRestriction(input[_GR], context).n(_GR));
7739
+ if (input[_GRe] != null) {
7740
+ bn.c(se_GeoRestriction(input[_GRe], context).n(_GRe));
6793
7741
  }
6794
7742
  return bn;
6795
7743
  };
6796
7744
  const se_S3Origin = (input, context) => {
6797
7745
  const bn = new __XmlNode(_SO);
6798
7746
  if (input[_DN] != null) {
6799
- bn.c(__XmlNode.of(_st, input[_DN]).n(_DN));
7747
+ bn.c(__XmlNode.of(_s, input[_DN]).n(_DN));
6800
7748
  }
6801
7749
  if (input[_OAI] != null) {
6802
- bn.c(__XmlNode.of(_st, input[_OAI]).n(_OAI));
7750
+ bn.c(__XmlNode.of(_s, input[_OAI]).n(_OAI));
6803
7751
  }
6804
7752
  return bn;
6805
7753
  };
6806
7754
  const se_S3OriginConfig = (input, context) => {
6807
7755
  const bn = new __XmlNode(_SOC);
6808
7756
  if (input[_OAI] != null) {
6809
- bn.c(__XmlNode.of(_st, input[_OAI]).n(_OAI));
7757
+ bn.c(__XmlNode.of(_s, input[_OAI]).n(_OAI));
6810
7758
  }
6811
7759
  return bn;
6812
7760
  };
@@ -6832,7 +7780,7 @@ const se_StagingDistributionDnsNameList = (input, context) => {
6832
7780
  return input
6833
7781
  .filter((e) => e != null)
6834
7782
  .map((entry) => {
6835
- const n = __XmlNode.of(_st, entry);
7783
+ const n = __XmlNode.of(_s, entry);
6836
7784
  return n.n(_DNn);
6837
7785
  });
6838
7786
  };
@@ -6841,7 +7789,7 @@ const se_StagingDistributionDnsNames = (input, context) => {
6841
7789
  if (input[_Q] != null) {
6842
7790
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6843
7791
  }
6844
- bn.lc(input, "Items", "Items", () => se_StagingDistributionDnsNameList(input[_I], context));
7792
+ bn.lc(input, "Items", "Items", () => se_StagingDistributionDnsNameList(input[_It], context));
6845
7793
  return bn;
6846
7794
  };
6847
7795
  const se_StatusCodeList = (input, context) => {
@@ -6857,13 +7805,13 @@ const se_StatusCodes = (input, context) => {
6857
7805
  if (input[_Q] != null) {
6858
7806
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6859
7807
  }
6860
- bn.lc(input, "Items", "Items", () => se_StatusCodeList(input[_I], context));
7808
+ bn.lc(input, "Items", "Items", () => se_StatusCodeList(input[_It], context));
6861
7809
  return bn;
6862
7810
  };
6863
7811
  const se_StreamingDistributionConfig = (input, context) => {
6864
7812
  const bn = new __XmlNode(_SDC);
6865
7813
  if (input[_CR] != null) {
6866
- bn.c(__XmlNode.of(_st, input[_CR]).n(_CR));
7814
+ bn.c(__XmlNode.of(_s, input[_CR]).n(_CR));
6867
7815
  }
6868
7816
  if (input[_SO] != null) {
6869
7817
  bn.c(se_S3Origin(input[_SO], context).n(_SO));
@@ -6871,8 +7819,8 @@ const se_StreamingDistributionConfig = (input, context) => {
6871
7819
  if (input[_Al] != null) {
6872
7820
  bn.c(se_Aliases(input[_Al], context).n(_Al));
6873
7821
  }
6874
- if (input[_C] != null) {
6875
- bn.c(__XmlNode.of(_st, input[_C]).n(_C));
7822
+ if (input[_Co] != null) {
7823
+ bn.c(__XmlNode.of(_s, input[_Co]).n(_Co));
6876
7824
  }
6877
7825
  if (input[_Lo] != null) {
6878
7826
  bn.c(se_StreamingLoggingConfig(input[_Lo], context).n(_Lo));
@@ -6902,10 +7850,23 @@ const se_StreamingLoggingConfig = (input, context) => {
6902
7850
  bn.c(__XmlNode.of(_b, String(input[_E])).n(_E));
6903
7851
  }
6904
7852
  if (input[_B] != null) {
6905
- bn.c(__XmlNode.of(_st, input[_B]).n(_B));
7853
+ bn.c(__XmlNode.of(_s, input[_B]).n(_B));
6906
7854
  }
6907
7855
  if (input[_Pr] != null) {
6908
- bn.c(__XmlNode.of(_st, input[_Pr]).n(_Pr));
7856
+ bn.c(__XmlNode.of(_s, input[_Pr]).n(_Pr));
7857
+ }
7858
+ return bn;
7859
+ };
7860
+ const se_StringSchemaConfig = (input, context) => {
7861
+ const bn = new __XmlNode(_SSCt);
7862
+ if (input[_Co] != null) {
7863
+ bn.c(__XmlNode.of(_s, input[_Co]).n(_Co));
7864
+ }
7865
+ if (input[_DV] != null) {
7866
+ bn.c(__XmlNode.of(_PV, input[_DV]).n(_DV));
7867
+ }
7868
+ if (input[_Req] != null) {
7869
+ bn.c(__XmlNode.of(_b, String(input[_Req])).n(_Req));
6909
7870
  }
6910
7871
  return bn;
6911
7872
  };
@@ -6929,7 +7890,7 @@ const se_TagKeyList = (input, context) => {
6929
7890
  };
6930
7891
  const se_TagKeys = (input, context) => {
6931
7892
  const bn = new __XmlNode(_TKa);
6932
- bn.lc(input, "Items", "Items", () => se_TagKeyList(input[_I], context));
7893
+ bn.lc(input, "Items", "Items", () => se_TagKeyList(input[_It], context));
6933
7894
  return bn;
6934
7895
  };
6935
7896
  const se_TagList = (input, context) => {
@@ -6942,7 +7903,12 @@ const se_TagList = (input, context) => {
6942
7903
  };
6943
7904
  const se_Tags = (input, context) => {
6944
7905
  const bn = new __XmlNode(_T);
6945
- bn.lc(input, "Items", "Items", () => se_TagList(input[_I], context));
7906
+ bn.lc(input, "Items", "Items", () => se_TagList(input[_It], context));
7907
+ return bn;
7908
+ };
7909
+ const se_TenantConfig = (input, context) => {
7910
+ const bn = new __XmlNode(_TCe);
7911
+ bn.lc(input, "ParameterDefinitions", "ParameterDefinitions", () => se_ParameterDefinitions(input[_PDa], context));
6946
7912
  return bn;
6947
7913
  };
6948
7914
  const se_TrafficConfig = (input, context) => {
@@ -6962,7 +7928,7 @@ const se_TrustedKeyGroupIdList = (input, context) => {
6962
7928
  return input
6963
7929
  .filter((e) => e != null)
6964
7930
  .map((entry) => {
6965
- const n = __XmlNode.of(_st, entry);
7931
+ const n = __XmlNode.of(_s, entry);
6966
7932
  return n.n(_KG);
6967
7933
  });
6968
7934
  };
@@ -6974,7 +7940,7 @@ const se_TrustedKeyGroups = (input, context) => {
6974
7940
  if (input[_Q] != null) {
6975
7941
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6976
7942
  }
6977
- bn.lc(input, "Items", "Items", () => se_TrustedKeyGroupIdList(input[_I], context));
7943
+ bn.lc(input, "Items", "Items", () => se_TrustedKeyGroupIdList(input[_It], context));
6978
7944
  return bn;
6979
7945
  };
6980
7946
  const se_TrustedSigners = (input, context) => {
@@ -6985,7 +7951,7 @@ const se_TrustedSigners = (input, context) => {
6985
7951
  if (input[_Q] != null) {
6986
7952
  bn.c(__XmlNode.of(_i, String(input[_Q])).n(_Q));
6987
7953
  }
6988
- bn.lc(input, "Items", "Items", () => se_AwsAccountNumberList(input[_I], context));
7954
+ bn.lc(input, "Items", "Items", () => se_AwsAccountNumberList(input[_It], context));
6989
7955
  return bn;
6990
7956
  };
6991
7957
  const se_ViewerCertificate = (input, context) => {
@@ -6994,15 +7960,15 @@ const se_ViewerCertificate = (input, context) => {
6994
7960
  bn.c(__XmlNode.of(_b, String(input[_CFDC])).n(_CFDC));
6995
7961
  }
6996
7962
  if (input[_IAMCI] != null) {
6997
- bn.c(__XmlNode.of(_st, input[_IAMCI]).n(_IAMCI));
7963
+ bn.c(__XmlNode.of(_s, input[_IAMCI]).n(_IAMCI));
6998
7964
  }
6999
7965
  if (input[_ACMCA] != null) {
7000
- bn.c(__XmlNode.of(_st, input[_ACMCA]).n(_ACMCA));
7966
+ bn.c(__XmlNode.of(_s, input[_ACMCA]).n(_ACMCA));
7001
7967
  }
7002
7968
  bn.cc(input, _SSLSM);
7003
7969
  bn.cc(input, _MPV);
7004
7970
  if (input[_Ce] != null) {
7005
- bn.c(__XmlNode.of(_st, input[_Ce]).n(_Ce));
7971
+ bn.c(__XmlNode.of(_s, input[_Ce]).n(_Ce));
7006
7972
  }
7007
7973
  bn.cc(input, _CS);
7008
7974
  return bn;
@@ -7010,7 +7976,7 @@ const se_ViewerCertificate = (input, context) => {
7010
7976
  const se_VpcOriginConfig = (input, context) => {
7011
7977
  const bn = new __XmlNode(_VOC);
7012
7978
  if (input[_VOI] != null) {
7013
- bn.c(__XmlNode.of(_st, input[_VOI]).n(_VOI));
7979
+ bn.c(__XmlNode.of(_s, input[_VOI]).n(_VOI));
7014
7980
  }
7015
7981
  if (input[_ORT] != null) {
7016
7982
  bn.c(__XmlNode.of(_i, String(input[_ORT])).n(_ORT));
@@ -7023,10 +7989,10 @@ const se_VpcOriginConfig = (input, context) => {
7023
7989
  const se_VpcOriginEndpointConfig = (input, context) => {
7024
7990
  const bn = new __XmlNode(_VOEC);
7025
7991
  if (input[_N] != null) {
7026
- bn.c(__XmlNode.of(_st, input[_N]).n(_N));
7992
+ bn.c(__XmlNode.of(_s, input[_N]).n(_N));
7027
7993
  }
7028
7994
  if (input[_Ar] != null) {
7029
- bn.c(__XmlNode.of(_st, input[_Ar]).n(_Ar));
7995
+ bn.c(__XmlNode.of(_s, input[_Ar]).n(_Ar));
7030
7996
  }
7031
7997
  if (input[_HTTPP] != null) {
7032
7998
  bn.c(__XmlNode.of(_i, String(input[_HTTPP])).n(_HTTPP));
@@ -7040,6 +8006,16 @@ const se_VpcOriginEndpointConfig = (input, context) => {
7040
8006
  }
7041
8007
  return bn;
7042
8008
  };
8009
+ const se_WebAclCustomization = (input, context) => {
8010
+ const bn = new __XmlNode(_WAC);
8011
+ if (input[_Ac] != null) {
8012
+ bn.c(__XmlNode.of(_CAT, input[_Ac]).n(_Ac));
8013
+ }
8014
+ if (input[_Ar] != null) {
8015
+ bn.c(__XmlNode.of(_s, input[_Ar]).n(_Ar));
8016
+ }
8017
+ return bn;
8018
+ };
7043
8019
  const de_AccessControlAllowHeadersList = (output, context) => {
7044
8020
  return (output || [])
7045
8021
  .filter((e) => e != null)
@@ -7077,10 +8053,10 @@ const de_ActiveTrustedKeyGroups = (output, context) => {
7077
8053
  contents[_Q] = __strictParseInt32(output[_Q]);
7078
8054
  }
7079
8055
  if (output.Items === "") {
7080
- contents[_I] = [];
8056
+ contents[_It] = [];
7081
8057
  }
7082
- else if (output[_I] != null && output[_I][_KG] != null) {
7083
- contents[_I] = de_KGKeyPairIdsList(__getArrayIfSingleItem(output[_I][_KG]), context);
8058
+ else if (output[_It] != null && output[_It][_KG] != null) {
8059
+ contents[_It] = de_KGKeyPairIdsList(__getArrayIfSingleItem(output[_It][_KG]), context);
7084
8060
  }
7085
8061
  return contents;
7086
8062
  };
@@ -7093,10 +8069,10 @@ const de_ActiveTrustedSigners = (output, context) => {
7093
8069
  contents[_Q] = __strictParseInt32(output[_Q]);
7094
8070
  }
7095
8071
  if (output.Items === "") {
7096
- contents[_I] = [];
8072
+ contents[_It] = [];
7097
8073
  }
7098
- else if (output[_I] != null && output[_I][_Si] != null) {
7099
- contents[_I] = de_SignerList(__getArrayIfSingleItem(output[_I][_Si]), context);
8074
+ else if (output[_It] != null && output[_It][_Si] != null) {
8075
+ contents[_It] = de_SignerList(__getArrayIfSingleItem(output[_It][_Si]), context);
7100
8076
  }
7101
8077
  return contents;
7102
8078
  };
@@ -7106,10 +8082,10 @@ const de_Aliases = (output, context) => {
7106
8082
  contents[_Q] = __strictParseInt32(output[_Q]);
7107
8083
  }
7108
8084
  if (output.Items === "") {
7109
- contents[_I] = [];
8085
+ contents[_It] = [];
7110
8086
  }
7111
- else if (output[_I] != null && output[_I][_CNAME] != null) {
7112
- contents[_I] = de_AliasList(__getArrayIfSingleItem(output[_I][_CNAME]), context);
8087
+ else if (output[_It] != null && output[_It][_CNAME] != null) {
8088
+ contents[_It] = de_AliasList(__getArrayIfSingleItem(output[_It][_CNAME]), context);
7113
8089
  }
7114
8090
  return contents;
7115
8091
  };
@@ -7143,10 +8119,10 @@ const de_AllowedMethods = (output, context) => {
7143
8119
  contents[_Q] = __strictParseInt32(output[_Q]);
7144
8120
  }
7145
8121
  if (output.Items === "") {
7146
- contents[_I] = [];
8122
+ contents[_It] = [];
7147
8123
  }
7148
- else if (output[_I] != null && output[_I][_Met] != null) {
7149
- contents[_I] = de_MethodsList(__getArrayIfSingleItem(output[_I][_Met]), context);
8124
+ else if (output[_It] != null && output[_It][_Met] != null) {
8125
+ contents[_It] = de_MethodsList(__getArrayIfSingleItem(output[_It][_Met]), context);
7150
8126
  }
7151
8127
  if (output[_CM] != null) {
7152
8128
  contents[_CM] = de_CachedMethods(output[_CM], context);
@@ -7184,10 +8160,10 @@ const de_AnycastIpList = (output, context) => {
7184
8160
  const de_AnycastIpListCollection = (output, context) => {
7185
8161
  const contents = {};
7186
8162
  if (output.Items === "") {
7187
- contents[_I] = [];
8163
+ contents[_It] = [];
7188
8164
  }
7189
- else if (output[_I] != null && output[_I][_AILS] != null) {
7190
- contents[_I] = de_AnycastIpListSummaries(__getArrayIfSingleItem(output[_I][_AILS]), context);
8165
+ else if (output[_It] != null && output[_It][_AILS] != null) {
8166
+ contents[_It] = de_AnycastIpListSummaries(__getArrayIfSingleItem(output[_It][_AILS]), context);
7191
8167
  }
7192
8168
  if (output[_M] != null) {
7193
8169
  contents[_M] = __expectString(output[_M]);
@@ -7272,8 +8248,8 @@ const de_CacheBehavior = (output, context) => {
7272
8248
  if (output[_SS] != null) {
7273
8249
  contents[_SS] = __parseBoolean(output[_SS]);
7274
8250
  }
7275
- if (output[_Co] != null) {
7276
- contents[_Co] = __parseBoolean(output[_Co]);
8251
+ if (output[_Com] != null) {
8252
+ contents[_Com] = __parseBoolean(output[_Com]);
7277
8253
  }
7278
8254
  if (output[_LFA] != null) {
7279
8255
  contents[_LFA] = de_LambdaFunctionAssociations(output[_LFA], context);
@@ -7326,10 +8302,10 @@ const de_CacheBehaviors = (output, context) => {
7326
8302
  contents[_Q] = __strictParseInt32(output[_Q]);
7327
8303
  }
7328
8304
  if (output.Items === "") {
7329
- contents[_I] = [];
8305
+ contents[_It] = [];
7330
8306
  }
7331
- else if (output[_I] != null && output[_I][_CB] != null) {
7332
- contents[_I] = de_CacheBehaviorList(__getArrayIfSingleItem(output[_I][_CB]), context);
8307
+ else if (output[_It] != null && output[_It][_CB] != null) {
8308
+ contents[_It] = de_CacheBehaviorList(__getArrayIfSingleItem(output[_It][_CB]), context);
7333
8309
  }
7334
8310
  return contents;
7335
8311
  };
@@ -7339,10 +8315,10 @@ const de_CachedMethods = (output, context) => {
7339
8315
  contents[_Q] = __strictParseInt32(output[_Q]);
7340
8316
  }
7341
8317
  if (output.Items === "") {
7342
- contents[_I] = [];
8318
+ contents[_It] = [];
7343
8319
  }
7344
- else if (output[_I] != null && output[_I][_Met] != null) {
7345
- contents[_I] = de_MethodsList(__getArrayIfSingleItem(output[_I][_Met]), context);
8320
+ else if (output[_It] != null && output[_It][_Met] != null) {
8321
+ contents[_It] = de_MethodsList(__getArrayIfSingleItem(output[_It][_Met]), context);
7346
8322
  }
7347
8323
  return contents;
7348
8324
  };
@@ -7361,8 +8337,8 @@ const de_CachePolicy = (output, context) => {
7361
8337
  };
7362
8338
  const de_CachePolicyConfig = (output, context) => {
7363
8339
  const contents = {};
7364
- if (output[_C] != null) {
7365
- contents[_C] = __expectString(output[_C]);
8340
+ if (output[_Co] != null) {
8341
+ contents[_Co] = __expectString(output[_Co]);
7366
8342
  }
7367
8343
  if (output[_N] != null) {
7368
8344
  contents[_N] = __expectString(output[_N]);
@@ -7413,10 +8389,10 @@ const de_CachePolicyList = (output, context) => {
7413
8389
  contents[_Q] = __strictParseInt32(output[_Q]);
7414
8390
  }
7415
8391
  if (output.Items === "") {
7416
- contents[_I] = [];
8392
+ contents[_It] = [];
7417
8393
  }
7418
- else if (output[_I] != null && output[_I][_CPS] != null) {
7419
- contents[_I] = de_CachePolicySummaryList(__getArrayIfSingleItem(output[_I][_CPS]), context);
8394
+ else if (output[_It] != null && output[_It][_CPS] != null) {
8395
+ contents[_It] = de_CachePolicySummaryList(__getArrayIfSingleItem(output[_It][_CPS]), context);
7420
8396
  }
7421
8397
  return contents;
7422
8398
  };
@@ -7447,6 +8423,13 @@ const de_CachePolicySummaryList = (output, context) => {
7447
8423
  return de_CachePolicySummary(entry, context);
7448
8424
  });
7449
8425
  };
8426
+ const de_Certificate = (output, context) => {
8427
+ const contents = {};
8428
+ if (output[_Ar] != null) {
8429
+ contents[_Ar] = __expectString(output[_Ar]);
8430
+ }
8431
+ return contents;
8432
+ };
7450
8433
  const de_CloudFrontOriginAccessIdentity = (output, context) => {
7451
8434
  const contents = {};
7452
8435
  if (output[_Id] != null) {
@@ -7465,8 +8448,8 @@ const de_CloudFrontOriginAccessIdentityConfig = (output, context) => {
7465
8448
  if (output[_CR] != null) {
7466
8449
  contents[_CR] = __expectString(output[_CR]);
7467
8450
  }
7468
- if (output[_C] != null) {
7469
- contents[_C] = __expectString(output[_C]);
8451
+ if (output[_Co] != null) {
8452
+ contents[_Co] = __expectString(output[_Co]);
7470
8453
  }
7471
8454
  return contents;
7472
8455
  };
@@ -7488,10 +8471,10 @@ const de_CloudFrontOriginAccessIdentityList = (output, context) => {
7488
8471
  contents[_Q] = __strictParseInt32(output[_Q]);
7489
8472
  }
7490
8473
  if (output.Items === "") {
7491
- contents[_I] = [];
8474
+ contents[_It] = [];
7492
8475
  }
7493
- else if (output[_I] != null && output[_I][_CFOAIS] != null) {
7494
- contents[_I] = de_CloudFrontOriginAccessIdentitySummaryList(__getArrayIfSingleItem(output[_I][_CFOAIS]), context);
8476
+ else if (output[_It] != null && output[_It][_CFOAIS] != null) {
8477
+ contents[_It] = de_CloudFrontOriginAccessIdentitySummaryList(__getArrayIfSingleItem(output[_It][_CFOAIS]), context);
7495
8478
  }
7496
8479
  return contents;
7497
8480
  };
@@ -7503,8 +8486,8 @@ const de_CloudFrontOriginAccessIdentitySummary = (output, context) => {
7503
8486
  if (output[_SCUI] != null) {
7504
8487
  contents[_SCUI] = __expectString(output[_SCUI]);
7505
8488
  }
7506
- if (output[_C] != null) {
7507
- contents[_C] = __expectString(output[_C]);
8489
+ if (output[_Co] != null) {
8490
+ contents[_Co] = __expectString(output[_Co]);
7508
8491
  }
7509
8492
  return contents;
7510
8493
  };
@@ -7523,37 +8506,121 @@ const de_ConflictingAlias = (output, context) => {
7523
8506
  if (output[_DI] != null) {
7524
8507
  contents[_DI] = __expectString(output[_DI]);
7525
8508
  }
7526
- if (output[_AIc] != null) {
7527
- contents[_AIc] = __expectString(output[_AIc]);
8509
+ if (output[_AIc] != null) {
8510
+ contents[_AIc] = __expectString(output[_AIc]);
8511
+ }
8512
+ return contents;
8513
+ };
8514
+ const de_ConflictingAliases = (output, context) => {
8515
+ return (output || [])
8516
+ .filter((e) => e != null)
8517
+ .map((entry) => {
8518
+ return de_ConflictingAlias(entry, context);
8519
+ });
8520
+ };
8521
+ const de_ConflictingAliasesList = (output, context) => {
8522
+ const contents = {};
8523
+ if (output[_NM] != null) {
8524
+ contents[_NM] = __expectString(output[_NM]);
8525
+ }
8526
+ if (output[_MI] != null) {
8527
+ contents[_MI] = __strictParseInt32(output[_MI]);
8528
+ }
8529
+ if (output[_Q] != null) {
8530
+ contents[_Q] = __strictParseInt32(output[_Q]);
8531
+ }
8532
+ if (output.Items === "") {
8533
+ contents[_It] = [];
8534
+ }
8535
+ else if (output[_It] != null && output[_It][_CAon] != null) {
8536
+ contents[_It] = de_ConflictingAliases(__getArrayIfSingleItem(output[_It][_CAon]), context);
8537
+ }
8538
+ return contents;
8539
+ };
8540
+ const de_ConnectionGroup = (output, context) => {
8541
+ const contents = {};
8542
+ if (output[_Id] != null) {
8543
+ contents[_Id] = __expectString(output[_Id]);
8544
+ }
8545
+ if (output[_N] != null) {
8546
+ contents[_N] = __expectString(output[_N]);
8547
+ }
8548
+ if (output[_Ar] != null) {
8549
+ contents[_Ar] = __expectString(output[_Ar]);
8550
+ }
8551
+ if (output[_CTr] != null) {
8552
+ contents[_CTr] = __expectNonNull(__parseRfc3339DateTimeWithOffset(output[_CTr]));
8553
+ }
8554
+ if (output[_LMT] != null) {
8555
+ contents[_LMT] = __expectNonNull(__parseRfc3339DateTimeWithOffset(output[_LMT]));
8556
+ }
8557
+ if (output[_T] != null) {
8558
+ contents[_T] = de_Tags(output[_T], context);
8559
+ }
8560
+ if (output[_IE] != null) {
8561
+ contents[_IE] = __parseBoolean(output[_IE]);
8562
+ }
8563
+ if (output[_RE] != null) {
8564
+ contents[_RE] = __expectString(output[_RE]);
8565
+ }
8566
+ if (output[_AILI] != null) {
8567
+ contents[_AILI] = __expectString(output[_AILI]);
8568
+ }
8569
+ if (output[_Sta] != null) {
8570
+ contents[_Sta] = __expectString(output[_Sta]);
8571
+ }
8572
+ if (output[_E] != null) {
8573
+ contents[_E] = __parseBoolean(output[_E]);
8574
+ }
8575
+ if (output[_ID] != null) {
8576
+ contents[_ID] = __parseBoolean(output[_ID]);
8577
+ }
8578
+ return contents;
8579
+ };
8580
+ const de_ConnectionGroupSummary = (output, context) => {
8581
+ const contents = {};
8582
+ if (output[_Id] != null) {
8583
+ contents[_Id] = __expectString(output[_Id]);
8584
+ }
8585
+ if (output[_N] != null) {
8586
+ contents[_N] = __expectString(output[_N]);
8587
+ }
8588
+ if (output[_Ar] != null) {
8589
+ contents[_Ar] = __expectString(output[_Ar]);
8590
+ }
8591
+ if (output[_RE] != null) {
8592
+ contents[_RE] = __expectString(output[_RE]);
8593
+ }
8594
+ if (output[_CTr] != null) {
8595
+ contents[_CTr] = __expectNonNull(__parseRfc3339DateTimeWithOffset(output[_CTr]));
8596
+ }
8597
+ if (output[_LMT] != null) {
8598
+ contents[_LMT] = __expectNonNull(__parseRfc3339DateTimeWithOffset(output[_LMT]));
8599
+ }
8600
+ if (output[_ET] != null) {
8601
+ contents[_ET] = __expectString(output[_ET]);
8602
+ }
8603
+ if (output[_AILI] != null) {
8604
+ contents[_AILI] = __expectString(output[_AILI]);
8605
+ }
8606
+ if (output[_E] != null) {
8607
+ contents[_E] = __parseBoolean(output[_E]);
8608
+ }
8609
+ if (output[_Sta] != null) {
8610
+ contents[_Sta] = __expectString(output[_Sta]);
8611
+ }
8612
+ if (output[_ID] != null) {
8613
+ contents[_ID] = __parseBoolean(output[_ID]);
7528
8614
  }
7529
8615
  return contents;
7530
8616
  };
7531
- const de_ConflictingAliases = (output, context) => {
8617
+ const de_ConnectionGroupSummaryList = (output, context) => {
7532
8618
  return (output || [])
7533
8619
  .filter((e) => e != null)
7534
8620
  .map((entry) => {
7535
- return de_ConflictingAlias(entry, context);
8621
+ return de_ConnectionGroupSummary(entry, context);
7536
8622
  });
7537
8623
  };
7538
- const de_ConflictingAliasesList = (output, context) => {
7539
- const contents = {};
7540
- if (output[_NM] != null) {
7541
- contents[_NM] = __expectString(output[_NM]);
7542
- }
7543
- if (output[_MI] != null) {
7544
- contents[_MI] = __strictParseInt32(output[_MI]);
7545
- }
7546
- if (output[_Q] != null) {
7547
- contents[_Q] = __strictParseInt32(output[_Q]);
7548
- }
7549
- if (output.Items === "") {
7550
- contents[_I] = [];
7551
- }
7552
- else if (output[_I] != null && output[_I][_CAo] != null) {
7553
- contents[_I] = de_ConflictingAliases(__getArrayIfSingleItem(output[_I][_CAo]), context);
7554
- }
7555
- return contents;
7556
- };
7557
8624
  const de_ContentTypeProfile = (output, context) => {
7558
8625
  const contents = {};
7559
8626
  if (output[_Fo] != null) {
@@ -7590,10 +8657,10 @@ const de_ContentTypeProfiles = (output, context) => {
7590
8657
  contents[_Q] = __strictParseInt32(output[_Q]);
7591
8658
  }
7592
8659
  if (output.Items === "") {
7593
- contents[_I] = [];
8660
+ contents[_It] = [];
7594
8661
  }
7595
- else if (output[_I] != null && output[_I][_CTP] != null) {
7596
- contents[_I] = de_ContentTypeProfileList(__getArrayIfSingleItem(output[_I][_CTP]), context);
8662
+ else if (output[_It] != null && output[_It][_CTP] != null) {
8663
+ contents[_It] = de_ContentTypeProfileList(__getArrayIfSingleItem(output[_It][_CTP]), context);
7597
8664
  }
7598
8665
  return contents;
7599
8666
  };
@@ -7635,10 +8702,10 @@ const de_ContinuousDeploymentPolicyList = (output, context) => {
7635
8702
  contents[_Q] = __strictParseInt32(output[_Q]);
7636
8703
  }
7637
8704
  if (output.Items === "") {
7638
- contents[_I] = [];
8705
+ contents[_It] = [];
7639
8706
  }
7640
- else if (output[_I] != null && output[_I][_CDPS] != null) {
7641
- contents[_I] = de_ContinuousDeploymentPolicySummaryList(__getArrayIfSingleItem(output[_I][_CDPS]), context);
8707
+ else if (output[_It] != null && output[_It][_CDPS] != null) {
8708
+ contents[_It] = de_ContinuousDeploymentPolicySummaryList(__getArrayIfSingleItem(output[_It][_CDPS]), context);
7642
8709
  }
7643
8710
  return contents;
7644
8711
  };
@@ -7689,10 +8756,10 @@ const de_CookieNames = (output, context) => {
7689
8756
  contents[_Q] = __strictParseInt32(output[_Q]);
7690
8757
  }
7691
8758
  if (output.Items === "") {
7692
- contents[_I] = [];
8759
+ contents[_It] = [];
7693
8760
  }
7694
- else if (output[_I] != null && output[_I][_N] != null) {
7695
- contents[_I] = de_CookieNameList(__getArrayIfSingleItem(output[_I][_N]), context);
8761
+ else if (output[_It] != null && output[_It][_N] != null) {
8762
+ contents[_It] = de_CookieNameList(__getArrayIfSingleItem(output[_It][_N]), context);
7696
8763
  }
7697
8764
  return contents;
7698
8765
  };
@@ -7735,10 +8802,10 @@ const de_CustomErrorResponses = (output, context) => {
7735
8802
  contents[_Q] = __strictParseInt32(output[_Q]);
7736
8803
  }
7737
8804
  if (output.Items === "") {
7738
- contents[_I] = [];
8805
+ contents[_It] = [];
7739
8806
  }
7740
- else if (output[_I] != null && output[_I][_CER] != null) {
7741
- contents[_I] = de_CustomErrorResponseList(__getArrayIfSingleItem(output[_I][_CER]), context);
8807
+ else if (output[_It] != null && output[_It][_CER] != null) {
8808
+ contents[_It] = de_CustomErrorResponseList(__getArrayIfSingleItem(output[_It][_CER]), context);
7742
8809
  }
7743
8810
  return contents;
7744
8811
  };
@@ -7748,10 +8815,23 @@ const de_CustomHeaders = (output, context) => {
7748
8815
  contents[_Q] = __strictParseInt32(output[_Q]);
7749
8816
  }
7750
8817
  if (output.Items === "") {
7751
- contents[_I] = [];
8818
+ contents[_It] = [];
8819
+ }
8820
+ else if (output[_It] != null && output[_It][_OCH] != null) {
8821
+ contents[_It] = de_OriginCustomHeadersList(__getArrayIfSingleItem(output[_It][_OCH]), context);
8822
+ }
8823
+ return contents;
8824
+ };
8825
+ const de_Customizations = (output, context) => {
8826
+ const contents = {};
8827
+ if (output[_WA] != null) {
8828
+ contents[_WA] = de_WebAclCustomization(output[_WA], context);
8829
+ }
8830
+ if (output[_Ce] != null) {
8831
+ contents[_Ce] = de_Certificate(output[_Ce], context);
7752
8832
  }
7753
- else if (output[_I] != null && output[_I][_OCH] != null) {
7754
- contents[_I] = de_OriginCustomHeadersList(__getArrayIfSingleItem(output[_I][_OCH]), context);
8833
+ if (output[_GR] != null) {
8834
+ contents[_GR] = de_GeoRestrictionCustomization(output[_GR], context);
7755
8835
  }
7756
8836
  return contents;
7757
8837
  };
@@ -7797,8 +8877,8 @@ const de_DefaultCacheBehavior = (output, context) => {
7797
8877
  if (output[_SS] != null) {
7798
8878
  contents[_SS] = __parseBoolean(output[_SS]);
7799
8879
  }
7800
- if (output[_Co] != null) {
7801
- contents[_Co] = __parseBoolean(output[_Co]);
8880
+ if (output[_Com] != null) {
8881
+ contents[_Com] = __parseBoolean(output[_Com]);
7802
8882
  }
7803
8883
  if (output[_LFA] != null) {
7804
8884
  contents[_LFA] = de_LambdaFunctionAssociations(output[_LFA], context);
@@ -7864,8 +8944,8 @@ const de_Distribution = (output, context) => {
7864
8944
  if (output[_ATKG] != null) {
7865
8945
  contents[_ATKG] = de_ActiveTrustedKeyGroups(output[_ATKG], context);
7866
8946
  }
7867
- if (output[_DC] != null) {
7868
- contents[_DC] = de_DistributionConfig(output[_DC], context);
8947
+ if (output[_DCi] != null) {
8948
+ contents[_DCi] = de_DistributionConfig(output[_DCi], context);
7869
8949
  }
7870
8950
  if (output.AliasICPRecordals === "") {
7871
8951
  contents[_AICPR] = [];
@@ -7901,8 +8981,8 @@ const de_DistributionConfig = (output, context) => {
7901
8981
  if (output[_CERu] != null) {
7902
8982
  contents[_CERu] = de_CustomErrorResponses(output[_CERu], context);
7903
8983
  }
7904
- if (output[_C] != null) {
7905
- contents[_C] = __expectString(output[_C]);
8984
+ if (output[_Co] != null) {
8985
+ contents[_Co] = __expectString(output[_Co]);
7906
8986
  }
7907
8987
  if (output[_Lo] != null) {
7908
8988
  contents[_Lo] = de_LoggingConfig(output[_Lo], context);
@@ -7937,6 +9017,12 @@ const de_DistributionConfig = (output, context) => {
7937
9017
  if (output[_AILI] != null) {
7938
9018
  contents[_AILI] = __expectString(output[_AILI]);
7939
9019
  }
9020
+ if (output[_TCe] != null) {
9021
+ contents[_TCe] = de_TenantConfig(output[_TCe], context);
9022
+ }
9023
+ if (output[_CMo] != null) {
9024
+ contents[_CMo] = __expectString(output[_CMo]);
9025
+ }
7940
9026
  return contents;
7941
9027
  };
7942
9028
  const de_DistributionIdList = (output, context) => {
@@ -7957,10 +9043,10 @@ const de_DistributionIdList = (output, context) => {
7957
9043
  contents[_Q] = __strictParseInt32(output[_Q]);
7958
9044
  }
7959
9045
  if (output.Items === "") {
7960
- contents[_I] = [];
9046
+ contents[_It] = [];
7961
9047
  }
7962
- else if (output[_I] != null && output[_I][_DI] != null) {
7963
- contents[_I] = de_DistributionIdListSummary(__getArrayIfSingleItem(output[_I][_DI]), context);
9048
+ else if (output[_It] != null && output[_It][_DI] != null) {
9049
+ contents[_It] = de_DistributionIdListSummary(__getArrayIfSingleItem(output[_It][_DI]), context);
7964
9050
  }
7965
9051
  return contents;
7966
9052
  };
@@ -7989,10 +9075,10 @@ const de_DistributionList = (output, context) => {
7989
9075
  contents[_Q] = __strictParseInt32(output[_Q]);
7990
9076
  }
7991
9077
  if (output.Items === "") {
7992
- contents[_I] = [];
9078
+ contents[_It] = [];
7993
9079
  }
7994
- else if (output[_I] != null && output[_I][_DS] != null) {
7995
- contents[_I] = de_DistributionSummaryList(__getArrayIfSingleItem(output[_I][_DS]), context);
9080
+ else if (output[_It] != null && output[_It][_DS] != null) {
9081
+ contents[_It] = de_DistributionSummaryList(__getArrayIfSingleItem(output[_It][_DS]), context);
7996
9082
  }
7997
9083
  return contents;
7998
9084
  };
@@ -8004,6 +9090,9 @@ const de_DistributionSummary = (output, context) => {
8004
9090
  if (output[_ARN] != null) {
8005
9091
  contents[_ARN] = __expectString(output[_ARN]);
8006
9092
  }
9093
+ if (output[_ET] != null) {
9094
+ contents[_ET] = __expectString(output[_ET]);
9095
+ }
8007
9096
  if (output[_Sta] != null) {
8008
9097
  contents[_Sta] = __expectString(output[_Sta]);
8009
9098
  }
@@ -8031,8 +9120,8 @@ const de_DistributionSummary = (output, context) => {
8031
9120
  if (output[_CERu] != null) {
8032
9121
  contents[_CERu] = de_CustomErrorResponses(output[_CERu], context);
8033
9122
  }
8034
- if (output[_C] != null) {
8035
- contents[_C] = __expectString(output[_C]);
9123
+ if (output[_Co] != null) {
9124
+ contents[_Co] = __expectString(output[_Co]);
8036
9125
  }
8037
9126
  if (output[_PC] != null) {
8038
9127
  contents[_PC] = __expectString(output[_PC]);
@@ -8064,6 +9153,9 @@ const de_DistributionSummary = (output, context) => {
8064
9153
  if (output[_S] != null) {
8065
9154
  contents[_S] = __parseBoolean(output[_S]);
8066
9155
  }
9156
+ if (output[_CMo] != null) {
9157
+ contents[_CMo] = __expectString(output[_CMo]);
9158
+ }
8067
9159
  if (output[_AILI] != null) {
8068
9160
  contents[_AILI] = __expectString(output[_AILI]);
8069
9161
  }
@@ -8076,16 +9168,175 @@ const de_DistributionSummaryList = (output, context) => {
8076
9168
  return de_DistributionSummary(entry, context);
8077
9169
  });
8078
9170
  };
9171
+ const de_DistributionTenant = (output, context) => {
9172
+ const contents = {};
9173
+ if (output[_Id] != null) {
9174
+ contents[_Id] = __expectString(output[_Id]);
9175
+ }
9176
+ if (output[_DI] != null) {
9177
+ contents[_DI] = __expectString(output[_DI]);
9178
+ }
9179
+ if (output[_N] != null) {
9180
+ contents[_N] = __expectString(output[_N]);
9181
+ }
9182
+ if (output[_Ar] != null) {
9183
+ contents[_Ar] = __expectString(output[_Ar]);
9184
+ }
9185
+ if (output.Domains === "") {
9186
+ contents[_D] = [];
9187
+ }
9188
+ else if (output[_D] != null && output[_D][_m] != null) {
9189
+ contents[_D] = de_DomainResultList(__getArrayIfSingleItem(output[_D][_m]), context);
9190
+ }
9191
+ if (output[_T] != null) {
9192
+ contents[_T] = de_Tags(output[_T], context);
9193
+ }
9194
+ if (output[_C] != null) {
9195
+ contents[_C] = de_Customizations(output[_C], context);
9196
+ }
9197
+ if (output.Parameters === "") {
9198
+ contents[_P] = [];
9199
+ }
9200
+ else if (output[_P] != null && output[_P][_m] != null) {
9201
+ contents[_P] = de_Parameters(__getArrayIfSingleItem(output[_P][_m]), context);
9202
+ }
9203
+ if (output[_CGI] != null) {
9204
+ contents[_CGI] = __expectString(output[_CGI]);
9205
+ }
9206
+ if (output[_CTr] != null) {
9207
+ contents[_CTr] = __expectNonNull(__parseRfc3339DateTimeWithOffset(output[_CTr]));
9208
+ }
9209
+ if (output[_LMT] != null) {
9210
+ contents[_LMT] = __expectNonNull(__parseRfc3339DateTimeWithOffset(output[_LMT]));
9211
+ }
9212
+ if (output[_E] != null) {
9213
+ contents[_E] = __parseBoolean(output[_E]);
9214
+ }
9215
+ if (output[_Sta] != null) {
9216
+ contents[_Sta] = __expectString(output[_Sta]);
9217
+ }
9218
+ return contents;
9219
+ };
9220
+ const de_DistributionTenantList = (output, context) => {
9221
+ return (output || [])
9222
+ .filter((e) => e != null)
9223
+ .map((entry) => {
9224
+ return de_DistributionTenantSummary(entry, context);
9225
+ });
9226
+ };
9227
+ const de_DistributionTenantSummary = (output, context) => {
9228
+ const contents = {};
9229
+ if (output[_Id] != null) {
9230
+ contents[_Id] = __expectString(output[_Id]);
9231
+ }
9232
+ if (output[_DI] != null) {
9233
+ contents[_DI] = __expectString(output[_DI]);
9234
+ }
9235
+ if (output[_N] != null) {
9236
+ contents[_N] = __expectString(output[_N]);
9237
+ }
9238
+ if (output[_Ar] != null) {
9239
+ contents[_Ar] = __expectString(output[_Ar]);
9240
+ }
9241
+ if (output.Domains === "") {
9242
+ contents[_D] = [];
9243
+ }
9244
+ else if (output[_D] != null && output[_D][_m] != null) {
9245
+ contents[_D] = de_DomainResultList(__getArrayIfSingleItem(output[_D][_m]), context);
9246
+ }
9247
+ if (output[_CGI] != null) {
9248
+ contents[_CGI] = __expectString(output[_CGI]);
9249
+ }
9250
+ if (output[_C] != null) {
9251
+ contents[_C] = de_Customizations(output[_C], context);
9252
+ }
9253
+ if (output[_CTr] != null) {
9254
+ contents[_CTr] = __expectNonNull(__parseRfc3339DateTimeWithOffset(output[_CTr]));
9255
+ }
9256
+ if (output[_LMT] != null) {
9257
+ contents[_LMT] = __expectNonNull(__parseRfc3339DateTimeWithOffset(output[_LMT]));
9258
+ }
9259
+ if (output[_ET] != null) {
9260
+ contents[_ET] = __expectString(output[_ET]);
9261
+ }
9262
+ if (output[_E] != null) {
9263
+ contents[_E] = __parseBoolean(output[_E]);
9264
+ }
9265
+ if (output[_Sta] != null) {
9266
+ contents[_Sta] = __expectString(output[_Sta]);
9267
+ }
9268
+ return contents;
9269
+ };
9270
+ const de_DnsConfiguration = (output, context) => {
9271
+ const contents = {};
9272
+ if (output[_Do] != null) {
9273
+ contents[_Do] = __expectString(output[_Do]);
9274
+ }
9275
+ if (output[_Sta] != null) {
9276
+ contents[_Sta] = __expectString(output[_Sta]);
9277
+ }
9278
+ if (output[_Rea] != null) {
9279
+ contents[_Rea] = __expectString(output[_Rea]);
9280
+ }
9281
+ return contents;
9282
+ };
9283
+ const de_DnsConfigurationList = (output, context) => {
9284
+ return (output || [])
9285
+ .filter((e) => e != null)
9286
+ .map((entry) => {
9287
+ return de_DnsConfiguration(entry, context);
9288
+ });
9289
+ };
9290
+ const de_DomainConflict = (output, context) => {
9291
+ const contents = {};
9292
+ if (output[_Do] != null) {
9293
+ contents[_Do] = __expectString(output[_Do]);
9294
+ }
9295
+ if (output[_RTe] != null) {
9296
+ contents[_RTe] = __expectString(output[_RTe]);
9297
+ }
9298
+ if (output[_RI] != null) {
9299
+ contents[_RI] = __expectString(output[_RI]);
9300
+ }
9301
+ if (output[_AIc] != null) {
9302
+ contents[_AIc] = __expectString(output[_AIc]);
9303
+ }
9304
+ return contents;
9305
+ };
9306
+ const de_DomainConflictsList = (output, context) => {
9307
+ return (output || [])
9308
+ .filter((e) => e != null)
9309
+ .map((entry) => {
9310
+ return de_DomainConflict(entry, context);
9311
+ });
9312
+ };
9313
+ const de_DomainResult = (output, context) => {
9314
+ const contents = {};
9315
+ if (output[_Do] != null) {
9316
+ contents[_Do] = __expectString(output[_Do]);
9317
+ }
9318
+ if (output[_Sta] != null) {
9319
+ contents[_Sta] = __expectString(output[_Sta]);
9320
+ }
9321
+ return contents;
9322
+ };
9323
+ const de_DomainResultList = (output, context) => {
9324
+ return (output || [])
9325
+ .filter((e) => e != null)
9326
+ .map((entry) => {
9327
+ return de_DomainResult(entry, context);
9328
+ });
9329
+ };
8079
9330
  const de_EncryptionEntities = (output, context) => {
8080
9331
  const contents = {};
8081
9332
  if (output[_Q] != null) {
8082
9333
  contents[_Q] = __strictParseInt32(output[_Q]);
8083
9334
  }
8084
9335
  if (output.Items === "") {
8085
- contents[_I] = [];
9336
+ contents[_It] = [];
8086
9337
  }
8087
- else if (output[_I] != null && output[_I][_EEn] != null) {
8088
- contents[_I] = de_EncryptionEntityList(__getArrayIfSingleItem(output[_I][_EEn]), context);
9338
+ else if (output[_It] != null && output[_It][_EEn] != null) {
9339
+ contents[_It] = de_EncryptionEntityList(__getArrayIfSingleItem(output[_It][_EEn]), context);
8089
9340
  }
8090
9341
  return contents;
8091
9342
  };
@@ -8144,8 +9395,8 @@ const de_FieldLevelEncryptionConfig = (output, context) => {
8144
9395
  if (output[_CR] != null) {
8145
9396
  contents[_CR] = __expectString(output[_CR]);
8146
9397
  }
8147
- if (output[_C] != null) {
8148
- contents[_C] = __expectString(output[_C]);
9398
+ if (output[_Co] != null) {
9399
+ contents[_Co] = __expectString(output[_Co]);
8149
9400
  }
8150
9401
  if (output[_QAPC] != null) {
8151
9402
  contents[_QAPC] = de_QueryArgProfileConfig(output[_QAPC], context);
@@ -8167,10 +9418,10 @@ const de_FieldLevelEncryptionList = (output, context) => {
8167
9418
  contents[_Q] = __strictParseInt32(output[_Q]);
8168
9419
  }
8169
9420
  if (output.Items === "") {
8170
- contents[_I] = [];
9421
+ contents[_It] = [];
8171
9422
  }
8172
- else if (output[_I] != null && output[_I][_FLES] != null) {
8173
- contents[_I] = de_FieldLevelEncryptionSummaryList(__getArrayIfSingleItem(output[_I][_FLES]), context);
9423
+ else if (output[_It] != null && output[_It][_FLES] != null) {
9424
+ contents[_It] = de_FieldLevelEncryptionSummaryList(__getArrayIfSingleItem(output[_It][_FLES]), context);
8174
9425
  }
8175
9426
  return contents;
8176
9427
  };
@@ -8195,8 +9446,8 @@ const de_FieldLevelEncryptionProfileConfig = (output, context) => {
8195
9446
  if (output[_CR] != null) {
8196
9447
  contents[_CR] = __expectString(output[_CR]);
8197
9448
  }
8198
- if (output[_C] != null) {
8199
- contents[_C] = __expectString(output[_C]);
9449
+ if (output[_Co] != null) {
9450
+ contents[_Co] = __expectString(output[_Co]);
8200
9451
  }
8201
9452
  if (output[_EE] != null) {
8202
9453
  contents[_EE] = de_EncryptionEntities(output[_EE], context);
@@ -8215,10 +9466,10 @@ const de_FieldLevelEncryptionProfileList = (output, context) => {
8215
9466
  contents[_Q] = __strictParseInt32(output[_Q]);
8216
9467
  }
8217
9468
  if (output.Items === "") {
8218
- contents[_I] = [];
9469
+ contents[_It] = [];
8219
9470
  }
8220
- else if (output[_I] != null && output[_I][_FLEPS] != null) {
8221
- contents[_I] = de_FieldLevelEncryptionProfileSummaryList(__getArrayIfSingleItem(output[_I][_FLEPS]), context);
9471
+ else if (output[_It] != null && output[_It][_FLEPS] != null) {
9472
+ contents[_It] = de_FieldLevelEncryptionProfileSummaryList(__getArrayIfSingleItem(output[_It][_FLEPS]), context);
8222
9473
  }
8223
9474
  return contents;
8224
9475
  };
@@ -8236,8 +9487,8 @@ const de_FieldLevelEncryptionProfileSummary = (output, context) => {
8236
9487
  if (output[_EE] != null) {
8237
9488
  contents[_EE] = de_EncryptionEntities(output[_EE], context);
8238
9489
  }
8239
- if (output[_C] != null) {
8240
- contents[_C] = __expectString(output[_C]);
9490
+ if (output[_Co] != null) {
9491
+ contents[_Co] = __expectString(output[_Co]);
8241
9492
  }
8242
9493
  return contents;
8243
9494
  };
@@ -8256,8 +9507,8 @@ const de_FieldLevelEncryptionSummary = (output, context) => {
8256
9507
  if (output[_LMT] != null) {
8257
9508
  contents[_LMT] = __expectNonNull(__parseRfc3339DateTimeWithOffset(output[_LMT]));
8258
9509
  }
8259
- if (output[_C] != null) {
8260
- contents[_C] = __expectString(output[_C]);
9510
+ if (output[_Co] != null) {
9511
+ contents[_Co] = __expectString(output[_Co]);
8261
9512
  }
8262
9513
  if (output[_QAPC] != null) {
8263
9514
  contents[_QAPC] = de_QueryArgProfileConfig(output[_QAPC], context);
@@ -8294,10 +9545,10 @@ const de_FieldPatterns = (output, context) => {
8294
9545
  contents[_Q] = __strictParseInt32(output[_Q]);
8295
9546
  }
8296
9547
  if (output.Items === "") {
8297
- contents[_I] = [];
9548
+ contents[_It] = [];
8298
9549
  }
8299
- else if (output[_I] != null && output[_I][_FPi] != null) {
8300
- contents[_I] = de_FieldPatternList(__getArrayIfSingleItem(output[_I][_FPi]), context);
9550
+ else if (output[_It] != null && output[_It][_FPi] != null) {
9551
+ contents[_It] = de_FieldPatternList(__getArrayIfSingleItem(output[_It][_FPi]), context);
8301
9552
  }
8302
9553
  return contents;
8303
9554
  };
@@ -8340,17 +9591,17 @@ const de_FunctionAssociations = (output, context) => {
8340
9591
  contents[_Q] = __strictParseInt32(output[_Q]);
8341
9592
  }
8342
9593
  if (output.Items === "") {
8343
- contents[_I] = [];
9594
+ contents[_It] = [];
8344
9595
  }
8345
- else if (output[_I] != null && output[_I][_FAu] != null) {
8346
- contents[_I] = de_FunctionAssociationList(__getArrayIfSingleItem(output[_I][_FAu]), context);
9596
+ else if (output[_It] != null && output[_It][_FAu] != null) {
9597
+ contents[_It] = de_FunctionAssociationList(__getArrayIfSingleItem(output[_It][_FAu]), context);
8347
9598
  }
8348
9599
  return contents;
8349
9600
  };
8350
9601
  const de_FunctionConfig = (output, context) => {
8351
9602
  const contents = {};
8352
- if (output[_C] != null) {
8353
- contents[_C] = __expectString(output[_C]);
9603
+ if (output[_Co] != null) {
9604
+ contents[_Co] = __expectString(output[_Co]);
8354
9605
  }
8355
9606
  if (output[_Ru] != null) {
8356
9607
  contents[_Ru] = __expectString(output[_Ru]);
@@ -8379,10 +9630,10 @@ const de_FunctionList = (output, context) => {
8379
9630
  contents[_Q] = __strictParseInt32(output[_Q]);
8380
9631
  }
8381
9632
  if (output.Items === "") {
8382
- contents[_I] = [];
9633
+ contents[_It] = [];
8383
9634
  }
8384
- else if (output[_I] != null && output[_I][_FSu] != null) {
8385
- contents[_I] = de_FunctionSummaryList(__getArrayIfSingleItem(output[_I][_FSu]), context);
9635
+ else if (output[_It] != null && output[_It][_FSu] != null) {
9636
+ contents[_It] = de_FunctionSummaryList(__getArrayIfSingleItem(output[_It][_FSu]), context);
8386
9637
  }
8387
9638
  return contents;
8388
9639
  };
@@ -8434,10 +9685,23 @@ const de_GeoRestriction = (output, context) => {
8434
9685
  contents[_Q] = __strictParseInt32(output[_Q]);
8435
9686
  }
8436
9687
  if (output.Items === "") {
8437
- contents[_I] = [];
9688
+ contents[_It] = [];
9689
+ }
9690
+ else if (output[_It] != null && output[_It][_L] != null) {
9691
+ contents[_It] = de_LocationList(__getArrayIfSingleItem(output[_It][_L]), context);
9692
+ }
9693
+ return contents;
9694
+ };
9695
+ const de_GeoRestrictionCustomization = (output, context) => {
9696
+ const contents = {};
9697
+ if (output[_RT] != null) {
9698
+ contents[_RT] = __expectString(output[_RT]);
8438
9699
  }
8439
- else if (output[_I] != null && output[_I][_L] != null) {
8440
- contents[_I] = de_LocationList(__getArrayIfSingleItem(output[_I][_L]), context);
9700
+ if (output.Locations === "") {
9701
+ contents[_Loc] = [];
9702
+ }
9703
+ else if (output[_Loc] != null && output[_Loc][_L] != null) {
9704
+ contents[_Loc] = de_LocationList(__getArrayIfSingleItem(output[_Loc][_L]), context);
8441
9705
  }
8442
9706
  return contents;
8443
9707
  };
@@ -8461,10 +9725,10 @@ const de_Headers = (output, context) => {
8461
9725
  contents[_Q] = __strictParseInt32(output[_Q]);
8462
9726
  }
8463
9727
  if (output.Items === "") {
8464
- contents[_I] = [];
9728
+ contents[_It] = [];
8465
9729
  }
8466
- else if (output[_I] != null && output[_I][_N] != null) {
8467
- contents[_I] = de_HeaderList(__getArrayIfSingleItem(output[_I][_N]), context);
9730
+ else if (output[_It] != null && output[_It][_N] != null) {
9731
+ contents[_It] = de_HeaderList(__getArrayIfSingleItem(output[_It][_N]), context);
8468
9732
  }
8469
9733
  return contents;
8470
9734
  };
@@ -8486,8 +9750,8 @@ const de_Invalidation = (output, context) => {
8486
9750
  };
8487
9751
  const de_InvalidationBatch = (output, context) => {
8488
9752
  const contents = {};
8489
- if (output[_P] != null) {
8490
- contents[_P] = de_Paths(output[_P], context);
9753
+ if (output[_Pa] != null) {
9754
+ contents[_Pa] = de_Paths(output[_Pa], context);
8491
9755
  }
8492
9756
  if (output[_CR] != null) {
8493
9757
  contents[_CR] = __expectString(output[_CR]);
@@ -8512,10 +9776,10 @@ const de_InvalidationList = (output, context) => {
8512
9776
  contents[_Q] = __strictParseInt32(output[_Q]);
8513
9777
  }
8514
9778
  if (output.Items === "") {
8515
- contents[_I] = [];
9779
+ contents[_It] = [];
8516
9780
  }
8517
- else if (output[_I] != null && output[_I][_ISnv] != null) {
8518
- contents[_I] = de_InvalidationSummaryList(__getArrayIfSingleItem(output[_I][_ISnv]), context);
9781
+ else if (output[_It] != null && output[_It][_ISnv] != null) {
9782
+ contents[_It] = de_InvalidationSummaryList(__getArrayIfSingleItem(output[_It][_ISnv]), context);
8519
9783
  }
8520
9784
  return contents;
8521
9785
  };
@@ -8558,13 +9822,13 @@ const de_KeyGroupConfig = (output, context) => {
8558
9822
  contents[_N] = __expectString(output[_N]);
8559
9823
  }
8560
9824
  if (output.Items === "") {
8561
- contents[_I] = [];
9825
+ contents[_It] = [];
8562
9826
  }
8563
- else if (output[_I] != null && output[_I][_PK] != null) {
8564
- contents[_I] = de_PublicKeyIdList(__getArrayIfSingleItem(output[_I][_PK]), context);
9827
+ else if (output[_It] != null && output[_It][_PK] != null) {
9828
+ contents[_It] = de_PublicKeyIdList(__getArrayIfSingleItem(output[_It][_PK]), context);
8565
9829
  }
8566
- if (output[_C] != null) {
8567
- contents[_C] = __expectString(output[_C]);
9830
+ if (output[_Co] != null) {
9831
+ contents[_Co] = __expectString(output[_Co]);
8568
9832
  }
8569
9833
  return contents;
8570
9834
  };
@@ -8580,10 +9844,10 @@ const de_KeyGroupList = (output, context) => {
8580
9844
  contents[_Q] = __strictParseInt32(output[_Q]);
8581
9845
  }
8582
9846
  if (output.Items === "") {
8583
- contents[_I] = [];
9847
+ contents[_It] = [];
8584
9848
  }
8585
- else if (output[_I] != null && output[_I][_KGS] != null) {
8586
- contents[_I] = de_KeyGroupSummaryList(__getArrayIfSingleItem(output[_I][_KGS]), context);
9849
+ else if (output[_It] != null && output[_It][_KGS] != null) {
9850
+ contents[_It] = de_KeyGroupSummaryList(__getArrayIfSingleItem(output[_It][_KGS]), context);
8587
9851
  }
8588
9852
  return contents;
8589
9853
  };
@@ -8614,10 +9878,10 @@ const de_KeyPairIds = (output, context) => {
8614
9878
  contents[_Q] = __strictParseInt32(output[_Q]);
8615
9879
  }
8616
9880
  if (output.Items === "") {
8617
- contents[_I] = [];
9881
+ contents[_It] = [];
8618
9882
  }
8619
- else if (output[_I] != null && output[_I][_KPI] != null) {
8620
- contents[_I] = de_KeyPairIdList(__getArrayIfSingleItem(output[_I][_KPI]), context);
9883
+ else if (output[_It] != null && output[_It][_KPI] != null) {
9884
+ contents[_It] = de_KeyPairIdList(__getArrayIfSingleItem(output[_It][_KPI]), context);
8621
9885
  }
8622
9886
  return contents;
8623
9887
  };
@@ -8629,8 +9893,8 @@ const de_KeyValueStore = (output, context) => {
8629
9893
  if (output[_Id] != null) {
8630
9894
  contents[_Id] = __expectString(output[_Id]);
8631
9895
  }
8632
- if (output[_C] != null) {
8633
- contents[_C] = __expectString(output[_C]);
9896
+ if (output[_Co] != null) {
9897
+ contents[_Co] = __expectString(output[_Co]);
8634
9898
  }
8635
9899
  if (output[_ARN] != null) {
8636
9900
  contents[_ARN] = __expectString(output[_ARN]);
@@ -8663,10 +9927,10 @@ const de_KeyValueStoreAssociations = (output, context) => {
8663
9927
  contents[_Q] = __strictParseInt32(output[_Q]);
8664
9928
  }
8665
9929
  if (output.Items === "") {
8666
- contents[_I] = [];
9930
+ contents[_It] = [];
8667
9931
  }
8668
- else if (output[_I] != null && output[_I][_KVSAe] != null) {
8669
- contents[_I] = de_KeyValueStoreAssociationList(__getArrayIfSingleItem(output[_I][_KVSAe]), context);
9932
+ else if (output[_It] != null && output[_It][_KVSAe] != null) {
9933
+ contents[_It] = de_KeyValueStoreAssociationList(__getArrayIfSingleItem(output[_It][_KVSAe]), context);
8670
9934
  }
8671
9935
  return contents;
8672
9936
  };
@@ -8682,10 +9946,10 @@ const de_KeyValueStoreList = (output, context) => {
8682
9946
  contents[_Q] = __strictParseInt32(output[_Q]);
8683
9947
  }
8684
9948
  if (output.Items === "") {
8685
- contents[_I] = [];
9949
+ contents[_It] = [];
8686
9950
  }
8687
- else if (output[_I] != null && output[_I][_KVS] != null) {
8688
- contents[_I] = de_KeyValueStoreSummaryList(__getArrayIfSingleItem(output[_I][_KVS]), context);
9951
+ else if (output[_It] != null && output[_It][_KVS] != null) {
9952
+ contents[_It] = de_KeyValueStoreSummaryList(__getArrayIfSingleItem(output[_It][_KVS]), context);
8689
9953
  }
8690
9954
  return contents;
8691
9955
  };
@@ -8749,10 +10013,10 @@ const de_LambdaFunctionAssociations = (output, context) => {
8749
10013
  contents[_Q] = __strictParseInt32(output[_Q]);
8750
10014
  }
8751
10015
  if (output.Items === "") {
8752
- contents[_I] = [];
10016
+ contents[_It] = [];
8753
10017
  }
8754
- else if (output[_I] != null && output[_I][_LFAa] != null) {
8755
- contents[_I] = de_LambdaFunctionAssociationList(__getArrayIfSingleItem(output[_I][_LFAa]), context);
10018
+ else if (output[_It] != null && output[_It][_LFAa] != null) {
10019
+ contents[_It] = de_LambdaFunctionAssociationList(__getArrayIfSingleItem(output[_It][_LFAa]), context);
8756
10020
  }
8757
10021
  return contents;
8758
10022
  };
@@ -8779,6 +10043,25 @@ const de_LoggingConfig = (output, context) => {
8779
10043
  }
8780
10044
  return contents;
8781
10045
  };
10046
+ const de_ManagedCertificateDetails = (output, context) => {
10047
+ const contents = {};
10048
+ if (output[_CA] != null) {
10049
+ contents[_CA] = __expectString(output[_CA]);
10050
+ }
10051
+ if (output[_CSe] != null) {
10052
+ contents[_CSe] = __expectString(output[_CSe]);
10053
+ }
10054
+ if (output[_VTH] != null) {
10055
+ contents[_VTH] = __expectString(output[_VTH]);
10056
+ }
10057
+ if (output.ValidationTokenDetails === "") {
10058
+ contents[_VTD] = [];
10059
+ }
10060
+ else if (output[_VTD] != null && output[_VTD][_m] != null) {
10061
+ contents[_VTD] = de_ValidationTokenDetailList(__getArrayIfSingleItem(output[_VTD][_m]), context);
10062
+ }
10063
+ return contents;
10064
+ };
8782
10065
  const de_MethodsList = (output, context) => {
8783
10066
  return (output || [])
8784
10067
  .filter((e) => e != null)
@@ -8816,8 +10099,8 @@ const de_Origin = (output, context) => {
8816
10099
  if (output[_VOC] != null) {
8817
10100
  contents[_VOC] = de_VpcOriginConfig(output[_VOC], context);
8818
10101
  }
8819
- if (output[_CA] != null) {
8820
- contents[_CA] = __strictParseInt32(output[_CA]);
10102
+ if (output[_CAo] != null) {
10103
+ contents[_CAo] = __strictParseInt32(output[_CAo]);
8821
10104
  }
8822
10105
  if (output[_CTon] != null) {
8823
10106
  contents[_CTon] = __strictParseInt32(output[_CTon]);
@@ -8845,8 +10128,8 @@ const de_OriginAccessControlConfig = (output, context) => {
8845
10128
  if (output[_N] != null) {
8846
10129
  contents[_N] = __expectString(output[_N]);
8847
10130
  }
8848
- if (output[_D] != null) {
8849
- contents[_D] = __expectString(output[_D]);
10131
+ if (output[_De] != null) {
10132
+ contents[_De] = __expectString(output[_De]);
8850
10133
  }
8851
10134
  if (output[_SP] != null) {
8852
10135
  contents[_SP] = __expectString(output[_SP]);
@@ -8877,10 +10160,10 @@ const de_OriginAccessControlList = (output, context) => {
8877
10160
  contents[_Q] = __strictParseInt32(output[_Q]);
8878
10161
  }
8879
10162
  if (output.Items === "") {
8880
- contents[_I] = [];
10163
+ contents[_It] = [];
8881
10164
  }
8882
- else if (output[_I] != null && output[_I][_OACS] != null) {
8883
- contents[_I] = de_OriginAccessControlSummaryList(__getArrayIfSingleItem(output[_I][_OACS]), context);
10165
+ else if (output[_It] != null && output[_It][_OACS] != null) {
10166
+ contents[_It] = de_OriginAccessControlSummaryList(__getArrayIfSingleItem(output[_It][_OACS]), context);
8884
10167
  }
8885
10168
  return contents;
8886
10169
  };
@@ -8889,8 +10172,8 @@ const de_OriginAccessControlSummary = (output, context) => {
8889
10172
  if (output[_Id] != null) {
8890
10173
  contents[_Id] = __expectString(output[_Id]);
8891
10174
  }
8892
- if (output[_D] != null) {
8893
- contents[_D] = __expectString(output[_D]);
10175
+ if (output[_De] != null) {
10176
+ contents[_De] = __expectString(output[_De]);
8894
10177
  }
8895
10178
  if (output[_N] != null) {
8896
10179
  contents[_N] = __expectString(output[_N]);
@@ -8980,10 +10263,10 @@ const de_OriginGroupMembers = (output, context) => {
8980
10263
  contents[_Q] = __strictParseInt32(output[_Q]);
8981
10264
  }
8982
10265
  if (output.Items === "") {
8983
- contents[_I] = [];
10266
+ contents[_It] = [];
8984
10267
  }
8985
- else if (output[_I] != null && output[_I][_OGM] != null) {
8986
- contents[_I] = de_OriginGroupMemberList(__getArrayIfSingleItem(output[_I][_OGM]), context);
10268
+ else if (output[_It] != null && output[_It][_OGM] != null) {
10269
+ contents[_It] = de_OriginGroupMemberList(__getArrayIfSingleItem(output[_It][_OGM]), context);
8987
10270
  }
8988
10271
  return contents;
8989
10272
  };
@@ -8993,10 +10276,10 @@ const de_OriginGroups = (output, context) => {
8993
10276
  contents[_Q] = __strictParseInt32(output[_Q]);
8994
10277
  }
8995
10278
  if (output.Items === "") {
8996
- contents[_I] = [];
10279
+ contents[_It] = [];
8997
10280
  }
8998
- else if (output[_I] != null && output[_I][_OGr] != null) {
8999
- contents[_I] = de_OriginGroupList(__getArrayIfSingleItem(output[_I][_OGr]), context);
10281
+ else if (output[_It] != null && output[_It][_OGr] != null) {
10282
+ contents[_It] = de_OriginGroupList(__getArrayIfSingleItem(output[_It][_OGr]), context);
9000
10283
  }
9001
10284
  return contents;
9002
10285
  };
@@ -9022,8 +10305,8 @@ const de_OriginRequestPolicy = (output, context) => {
9022
10305
  };
9023
10306
  const de_OriginRequestPolicyConfig = (output, context) => {
9024
10307
  const contents = {};
9025
- if (output[_C] != null) {
9026
- contents[_C] = __expectString(output[_C]);
10308
+ if (output[_Co] != null) {
10309
+ contents[_Co] = __expectString(output[_Co]);
9027
10310
  }
9028
10311
  if (output[_N] != null) {
9029
10312
  contents[_N] = __expectString(output[_N]);
@@ -9071,10 +10354,10 @@ const de_OriginRequestPolicyList = (output, context) => {
9071
10354
  contents[_Q] = __strictParseInt32(output[_Q]);
9072
10355
  }
9073
10356
  if (output.Items === "") {
9074
- contents[_I] = [];
10357
+ contents[_It] = [];
9075
10358
  }
9076
- else if (output[_I] != null && output[_I][_ORPS] != null) {
9077
- contents[_I] = de_OriginRequestPolicySummaryList(__getArrayIfSingleItem(output[_I][_ORPS]), context);
10359
+ else if (output[_It] != null && output[_It][_ORPS] != null) {
10360
+ contents[_It] = de_OriginRequestPolicySummaryList(__getArrayIfSingleItem(output[_It][_ORPS]), context);
9078
10361
  }
9079
10362
  return contents;
9080
10363
  };
@@ -9111,10 +10394,10 @@ const de_Origins = (output, context) => {
9111
10394
  contents[_Q] = __strictParseInt32(output[_Q]);
9112
10395
  }
9113
10396
  if (output.Items === "") {
9114
- contents[_I] = [];
10397
+ contents[_It] = [];
9115
10398
  }
9116
- else if (output[_I] != null && output[_I][_Or] != null) {
9117
- contents[_I] = de_OriginList(__getArrayIfSingleItem(output[_I][_Or]), context);
10399
+ else if (output[_It] != null && output[_It][_Or] != null) {
10400
+ contents[_It] = de_OriginList(__getArrayIfSingleItem(output[_It][_Or]), context);
9118
10401
  }
9119
10402
  return contents;
9120
10403
  };
@@ -9134,13 +10417,54 @@ const de_OriginSslProtocols = (output, context) => {
9134
10417
  contents[_Q] = __strictParseInt32(output[_Q]);
9135
10418
  }
9136
10419
  if (output.Items === "") {
9137
- contents[_I] = [];
10420
+ contents[_It] = [];
10421
+ }
10422
+ else if (output[_It] != null && output[_It][_SPs] != null) {
10423
+ contents[_It] = de_SslProtocolsList(__getArrayIfSingleItem(output[_It][_SPs]), context);
10424
+ }
10425
+ return contents;
10426
+ };
10427
+ const de_Parameter = (output, context) => {
10428
+ const contents = {};
10429
+ if (output[_N] != null) {
10430
+ contents[_N] = __expectString(output[_N]);
9138
10431
  }
9139
- else if (output[_I] != null && output[_I][_SPs] != null) {
9140
- contents[_I] = de_SslProtocolsList(__getArrayIfSingleItem(output[_I][_SPs]), context);
10432
+ if (output[_V] != null) {
10433
+ contents[_V] = __expectString(output[_V]);
10434
+ }
10435
+ return contents;
10436
+ };
10437
+ const de_ParameterDefinition = (output, context) => {
10438
+ const contents = {};
10439
+ if (output[_N] != null) {
10440
+ contents[_N] = __expectString(output[_N]);
10441
+ }
10442
+ if (output[_Def] != null) {
10443
+ contents[_Def] = de_ParameterDefinitionSchema(output[_Def], context);
10444
+ }
10445
+ return contents;
10446
+ };
10447
+ const de_ParameterDefinitions = (output, context) => {
10448
+ return (output || [])
10449
+ .filter((e) => e != null)
10450
+ .map((entry) => {
10451
+ return de_ParameterDefinition(entry, context);
10452
+ });
10453
+ };
10454
+ const de_ParameterDefinitionSchema = (output, context) => {
10455
+ const contents = {};
10456
+ if (output[_SSt] != null) {
10457
+ contents[_SSt] = de_StringSchemaConfig(output[_SSt], context);
9141
10458
  }
9142
10459
  return contents;
9143
10460
  };
10461
+ const de_Parameters = (output, context) => {
10462
+ return (output || [])
10463
+ .filter((e) => e != null)
10464
+ .map((entry) => {
10465
+ return de_Parameter(entry, context);
10466
+ });
10467
+ };
9144
10468
  const de_ParametersInCacheKeyAndForwardedToOrigin = (output, context) => {
9145
10469
  const contents = {};
9146
10470
  if (output[_EAEG] != null) {
@@ -9173,10 +10497,10 @@ const de_Paths = (output, context) => {
9173
10497
  contents[_Q] = __strictParseInt32(output[_Q]);
9174
10498
  }
9175
10499
  if (output.Items === "") {
9176
- contents[_I] = [];
10500
+ contents[_It] = [];
9177
10501
  }
9178
- else if (output[_I] != null && output[_I][_Pa] != null) {
9179
- contents[_I] = de_PathList(__getArrayIfSingleItem(output[_I][_Pa]), context);
10502
+ else if (output[_It] != null && output[_It][_Pat] != null) {
10503
+ contents[_It] = de_PathList(__getArrayIfSingleItem(output[_It][_Pat]), context);
9180
10504
  }
9181
10505
  return contents;
9182
10506
  };
@@ -9204,8 +10528,8 @@ const de_PublicKeyConfig = (output, context) => {
9204
10528
  if (output[_EK] != null) {
9205
10529
  contents[_EK] = __expectString(output[_EK]);
9206
10530
  }
9207
- if (output[_C] != null) {
9208
- contents[_C] = __expectString(output[_C]);
10531
+ if (output[_Co] != null) {
10532
+ contents[_Co] = __expectString(output[_Co]);
9209
10533
  }
9210
10534
  return contents;
9211
10535
  };
@@ -9228,10 +10552,10 @@ const de_PublicKeyList = (output, context) => {
9228
10552
  contents[_Q] = __strictParseInt32(output[_Q]);
9229
10553
  }
9230
10554
  if (output.Items === "") {
9231
- contents[_I] = [];
10555
+ contents[_It] = [];
9232
10556
  }
9233
- else if (output[_I] != null && output[_I][_PKS] != null) {
9234
- contents[_I] = de_PublicKeySummaryList(__getArrayIfSingleItem(output[_I][_PKS]), context);
10557
+ else if (output[_It] != null && output[_It][_PKS] != null) {
10558
+ contents[_It] = de_PublicKeySummaryList(__getArrayIfSingleItem(output[_It][_PKS]), context);
9235
10559
  }
9236
10560
  return contents;
9237
10561
  };
@@ -9249,8 +10573,8 @@ const de_PublicKeySummary = (output, context) => {
9249
10573
  if (output[_EK] != null) {
9250
10574
  contents[_EK] = __expectString(output[_EK]);
9251
10575
  }
9252
- if (output[_C] != null) {
9253
- contents[_C] = __expectString(output[_C]);
10576
+ if (output[_Co] != null) {
10577
+ contents[_Co] = __expectString(output[_Co]);
9254
10578
  }
9255
10579
  return contents;
9256
10580
  };
@@ -9294,10 +10618,10 @@ const de_QueryArgProfiles = (output, context) => {
9294
10618
  contents[_Q] = __strictParseInt32(output[_Q]);
9295
10619
  }
9296
10620
  if (output.Items === "") {
9297
- contents[_I] = [];
10621
+ contents[_It] = [];
9298
10622
  }
9299
- else if (output[_I] != null && output[_I][_QAP] != null) {
9300
- contents[_I] = de_QueryArgProfileList(__getArrayIfSingleItem(output[_I][_QAP]), context);
10623
+ else if (output[_It] != null && output[_It][_QAP] != null) {
10624
+ contents[_It] = de_QueryArgProfileList(__getArrayIfSingleItem(output[_It][_QAP]), context);
9301
10625
  }
9302
10626
  return contents;
9303
10627
  };
@@ -9307,10 +10631,10 @@ const de_QueryStringCacheKeys = (output, context) => {
9307
10631
  contents[_Q] = __strictParseInt32(output[_Q]);
9308
10632
  }
9309
10633
  if (output.Items === "") {
9310
- contents[_I] = [];
10634
+ contents[_It] = [];
9311
10635
  }
9312
- else if (output[_I] != null && output[_I][_N] != null) {
9313
- contents[_I] = de_QueryStringCacheKeysList(__getArrayIfSingleItem(output[_I][_N]), context);
10636
+ else if (output[_It] != null && output[_It][_N] != null) {
10637
+ contents[_It] = de_QueryStringCacheKeysList(__getArrayIfSingleItem(output[_It][_N]), context);
9314
10638
  }
9315
10639
  return contents;
9316
10640
  };
@@ -9327,10 +10651,10 @@ const de_QueryStringNames = (output, context) => {
9327
10651
  contents[_Q] = __strictParseInt32(output[_Q]);
9328
10652
  }
9329
10653
  if (output.Items === "") {
9330
- contents[_I] = [];
10654
+ contents[_It] = [];
9331
10655
  }
9332
- else if (output[_I] != null && output[_I][_N] != null) {
9333
- contents[_I] = de_QueryStringNamesList(__getArrayIfSingleItem(output[_I][_N]), context);
10656
+ else if (output[_It] != null && output[_It][_N] != null) {
10657
+ contents[_It] = de_QueryStringNamesList(__getArrayIfSingleItem(output[_It][_N]), context);
9334
10658
  }
9335
10659
  return contents;
9336
10660
  };
@@ -9379,10 +10703,10 @@ const de_RealtimeLogConfigs = (output, context) => {
9379
10703
  contents[_MI] = __strictParseInt32(output[_MI]);
9380
10704
  }
9381
10705
  if (output.Items === "") {
9382
- contents[_I] = [];
10706
+ contents[_It] = [];
9383
10707
  }
9384
- else if (output[_I] != null && output[_I][_m] != null) {
9385
- contents[_I] = de_RealtimeLogConfigList(__getArrayIfSingleItem(output[_I][_m]), context);
10708
+ else if (output[_It] != null && output[_It][_m] != null) {
10709
+ contents[_It] = de_RealtimeLogConfigList(__getArrayIfSingleItem(output[_It][_m]), context);
9386
10710
  }
9387
10711
  if (output[_IT] != null) {
9388
10712
  contents[_IT] = __parseBoolean(output[_IT]);
@@ -9421,10 +10745,10 @@ const de_ResponseHeadersPolicyAccessControlAllowHeaders = (output, context) => {
9421
10745
  contents[_Q] = __strictParseInt32(output[_Q]);
9422
10746
  }
9423
10747
  if (output.Items === "") {
9424
- contents[_I] = [];
10748
+ contents[_It] = [];
9425
10749
  }
9426
- else if (output[_I] != null && output[_I][_H] != null) {
9427
- contents[_I] = de_AccessControlAllowHeadersList(__getArrayIfSingleItem(output[_I][_H]), context);
10750
+ else if (output[_It] != null && output[_It][_H] != null) {
10751
+ contents[_It] = de_AccessControlAllowHeadersList(__getArrayIfSingleItem(output[_It][_H]), context);
9428
10752
  }
9429
10753
  return contents;
9430
10754
  };
@@ -9434,10 +10758,10 @@ const de_ResponseHeadersPolicyAccessControlAllowMethods = (output, context) => {
9434
10758
  contents[_Q] = __strictParseInt32(output[_Q]);
9435
10759
  }
9436
10760
  if (output.Items === "") {
9437
- contents[_I] = [];
10761
+ contents[_It] = [];
9438
10762
  }
9439
- else if (output[_I] != null && output[_I][_Met] != null) {
9440
- contents[_I] = de_AccessControlAllowMethodsList(__getArrayIfSingleItem(output[_I][_Met]), context);
10763
+ else if (output[_It] != null && output[_It][_Met] != null) {
10764
+ contents[_It] = de_AccessControlAllowMethodsList(__getArrayIfSingleItem(output[_It][_Met]), context);
9441
10765
  }
9442
10766
  return contents;
9443
10767
  };
@@ -9447,10 +10771,10 @@ const de_ResponseHeadersPolicyAccessControlAllowOrigins = (output, context) => {
9447
10771
  contents[_Q] = __strictParseInt32(output[_Q]);
9448
10772
  }
9449
10773
  if (output.Items === "") {
9450
- contents[_I] = [];
10774
+ contents[_It] = [];
9451
10775
  }
9452
- else if (output[_I] != null && output[_I][_Or] != null) {
9453
- contents[_I] = de_AccessControlAllowOriginsList(__getArrayIfSingleItem(output[_I][_Or]), context);
10776
+ else if (output[_It] != null && output[_It][_Or] != null) {
10777
+ contents[_It] = de_AccessControlAllowOriginsList(__getArrayIfSingleItem(output[_It][_Or]), context);
9454
10778
  }
9455
10779
  return contents;
9456
10780
  };
@@ -9460,17 +10784,17 @@ const de_ResponseHeadersPolicyAccessControlExposeHeaders = (output, context) =>
9460
10784
  contents[_Q] = __strictParseInt32(output[_Q]);
9461
10785
  }
9462
10786
  if (output.Items === "") {
9463
- contents[_I] = [];
10787
+ contents[_It] = [];
9464
10788
  }
9465
- else if (output[_I] != null && output[_I][_H] != null) {
9466
- contents[_I] = de_AccessControlExposeHeadersList(__getArrayIfSingleItem(output[_I][_H]), context);
10789
+ else if (output[_It] != null && output[_It][_H] != null) {
10790
+ contents[_It] = de_AccessControlExposeHeadersList(__getArrayIfSingleItem(output[_It][_H]), context);
9467
10791
  }
9468
10792
  return contents;
9469
10793
  };
9470
10794
  const de_ResponseHeadersPolicyConfig = (output, context) => {
9471
10795
  const contents = {};
9472
- if (output[_C] != null) {
9473
- contents[_C] = __expectString(output[_C]);
10796
+ if (output[_Co] != null) {
10797
+ contents[_Co] = __expectString(output[_Co]);
9474
10798
  }
9475
10799
  if (output[_N] != null) {
9476
10800
  contents[_N] = __expectString(output[_N]);
@@ -9560,10 +10884,10 @@ const de_ResponseHeadersPolicyCustomHeadersConfig = (output, context) => {
9560
10884
  contents[_Q] = __strictParseInt32(output[_Q]);
9561
10885
  }
9562
10886
  if (output.Items === "") {
9563
- contents[_I] = [];
10887
+ contents[_It] = [];
9564
10888
  }
9565
- else if (output[_I] != null && output[_I][_RHPCH] != null) {
9566
- contents[_I] = de_ResponseHeadersPolicyCustomHeaderList(__getArrayIfSingleItem(output[_I][_RHPCH]), context);
10889
+ else if (output[_It] != null && output[_It][_RHPCH] != null) {
10890
+ contents[_It] = de_ResponseHeadersPolicyCustomHeaderList(__getArrayIfSingleItem(output[_It][_RHPCH]), context);
9567
10891
  }
9568
10892
  return contents;
9569
10893
  };
@@ -9589,10 +10913,10 @@ const de_ResponseHeadersPolicyList = (output, context) => {
9589
10913
  contents[_Q] = __strictParseInt32(output[_Q]);
9590
10914
  }
9591
10915
  if (output.Items === "") {
9592
- contents[_I] = [];
10916
+ contents[_It] = [];
9593
10917
  }
9594
- else if (output[_I] != null && output[_I][_RHPS] != null) {
9595
- contents[_I] = de_ResponseHeadersPolicySummaryList(__getArrayIfSingleItem(output[_I][_RHPS]), context);
10918
+ else if (output[_It] != null && output[_It][_RHPS] != null) {
10919
+ contents[_It] = de_ResponseHeadersPolicySummaryList(__getArrayIfSingleItem(output[_It][_RHPS]), context);
9596
10920
  }
9597
10921
  return contents;
9598
10922
  };
@@ -9626,10 +10950,10 @@ const de_ResponseHeadersPolicyRemoveHeadersConfig = (output, context) => {
9626
10950
  contents[_Q] = __strictParseInt32(output[_Q]);
9627
10951
  }
9628
10952
  if (output.Items === "") {
9629
- contents[_I] = [];
10953
+ contents[_It] = [];
9630
10954
  }
9631
- else if (output[_I] != null && output[_I][_RHPRH] != null) {
9632
- contents[_I] = de_ResponseHeadersPolicyRemoveHeaderList(__getArrayIfSingleItem(output[_I][_RHPRH]), context);
10955
+ else if (output[_It] != null && output[_It][_RHPRH] != null) {
10956
+ contents[_It] = de_ResponseHeadersPolicyRemoveHeaderList(__getArrayIfSingleItem(output[_It][_RHPRH]), context);
9633
10957
  }
9634
10958
  return contents;
9635
10959
  };
@@ -9716,8 +11040,8 @@ const de_ResponseHeadersPolicyXSSProtection = (output, context) => {
9716
11040
  };
9717
11041
  const de_Restrictions = (output, context) => {
9718
11042
  const contents = {};
9719
- if (output[_GR] != null) {
9720
- contents[_GR] = de_GeoRestriction(output[_GR], context);
11043
+ if (output[_GRe] != null) {
11044
+ contents[_GRe] = de_GeoRestriction(output[_GRe], context);
9721
11045
  }
9722
11046
  return contents;
9723
11047
  };
@@ -9785,10 +11109,10 @@ const de_StagingDistributionDnsNames = (output, context) => {
9785
11109
  contents[_Q] = __strictParseInt32(output[_Q]);
9786
11110
  }
9787
11111
  if (output.Items === "") {
9788
- contents[_I] = [];
11112
+ contents[_It] = [];
9789
11113
  }
9790
- else if (output[_I] != null && output[_I][_DNn] != null) {
9791
- contents[_I] = de_StagingDistributionDnsNameList(__getArrayIfSingleItem(output[_I][_DNn]), context);
11114
+ else if (output[_It] != null && output[_It][_DNn] != null) {
11115
+ contents[_It] = de_StagingDistributionDnsNameList(__getArrayIfSingleItem(output[_It][_DNn]), context);
9792
11116
  }
9793
11117
  return contents;
9794
11118
  };
@@ -9805,10 +11129,10 @@ const de_StatusCodes = (output, context) => {
9805
11129
  contents[_Q] = __strictParseInt32(output[_Q]);
9806
11130
  }
9807
11131
  if (output.Items === "") {
9808
- contents[_I] = [];
11132
+ contents[_It] = [];
9809
11133
  }
9810
- else if (output[_I] != null && output[_I][_SCta] != null) {
9811
- contents[_I] = de_StatusCodeList(__getArrayIfSingleItem(output[_I][_SCta]), context);
11134
+ else if (output[_It] != null && output[_It][_SCta] != null) {
11135
+ contents[_It] = de_StatusCodeList(__getArrayIfSingleItem(output[_It][_SCta]), context);
9812
11136
  }
9813
11137
  return contents;
9814
11138
  };
@@ -9848,8 +11172,8 @@ const de_StreamingDistributionConfig = (output, context) => {
9848
11172
  if (output[_Al] != null) {
9849
11173
  contents[_Al] = de_Aliases(output[_Al], context);
9850
11174
  }
9851
- if (output[_C] != null) {
9852
- contents[_C] = __expectString(output[_C]);
11175
+ if (output[_Co] != null) {
11176
+ contents[_Co] = __expectString(output[_Co]);
9853
11177
  }
9854
11178
  if (output[_Lo] != null) {
9855
11179
  contents[_Lo] = de_StreamingLoggingConfig(output[_Lo], context);
@@ -9883,10 +11207,10 @@ const de_StreamingDistributionList = (output, context) => {
9883
11207
  contents[_Q] = __strictParseInt32(output[_Q]);
9884
11208
  }
9885
11209
  if (output.Items === "") {
9886
- contents[_I] = [];
11210
+ contents[_It] = [];
9887
11211
  }
9888
- else if (output[_I] != null && output[_I][_SDS] != null) {
9889
- contents[_I] = de_StreamingDistributionSummaryList(__getArrayIfSingleItem(output[_I][_SDS]), context);
11212
+ else if (output[_It] != null && output[_It][_SDS] != null) {
11213
+ contents[_It] = de_StreamingDistributionSummaryList(__getArrayIfSingleItem(output[_It][_SDS]), context);
9890
11214
  }
9891
11215
  return contents;
9892
11216
  };
@@ -9916,8 +11240,8 @@ const de_StreamingDistributionSummary = (output, context) => {
9916
11240
  if (output[_TS] != null) {
9917
11241
  contents[_TS] = de_TrustedSigners(output[_TS], context);
9918
11242
  }
9919
- if (output[_C] != null) {
9920
- contents[_C] = __expectString(output[_C]);
11243
+ if (output[_Co] != null) {
11244
+ contents[_Co] = __expectString(output[_Co]);
9921
11245
  }
9922
11246
  if (output[_PC] != null) {
9923
11247
  contents[_PC] = __expectString(output[_PC]);
@@ -9947,6 +11271,19 @@ const de_StreamingLoggingConfig = (output, context) => {
9947
11271
  }
9948
11272
  return contents;
9949
11273
  };
11274
+ const de_StringSchemaConfig = (output, context) => {
11275
+ const contents = {};
11276
+ if (output[_Co] != null) {
11277
+ contents[_Co] = __expectString(output[_Co]);
11278
+ }
11279
+ if (output[_DV] != null) {
11280
+ contents[_DV] = __expectString(output[_DV]);
11281
+ }
11282
+ if (output[_Req] != null) {
11283
+ contents[_Req] = __parseBoolean(output[_Req]);
11284
+ }
11285
+ return contents;
11286
+ };
9950
11287
  const de_Tag = (output, context) => {
9951
11288
  const contents = {};
9952
11289
  if (output[_K] != null) {
@@ -9967,10 +11304,20 @@ const de_TagList = (output, context) => {
9967
11304
  const de_Tags = (output, context) => {
9968
11305
  const contents = {};
9969
11306
  if (output.Items === "") {
9970
- contents[_I] = [];
11307
+ contents[_It] = [];
11308
+ }
11309
+ else if (output[_It] != null && output[_It][_Ta] != null) {
11310
+ contents[_It] = de_TagList(__getArrayIfSingleItem(output[_It][_Ta]), context);
11311
+ }
11312
+ return contents;
11313
+ };
11314
+ const de_TenantConfig = (output, context) => {
11315
+ const contents = {};
11316
+ if (output.ParameterDefinitions === "") {
11317
+ contents[_PDa] = [];
9971
11318
  }
9972
- else if (output[_I] != null && output[_I][_Ta] != null) {
9973
- contents[_I] = de_TagList(__getArrayIfSingleItem(output[_I][_Ta]), context);
11319
+ else if (output[_PDa] != null && output[_PDa][_m] != null) {
11320
+ contents[_PDa] = de_ParameterDefinitions(__getArrayIfSingleItem(output[_PDa][_m]), context);
9974
11321
  }
9975
11322
  return contents;
9976
11323
  };
@@ -10025,10 +11372,10 @@ const de_TrustedKeyGroups = (output, context) => {
10025
11372
  contents[_Q] = __strictParseInt32(output[_Q]);
10026
11373
  }
10027
11374
  if (output.Items === "") {
10028
- contents[_I] = [];
11375
+ contents[_It] = [];
10029
11376
  }
10030
- else if (output[_I] != null && output[_I][_KG] != null) {
10031
- contents[_I] = de_TrustedKeyGroupIdList(__getArrayIfSingleItem(output[_I][_KG]), context);
11377
+ else if (output[_It] != null && output[_It][_KG] != null) {
11378
+ contents[_It] = de_TrustedKeyGroupIdList(__getArrayIfSingleItem(output[_It][_KG]), context);
10032
11379
  }
10033
11380
  return contents;
10034
11381
  };
@@ -10041,13 +11388,33 @@ const de_TrustedSigners = (output, context) => {
10041
11388
  contents[_Q] = __strictParseInt32(output[_Q]);
10042
11389
  }
10043
11390
  if (output.Items === "") {
10044
- contents[_I] = [];
11391
+ contents[_It] = [];
11392
+ }
11393
+ else if (output[_It] != null && output[_It][_AAN] != null) {
11394
+ contents[_It] = de_AwsAccountNumberList(__getArrayIfSingleItem(output[_It][_AAN]), context);
11395
+ }
11396
+ return contents;
11397
+ };
11398
+ const de_ValidationTokenDetail = (output, context) => {
11399
+ const contents = {};
11400
+ if (output[_Do] != null) {
11401
+ contents[_Do] = __expectString(output[_Do]);
11402
+ }
11403
+ if (output[_RTed] != null) {
11404
+ contents[_RTed] = __expectString(output[_RTed]);
10045
11405
  }
10046
- else if (output[_I] != null && output[_I][_AAN] != null) {
10047
- contents[_I] = de_AwsAccountNumberList(__getArrayIfSingleItem(output[_I][_AAN]), context);
11406
+ if (output[_RF] != null) {
11407
+ contents[_RF] = __expectString(output[_RF]);
10048
11408
  }
10049
11409
  return contents;
10050
11410
  };
11411
+ const de_ValidationTokenDetailList = (output, context) => {
11412
+ return (output || [])
11413
+ .filter((e) => e != null)
11414
+ .map((entry) => {
11415
+ return de_ValidationTokenDetail(entry, context);
11416
+ });
11417
+ };
10051
11418
  const de_ViewerCertificate = (output, context) => {
10052
11419
  const contents = {};
10053
11420
  if (output[_CFDC] != null) {
@@ -10148,10 +11515,10 @@ const de_VpcOriginList = (output, context) => {
10148
11515
  contents[_Q] = __strictParseInt32(output[_Q]);
10149
11516
  }
10150
11517
  if (output.Items === "") {
10151
- contents[_I] = [];
11518
+ contents[_It] = [];
10152
11519
  }
10153
- else if (output[_I] != null && output[_I][_VOS] != null) {
10154
- contents[_I] = de_VpcOriginSummaryList(__getArrayIfSingleItem(output[_I][_VOS]), context);
11520
+ else if (output[_It] != null && output[_It][_VOS] != null) {
11521
+ contents[_It] = de_VpcOriginSummaryList(__getArrayIfSingleItem(output[_It][_VOS]), context);
10155
11522
  }
10156
11523
  return contents;
10157
11524
  };
@@ -10187,6 +11554,16 @@ const de_VpcOriginSummaryList = (output, context) => {
10187
11554
  return de_VpcOriginSummary(entry, context);
10188
11555
  });
10189
11556
  };
11557
+ const de_WebAclCustomization = (output, context) => {
11558
+ const contents = {};
11559
+ if (output[_Ac] != null) {
11560
+ contents[_Ac] = __expectString(output[_Ac]);
11561
+ }
11562
+ if (output[_Ar] != null) {
11563
+ contents[_Ar] = __expectString(output[_Ar]);
11564
+ }
11565
+ return contents;
11566
+ };
10190
11567
  const deserializeMetadata = (output) => ({
10191
11568
  httpStatusCode: output.statusCode,
10192
11569
  requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
@@ -10203,6 +11580,9 @@ const _ACAO = "AccessControlAllowOrigins";
10203
11580
  const _ACEH = "AccessControlExposeHeaders";
10204
11581
  const _ACMAS = "AccessControlMaxAgeSec";
10205
11582
  const _ACMCA = "ACMCertificateArn";
11583
+ const _ADTWACLR = "AssociateDistributionTenantWebACLRequest";
11584
+ const _ADWACLR = "AssociateDistributionWebACLRequest";
11585
+ const _AF = "AssociationFilter";
10206
11586
  const _AI = "AnycastIps";
10207
11587
  const _AICPR = "AliasICPRecordals";
10208
11588
  const _AICPRl = "AliasICPRecordal";
@@ -10215,17 +11595,21 @@ const _AM = "AllowedMethods";
10215
11595
  const _ARN = "ARN";
10216
11596
  const _ATKG = "ActiveTrustedKeyGroups";
10217
11597
  const _ATS = "ActiveTrustedSigners";
11598
+ const _Ac = "Action";
10218
11599
  const _Al = "Aliases";
10219
11600
  const _Ar = "Arn";
10220
11601
  const _B = "Bucket";
10221
- const _C = "Comment";
10222
- const _CA = "ConnectionAttempts";
11602
+ const _C = "Customizations";
11603
+ const _CA = "CertificateArn";
10223
11604
  const _CAILR = "CreateAnycastIpListRequest";
10224
- const _CAo = "ConflictingAlias";
11605
+ const _CAT = "CustomizationActionType";
11606
+ const _CAo = "ConnectionAttempts";
11607
+ const _CAon = "ConflictingAlias";
10225
11608
  const _CB = "CacheBehavior";
10226
11609
  const _CBa = "CacheBehaviors";
10227
11610
  const _CBo = "CookieBehavior";
10228
11611
  const _CC = "CookiesConfig";
11612
+ const _CCGR = "CreateConnectionGroupRequest";
10229
11613
  const _CCo = "CorsConfig";
10230
11614
  const _CDP = "ContinuousDeploymentPolicy";
10231
11615
  const _CDPC = "ContinuousDeploymentPolicyConfig";
@@ -10235,16 +11619,22 @@ const _CDPT = "ContinuousDeploymentPolicyType";
10235
11619
  const _CDR = "CopyDistributionRequest";
10236
11620
  const _CDSHC = "ContinuousDeploymentSingleHeaderConfig";
10237
11621
  const _CDSWC = "ContinuousDeploymentSingleWeightConfig";
11622
+ const _CDTR = "CreateDistributionTenantRequest";
10238
11623
  const _CER = "CustomErrorResponse";
10239
11624
  const _CERu = "CustomErrorResponses";
10240
11625
  const _CFDC = "CloudFrontDefaultCertificate";
10241
11626
  const _CFOAIC = "CloudFrontOriginAccessIdentityConfig";
10242
11627
  const _CFOAIS = "CloudFrontOriginAccessIdentitySummary";
10243
11628
  const _CFR = "CreateFunctionRequest";
11629
+ const _CG = "ConnectionGroups";
11630
+ const _CGAF = "ConnectionGroupAssociationFilter";
11631
+ const _CGI = "ConnectionGroupId";
11632
+ const _CGS = "ConnectionGroupSummary";
10244
11633
  const _CH = "CustomHeaders";
10245
11634
  const _CHC = "CustomHeadersConfig";
10246
11635
  const _CKVSR = "CreateKeyValueStoreRequest";
10247
11636
  const _CM = "CachedMethods";
11637
+ const _CMo = "ConnectionMode";
10248
11638
  const _CN = "CookieNames";
10249
11639
  const _CNAME = "CNAME";
10250
11640
  const _COC = "CustomOriginConfig";
@@ -10263,7 +11653,9 @@ const _CR = "CallerReference";
10263
11653
  const _CRLCR = "CreateRealtimeLogConfigRequest";
10264
11654
  const _CS = "CertificateSource";
10265
11655
  const _CSP = "ContentSecurityPolicy";
11656
+ const _CSe = "CertificateStatus";
10266
11657
  const _CT = "ContentType";
11658
+ const _CTLP = "CertificateTransparencyLoggingPreference";
10267
11659
  const _CTO = "ContentTypeOptions";
10268
11660
  const _CTP = "ContentTypeProfile";
10269
11661
  const _CTPC = "ContentTypeProfileConfig";
@@ -10275,19 +11667,34 @@ const _CTre = "CreateTime";
10275
11667
  const _CU = "ComputeUtilization";
10276
11668
  const _CVOR = "CreateVpcOriginRequest";
10277
11669
  const _Ce = "Certificate";
10278
- const _Co = "Compress";
11670
+ const _Co = "Comment";
11671
+ const _Com = "Compress";
10279
11672
  const _Coo = "Cookies";
10280
- const _D = "Description";
10281
- const _DC = "DistributionConfig";
11673
+ const _D = "Domains";
11674
+ const _DC = "DomainConflicts";
10282
11675
  const _DCB = "DefaultCacheBehavior";
11676
+ const _DCL = "DnsConfigurationList";
11677
+ const _DCVR = "DomainControlValidationResource";
10283
11678
  const _DCWT = "DistributionConfigWithTags";
11679
+ const _DCi = "DistributionConfig";
11680
+ const _DCn = "DnsConfiguration";
10284
11681
  const _DI = "DistributionId";
11682
+ const _DIo = "DomainItem";
10285
11683
  const _DN = "DomainName";
10286
11684
  const _DNn = "DnsName";
11685
+ const _DRI = "DistributionResourceId";
10287
11686
  const _DRLCR = "DeleteRealtimeLogConfigRequest";
10288
11687
  const _DRO = "DefaultRootObject";
10289
11688
  const _DS = "DistributionSummary";
11689
+ const _DTAF = "DistributionTenantAssociationFilter";
11690
+ const _DTI = "DistributionTenantId";
11691
+ const _DTL = "DistributionTenantList";
11692
+ const _DTS = "DistributionTenantSummary";
10290
11693
  const _DTTL = "DefaultTTL";
11694
+ const _DV = "DefaultValue";
11695
+ const _De = "Description";
11696
+ const _Def = "Definition";
11697
+ const _Do = "Domain";
10291
11698
  const _E = "Enabled";
10292
11699
  const _EAEB = "EnableAcceptEncodingBrotli";
10293
11700
  const _EAEG = "EnableAcceptEncodingGzip";
@@ -10335,9 +11742,11 @@ const _Fi = "Field";
10335
11742
  const _Fo = "Format";
10336
11743
  const _For = "Forward";
10337
11744
  const _GC = "GrpcConfig";
10338
- const _GR = "GeoRestriction";
11745
+ const _GR = "GeoRestrictions";
11746
+ const _GRC = "GeoRestrictionCustomization";
10339
11747
  const _GRLCR = "GetRealtimeLogConfigRequest";
10340
11748
  const _GRT = "GeoRestrictionType";
11749
+ const _GRe = "GeoRestriction";
10341
11750
  const _H = "Header";
10342
11751
  const _HB = "HeaderBehavior";
10343
11752
  const _HC = "HeadersConfig";
@@ -10347,13 +11756,15 @@ const _HTTPSP = "HTTPSPort";
10347
11756
  const _HV = "HttpVersion";
10348
11757
  const _HVe = "HeaderValue";
10349
11758
  const _He = "Headers";
10350
- const _I = "Items";
11759
+ const _I = "Identifier";
10351
11760
  const _IAMCI = "IAMCertificateId";
10352
11761
  const _IB = "InvalidationBatch";
10353
11762
  const _IBn = "IncludeBody";
10354
11763
  const _IC = "IpCount";
10355
11764
  const _ICPRS = "ICPRecordalStatus";
10356
11765
  const _ICn = "IncludeCookies";
11766
+ const _ID = "IsDefault";
11767
+ const _IE = "Ipv6Enabled";
10357
11768
  const _IIPVE = "IsIPV6Enabled";
10358
11769
  const _IM = "IfMatch";
10359
11770
  const _IPIB = "InProgressInvalidationBatches";
@@ -10365,6 +11776,7 @@ const _ISt = "ItemSelection";
10365
11776
  const _IT = "IsTruncated";
10366
11777
  const _ITTL = "IdleTTL";
10367
11778
  const _Id = "Id";
11779
+ const _It = "Items";
10368
11780
  const _K = "Key";
10369
11781
  const _KG = "KeyGroup";
10370
11782
  const _KGC = "KeyGroupConfig";
@@ -10381,14 +11793,20 @@ const _KVSC = "KeyValueStoreComment";
10381
11793
  const _KVSN = "KeyValueStoreName";
10382
11794
  const _L = "Location";
10383
11795
  const _LC = "LoggingConfig";
11796
+ const _LCGR = "ListConnectionGroupsRequest";
10384
11797
  const _LDBRLCR = "ListDistributionsByRealtimeLogConfigRequest";
11798
+ const _LDCR = "ListDomainConflictsRequest";
11799
+ const _LDTBCR = "ListDistributionTenantsByCustomizationRequest";
11800
+ const _LDTR = "ListDistributionTenantsRequest";
10385
11801
  const _LFA = "LambdaFunctionAssociations";
10386
11802
  const _LFARN = "LambdaFunctionARN";
10387
11803
  const _LFAa = "LambdaFunctionAssociation";
10388
11804
  const _LMT = "LastModifiedTime";
10389
11805
  const _Lo = "Logging";
11806
+ const _Loc = "Locations";
10390
11807
  const _M = "Marker";
10391
11808
  const _MB = "ModeBlock";
11809
+ const _MCR = "ManagedCertificateRequest";
10392
11810
  const _MI = "MaxItems";
10393
11811
  const _MPV = "MinimumProtocolVersion";
10394
11812
  const _MS = "MonitoringSubscription";
@@ -10439,8 +11857,12 @@ const _OSR = "OriginShieldRegion";
10439
11857
  const _Or = "Origin";
10440
11858
  const _Ori = "Origins";
10441
11859
  const _Ov = "Override";
10442
- const _P = "Paths";
11860
+ const _P = "Parameters";
10443
11861
  const _PC = "PriceClass";
11862
+ const _PD = "ParameterDefinition";
11863
+ const _PDN = "PrimaryDomainName";
11864
+ const _PDS = "ParameterDefinitionSchema";
11865
+ const _PDa = "ParameterDefinitions";
10444
11866
  const _PI = "ProfileId";
10445
11867
  const _PICKAFTO = "ParametersInCacheKeyAndForwardedToOrigin";
10446
11868
  const _PIr = "ProviderId";
@@ -10448,8 +11870,12 @@ const _PK = "PublicKey";
10448
11870
  const _PKC = "PublicKeyConfig";
10449
11871
  const _PKI = "PublicKeyId";
10450
11872
  const _PKS = "PublicKeySummary";
11873
+ const _PN = "ParameterName";
10451
11874
  const _PP = "PathPattern";
10452
- const _Pa = "Path";
11875
+ const _PV = "ParameterValue";
11876
+ const _Pa = "Paths";
11877
+ const _Par = "Parameter";
11878
+ const _Pat = "Path";
10453
11879
  const _Pr = "Prefix";
10454
11880
  const _Pre = "Preload";
10455
11881
  const _Pro = "Protection";
@@ -10467,6 +11893,8 @@ const _QSu = "QueryString";
10467
11893
  const _R = "Resource";
10468
11894
  const _RARN = "RoleARN";
10469
11895
  const _RC = "ResponseCode";
11896
+ const _RE = "RoutingEndpoint";
11897
+ const _RF = "RedirectFrom";
10470
11898
  const _RHC = "RemoveHeadersConfig";
10471
11899
  const _RHP = "ResponseHeadersPolicy";
10472
11900
  const _RHPACAH = "ResponseHeadersPolicyAccessControlAllowHeaders";
@@ -10490,6 +11918,7 @@ const _RHPSHC = "ResponseHeadersPolicySecurityHeadersConfig";
10490
11918
  const _RHPSTHC = "ResponseHeadersPolicyServerTimingHeadersConfig";
10491
11919
  const _RHPSTS = "ResponseHeadersPolicyStrictTransportSecurity";
10492
11920
  const _RHPXSSP = "ResponseHeadersPolicyXSSProtection";
11921
+ const _RI = "ResourceId";
10493
11922
  const _RLC = "RealtimeLogConfig";
10494
11923
  const _RLCA = "RealtimeLogConfigArn";
10495
11924
  const _RLCN = "RealtimeLogConfigName";
@@ -10499,8 +11928,12 @@ const _RP = "ReferrerPolicy";
10499
11928
  const _RPL = "ReferrerPolicyList";
10500
11929
  const _RPP = "ResponsePagePath";
10501
11930
  const _RT = "RestrictionType";
11931
+ const _RTe = "ResourceType";
11932
+ const _RTed = "RedirectTo";
10502
11933
  const _RU = "ReportUri";
10503
11934
  const _Re = "Restrictions";
11935
+ const _Rea = "Reason";
11936
+ const _Req = "Required";
10504
11937
  const _Ru = "Runtime";
10505
11938
  const _S = "Staging";
10506
11939
  const _SARN = "SourceARN";
@@ -10525,7 +11958,9 @@ const _SPs = "SslProtocol";
10525
11958
  const _SR = "SamplingRate";
10526
11959
  const _SS = "SmoothStreaming";
10527
11960
  const _SSC = "SessionStickinessConfig";
11961
+ const _SSCt = "StringSchemaConfig";
10528
11962
  const _SSLSM = "SSLSupportMethod";
11963
+ const _SSt = "StringSchema";
10529
11964
  const _ST = "StreamType";
10530
11965
  const _STHC = "ServerTimingHeadersConfig";
10531
11966
  const _STS = "StrictTransportSecurity";
@@ -10536,32 +11971,44 @@ const _St = "Stage";
10536
11971
  const _Sta = "Status";
10537
11972
  const _T = "Tags";
10538
11973
  const _TC = "TrafficConfig";
11974
+ const _TCe = "TenantConfig";
10539
11975
  const _TFR = "TestFunctionRequest";
10540
11976
  const _TK = "TagKey";
10541
11977
  const _TKG = "TrustedKeyGroups";
10542
11978
  const _TKa = "TagKeys";
10543
11979
  const _TOI = "TargetOriginId";
11980
+ const _TR = "TargetResource";
10544
11981
  const _TS = "TrustedSigners";
10545
11982
  const _TV = "TagValue";
10546
11983
  const _Ta = "Tag";
10547
11984
  const _Ty = "Type";
11985
+ const _UCGR = "UpdateConnectionGroupRequest";
11986
+ const _UDAR = "UpdateDomainAssociationRequest";
11987
+ const _UDTR = "UpdateDistributionTenantRequest";
10548
11988
  const _UFR = "UpdateFunctionRequest";
10549
11989
  const _UKVSR = "UpdateKeyValueStoreRequest";
10550
11990
  const _URLCR = "UpdateRealtimeLogConfigRequest";
10551
11991
  const _V = "Value";
10552
11992
  const _VC = "ViewerCertificate";
11993
+ const _VDCR = "VerifyDnsConfigurationRequest";
10553
11994
  const _VOC = "VpcOriginConfig";
10554
11995
  const _VOEC = "VpcOriginEndpointConfig";
10555
11996
  const _VOI = "VpcOriginId";
10556
11997
  const _VOS = "VpcOriginSummary";
10557
11998
  const _VPP = "ViewerProtocolPolicy";
11999
+ const _VTD = "ValidationTokenDetails";
12000
+ const _VTH = "ValidationTokenHost";
10558
12001
  const _W = "Weight";
12002
+ const _WA = "WebAcl";
12003
+ const _WAC = "WebAclCustomization";
12004
+ const _WACLA = "WebACLArn";
10559
12005
  const _WACLI = "WebACLId";
10560
12006
  const _WN = "WhitelistedNames";
10561
12007
  const _WT = "WithTags";
10562
12008
  const _XSSP = "XSSProtection";
10563
12009
  const _b = "boolean";
10564
12010
  const _ct = "content-type";
12011
+ const _d = "domain";
10565
12012
  const _e = "etag";
10566
12013
  const _et = "ettag";
10567
12014
  const _f = "float";
@@ -10570,7 +12017,7 @@ const _im = "if-match";
10570
12017
  const _l = "long";
10571
12018
  const _lo = "location";
10572
12019
  const _m = "member";
10573
- const _s = "staging";
12020
+ const _s = "string";
10574
12021
  const _sST = "sensitiveStringType";
10575
- const _st = "string";
12022
+ const _st = "staging";
10576
12023
  const _ve = '<?xml version="1.0" encoding="UTF-8"?>';