@aws-sdk/client-cloudfront 3.696.0 → 3.698.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 (70) hide show
  1. package/README.md +88 -0
  2. package/dist-cjs/index.js +988 -197
  3. package/dist-es/CloudFront.js +22 -0
  4. package/dist-es/commands/CreateAnycastIpListCommand.js +22 -0
  5. package/dist-es/commands/CreateVpcOriginCommand.js +22 -0
  6. package/dist-es/commands/DeleteAnycastIpListCommand.js +22 -0
  7. package/dist-es/commands/DeleteVpcOriginCommand.js +22 -0
  8. package/dist-es/commands/GetAnycastIpListCommand.js +22 -0
  9. package/dist-es/commands/GetVpcOriginCommand.js +22 -0
  10. package/dist-es/commands/ListAnycastIpListsCommand.js +22 -0
  11. package/dist-es/commands/ListDistributionsByAnycastIpListIdCommand.js +23 -0
  12. package/dist-es/commands/ListDistributionsByVpcOriginIdCommand.js +22 -0
  13. package/dist-es/commands/ListVpcOriginsCommand.js +22 -0
  14. package/dist-es/commands/UpdateVpcOriginCommand.js +22 -0
  15. package/dist-es/commands/index.js +11 -0
  16. package/dist-es/models/models_0.js +82 -52
  17. package/dist-es/models/models_1.js +3 -13
  18. package/dist-es/protocols/Aws_restXml.js +648 -66
  19. package/dist-types/CloudFront.d.ts +79 -0
  20. package/dist-types/CloudFrontClient.d.ts +13 -2
  21. package/dist-types/commands/CopyDistributionCommand.d.ts +15 -4
  22. package/dist-types/commands/CreateAnycastIpListCommand.d.ts +110 -0
  23. package/dist-types/commands/CreateDistributionCommand.d.ts +33 -8
  24. package/dist-types/commands/CreateDistributionWithTagsCommand.d.ts +33 -8
  25. package/dist-types/commands/CreateKeyValueStoreCommand.d.ts +4 -4
  26. package/dist-types/commands/CreateVpcOriginCommand.d.ts +186 -0
  27. package/dist-types/commands/DeleteAnycastIpListCommand.d.ts +95 -0
  28. package/dist-types/commands/DeleteCachePolicyCommand.d.ts +1 -1
  29. package/dist-types/commands/DeleteKeyValueStoreCommand.d.ts +2 -2
  30. package/dist-types/commands/DeleteOriginRequestPolicyCommand.d.ts +1 -1
  31. package/dist-types/commands/DeleteResponseHeadersPolicyCommand.d.ts +1 -1
  32. package/dist-types/commands/DeleteVpcOriginCommand.d.ts +155 -0
  33. package/dist-types/commands/DescribeKeyValueStoreCommand.d.ts +1 -1
  34. package/dist-types/commands/GetAnycastIpListCommand.d.ts +94 -0
  35. package/dist-types/commands/GetDistributionCommand.d.ts +15 -4
  36. package/dist-types/commands/GetDistributionConfigCommand.d.ts +15 -4
  37. package/dist-types/commands/GetVpcOriginCommand.d.ts +140 -0
  38. package/dist-types/commands/ListAnycastIpListsCommand.d.ts +100 -0
  39. package/dist-types/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +393 -0
  40. package/dist-types/commands/ListDistributionsByRealtimeLogConfigCommand.d.ts +11 -0
  41. package/dist-types/commands/ListDistributionsByVpcOriginIdCommand.d.ts +116 -0
  42. package/dist-types/commands/ListDistributionsByWebACLIdCommand.d.ts +11 -0
  43. package/dist-types/commands/ListDistributionsCommand.d.ts +11 -0
  44. package/dist-types/commands/ListVpcOriginsCommand.d.ts +131 -0
  45. package/dist-types/commands/UpdateDistributionCommand.d.ts +33 -8
  46. package/dist-types/commands/UpdateDistributionWithStagingConfigCommand.d.ts +18 -4
  47. package/dist-types/commands/UpdateKeyValueStoreCommand.d.ts +1 -1
  48. package/dist-types/commands/UpdateVpcOriginCommand.d.ts +193 -0
  49. package/dist-types/commands/index.d.ts +11 -0
  50. package/dist-types/models/models_0.d.ts +361 -383
  51. package/dist-types/models/models_1.d.ts +733 -25
  52. package/dist-types/protocols/Aws_restXml.d.ts +99 -0
  53. package/dist-types/ts3.4/CloudFront.d.ts +195 -0
  54. package/dist-types/ts3.4/CloudFrontClient.d.ts +68 -2
  55. package/dist-types/ts3.4/commands/CreateAnycastIpListCommand.d.ts +51 -0
  56. package/dist-types/ts3.4/commands/CreateVpcOriginCommand.d.ts +50 -0
  57. package/dist-types/ts3.4/commands/DeleteAnycastIpListCommand.d.ts +46 -0
  58. package/dist-types/ts3.4/commands/DeleteVpcOriginCommand.d.ts +50 -0
  59. package/dist-types/ts3.4/commands/GetAnycastIpListCommand.d.ts +50 -0
  60. package/dist-types/ts3.4/commands/GetVpcOriginCommand.d.ts +47 -0
  61. package/dist-types/ts3.4/commands/ListAnycastIpListsCommand.d.ts +51 -0
  62. package/dist-types/ts3.4/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +51 -0
  63. package/dist-types/ts3.4/commands/ListDistributionsByVpcOriginIdCommand.d.ts +51 -0
  64. package/dist-types/ts3.4/commands/ListVpcOriginsCommand.d.ts +50 -0
  65. package/dist-types/ts3.4/commands/UpdateVpcOriginCommand.d.ts +50 -0
  66. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  67. package/dist-types/ts3.4/models/models_0.d.ts +106 -93
  68. package/dist-types/ts3.4/models/models_1.d.ts +171 -13
  69. package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +132 -0
  70. package/package.json +1 -1
package/dist-cjs/index.js CHANGED
@@ -33,6 +33,7 @@ __export(src_exports, {
33
33
  CachePolicyType: () => CachePolicyType,
34
34
  CannotChangeImmutablePublicKeyFields: () => CannotChangeImmutablePublicKeyFields,
35
35
  CannotDeleteEntityWhileInUse: () => CannotDeleteEntityWhileInUse,
36
+ CannotUpdateEntityWhileInUse: () => CannotUpdateEntityWhileInUse,
36
37
  CertificateSource: () => CertificateSource,
37
38
  CloudFront: () => CloudFront,
38
39
  CloudFrontClient: () => CloudFrontClient,
@@ -44,6 +45,7 @@ __export(src_exports, {
44
45
  ContinuousDeploymentPolicyType: () => ContinuousDeploymentPolicyType,
45
46
  CopyDistributionCommand: () => CopyDistributionCommand,
46
47
  CopyDistributionResultFilterSensitiveLog: () => CopyDistributionResultFilterSensitiveLog,
48
+ CreateAnycastIpListCommand: () => CreateAnycastIpListCommand,
47
49
  CreateCachePolicyCommand: () => CreateCachePolicyCommand,
48
50
  CreateCloudFrontOriginAccessIdentityCommand: () => CreateCloudFrontOriginAccessIdentityCommand,
49
51
  CreateContinuousDeploymentPolicyCommand: () => CreateContinuousDeploymentPolicyCommand,
@@ -68,7 +70,9 @@ __export(src_exports, {
68
70
  CreateResponseHeadersPolicyCommand: () => CreateResponseHeadersPolicyCommand,
69
71
  CreateStreamingDistributionCommand: () => CreateStreamingDistributionCommand,
70
72
  CreateStreamingDistributionWithTagsCommand: () => CreateStreamingDistributionWithTagsCommand,
73
+ CreateVpcOriginCommand: () => CreateVpcOriginCommand,
71
74
  CustomHeadersFilterSensitiveLog: () => CustomHeadersFilterSensitiveLog,
75
+ DeleteAnycastIpListCommand: () => DeleteAnycastIpListCommand,
72
76
  DeleteCachePolicyCommand: () => DeleteCachePolicyCommand,
73
77
  DeleteCloudFrontOriginAccessIdentityCommand: () => DeleteCloudFrontOriginAccessIdentityCommand,
74
78
  DeleteContinuousDeploymentPolicyCommand: () => DeleteContinuousDeploymentPolicyCommand,
@@ -85,6 +89,7 @@ __export(src_exports, {
85
89
  DeleteRealtimeLogConfigCommand: () => DeleteRealtimeLogConfigCommand,
86
90
  DeleteResponseHeadersPolicyCommand: () => DeleteResponseHeadersPolicyCommand,
87
91
  DeleteStreamingDistributionCommand: () => DeleteStreamingDistributionCommand,
92
+ DeleteVpcOriginCommand: () => DeleteVpcOriginCommand,
88
93
  DescribeFunctionCommand: () => DescribeFunctionCommand,
89
94
  DescribeKeyValueStoreCommand: () => DescribeKeyValueStoreCommand,
90
95
  DistributionAlreadyExists: () => DistributionAlreadyExists,
@@ -112,6 +117,7 @@ __export(src_exports, {
112
117
  FunctionSizeLimitExceeded: () => FunctionSizeLimitExceeded,
113
118
  FunctionStage: () => FunctionStage,
114
119
  GeoRestrictionType: () => GeoRestrictionType,
120
+ GetAnycastIpListCommand: () => GetAnycastIpListCommand,
115
121
  GetCachePolicyCommand: () => GetCachePolicyCommand,
116
122
  GetCachePolicyConfigCommand: () => GetCachePolicyConfigCommand,
117
123
  GetCloudFrontOriginAccessIdentityCommand: () => GetCloudFrontOriginAccessIdentityCommand,
@@ -143,6 +149,7 @@ __export(src_exports, {
143
149
  GetResponseHeadersPolicyConfigCommand: () => GetResponseHeadersPolicyConfigCommand,
144
150
  GetStreamingDistributionCommand: () => GetStreamingDistributionCommand,
145
151
  GetStreamingDistributionConfigCommand: () => GetStreamingDistributionConfigCommand,
152
+ GetVpcOriginCommand: () => GetVpcOriginCommand,
146
153
  HttpVersion: () => HttpVersion,
147
154
  ICPRecordalStatus: () => ICPRecordalStatus,
148
155
  IllegalDelete: () => IllegalDelete,
@@ -179,16 +186,20 @@ __export(src_exports, {
179
186
  InvalidWebACLId: () => InvalidWebACLId,
180
187
  ItemSelection: () => ItemSelection,
181
188
  KeyGroupAlreadyExists: () => KeyGroupAlreadyExists,
189
+ ListAnycastIpListsCommand: () => ListAnycastIpListsCommand,
182
190
  ListCachePoliciesCommand: () => ListCachePoliciesCommand,
183
191
  ListCloudFrontOriginAccessIdentitiesCommand: () => ListCloudFrontOriginAccessIdentitiesCommand,
184
192
  ListConflictingAliasesCommand: () => ListConflictingAliasesCommand,
185
193
  ListContinuousDeploymentPoliciesCommand: () => ListContinuousDeploymentPoliciesCommand,
194
+ ListDistributionsByAnycastIpListIdCommand: () => ListDistributionsByAnycastIpListIdCommand,
195
+ ListDistributionsByAnycastIpListIdResultFilterSensitiveLog: () => ListDistributionsByAnycastIpListIdResultFilterSensitiveLog,
186
196
  ListDistributionsByCachePolicyIdCommand: () => ListDistributionsByCachePolicyIdCommand,
187
197
  ListDistributionsByKeyGroupCommand: () => ListDistributionsByKeyGroupCommand,
188
198
  ListDistributionsByOriginRequestPolicyIdCommand: () => ListDistributionsByOriginRequestPolicyIdCommand,
189
199
  ListDistributionsByRealtimeLogConfigCommand: () => ListDistributionsByRealtimeLogConfigCommand,
190
200
  ListDistributionsByRealtimeLogConfigResultFilterSensitiveLog: () => ListDistributionsByRealtimeLogConfigResultFilterSensitiveLog,
191
201
  ListDistributionsByResponseHeadersPolicyIdCommand: () => ListDistributionsByResponseHeadersPolicyIdCommand,
202
+ ListDistributionsByVpcOriginIdCommand: () => ListDistributionsByVpcOriginIdCommand,
192
203
  ListDistributionsByWebACLIdCommand: () => ListDistributionsByWebACLIdCommand,
193
204
  ListDistributionsByWebACLIdResultFilterSensitiveLog: () => ListDistributionsByWebACLIdResultFilterSensitiveLog,
194
205
  ListDistributionsCommand: () => ListDistributionsCommand,
@@ -206,6 +217,7 @@ __export(src_exports, {
206
217
  ListResponseHeadersPoliciesCommand: () => ListResponseHeadersPoliciesCommand,
207
218
  ListStreamingDistributionsCommand: () => ListStreamingDistributionsCommand,
208
219
  ListTagsForResourceCommand: () => ListTagsForResourceCommand,
220
+ ListVpcOriginsCommand: () => ListVpcOriginsCommand,
209
221
  Method: () => Method,
210
222
  MinimumProtocolVersion: () => MinimumProtocolVersion,
211
223
  MissingBody: () => MissingBody,
@@ -234,6 +246,7 @@ __export(src_exports, {
234
246
  OriginAccessControlSigningProtocols: () => OriginAccessControlSigningProtocols,
235
247
  OriginCustomHeaderFilterSensitiveLog: () => OriginCustomHeaderFilterSensitiveLog,
236
248
  OriginFilterSensitiveLog: () => OriginFilterSensitiveLog,
249
+ OriginGroupSelectionCriteria: () => OriginGroupSelectionCriteria,
237
250
  OriginProtocolPolicy: () => OriginProtocolPolicy,
238
251
  OriginRequestPolicyAlreadyExists: () => OriginRequestPolicyAlreadyExists,
239
252
  OriginRequestPolicyCookieBehavior: () => OriginRequestPolicyCookieBehavior,
@@ -345,6 +358,7 @@ __export(src_exports, {
345
358
  UpdateRealtimeLogConfigCommand: () => UpdateRealtimeLogConfigCommand,
346
359
  UpdateResponseHeadersPolicyCommand: () => UpdateResponseHeadersPolicyCommand,
347
360
  UpdateStreamingDistributionCommand: () => UpdateStreamingDistributionCommand,
361
+ UpdateVpcOriginCommand: () => UpdateVpcOriginCommand,
348
362
  ViewerProtocolPolicy: () => ViewerProtocolPolicy,
349
363
  __Client: () => import_smithy_client.Client,
350
364
  paginateListCloudFrontOriginAccessIdentities: () => paginateListCloudFrontOriginAccessIdentities,
@@ -769,6 +783,24 @@ var _CannotDeleteEntityWhileInUse = class _CannotDeleteEntityWhileInUse extends
769
783
  };
770
784
  __name(_CannotDeleteEntityWhileInUse, "CannotDeleteEntityWhileInUse");
771
785
  var CannotDeleteEntityWhileInUse = _CannotDeleteEntityWhileInUse;
786
+ var _CannotUpdateEntityWhileInUse = class _CannotUpdateEntityWhileInUse extends CloudFrontServiceException {
787
+ /**
788
+ * @internal
789
+ */
790
+ constructor(opts) {
791
+ super({
792
+ name: "CannotUpdateEntityWhileInUse",
793
+ $fault: "client",
794
+ ...opts
795
+ });
796
+ this.name = "CannotUpdateEntityWhileInUse";
797
+ this.$fault = "client";
798
+ Object.setPrototypeOf(this, _CannotUpdateEntityWhileInUse.prototype);
799
+ this.Message = opts.Message;
800
+ }
801
+ };
802
+ __name(_CannotUpdateEntityWhileInUse, "CannotUpdateEntityWhileInUse");
803
+ var CannotUpdateEntityWhileInUse = _CannotUpdateEntityWhileInUse;
772
804
  var CertificateSource = {
773
805
  acm: "acm",
774
806
  cloudfront: "cloudfront",
@@ -798,6 +830,10 @@ var HttpVersion = {
798
830
  http2and3: "http2and3",
799
831
  http3: "http3"
800
832
  };
833
+ var OriginGroupSelectionCriteria = {
834
+ Default: "default",
835
+ MediaQualityBased: "media-quality-based"
836
+ };
801
837
  var OriginProtocolPolicy = {
802
838
  http_only: "http-only",
803
839
  https_only: "https-only",
@@ -1895,6 +1931,78 @@ var _TrustedSignerDoesNotExist = class _TrustedSignerDoesNotExist extends CloudF
1895
1931
  };
1896
1932
  __name(_TrustedSignerDoesNotExist, "TrustedSignerDoesNotExist");
1897
1933
  var TrustedSignerDoesNotExist = _TrustedSignerDoesNotExist;
1934
+ var _EntityAlreadyExists = class _EntityAlreadyExists extends CloudFrontServiceException {
1935
+ /**
1936
+ * @internal
1937
+ */
1938
+ constructor(opts) {
1939
+ super({
1940
+ name: "EntityAlreadyExists",
1941
+ $fault: "client",
1942
+ ...opts
1943
+ });
1944
+ this.name = "EntityAlreadyExists";
1945
+ this.$fault = "client";
1946
+ Object.setPrototypeOf(this, _EntityAlreadyExists.prototype);
1947
+ this.Message = opts.Message;
1948
+ }
1949
+ };
1950
+ __name(_EntityAlreadyExists, "EntityAlreadyExists");
1951
+ var EntityAlreadyExists = _EntityAlreadyExists;
1952
+ var _EntityLimitExceeded = class _EntityLimitExceeded extends CloudFrontServiceException {
1953
+ /**
1954
+ * @internal
1955
+ */
1956
+ constructor(opts) {
1957
+ super({
1958
+ name: "EntityLimitExceeded",
1959
+ $fault: "client",
1960
+ ...opts
1961
+ });
1962
+ this.name = "EntityLimitExceeded";
1963
+ this.$fault = "client";
1964
+ Object.setPrototypeOf(this, _EntityLimitExceeded.prototype);
1965
+ this.Message = opts.Message;
1966
+ }
1967
+ };
1968
+ __name(_EntityLimitExceeded, "EntityLimitExceeded");
1969
+ var EntityLimitExceeded = _EntityLimitExceeded;
1970
+ var _InvalidTagging = class _InvalidTagging extends CloudFrontServiceException {
1971
+ /**
1972
+ * @internal
1973
+ */
1974
+ constructor(opts) {
1975
+ super({
1976
+ name: "InvalidTagging",
1977
+ $fault: "client",
1978
+ ...opts
1979
+ });
1980
+ this.name = "InvalidTagging";
1981
+ this.$fault = "client";
1982
+ Object.setPrototypeOf(this, _InvalidTagging.prototype);
1983
+ this.Message = opts.Message;
1984
+ }
1985
+ };
1986
+ __name(_InvalidTagging, "InvalidTagging");
1987
+ var InvalidTagging = _InvalidTagging;
1988
+ var _UnsupportedOperation = class _UnsupportedOperation extends CloudFrontServiceException {
1989
+ /**
1990
+ * @internal
1991
+ */
1992
+ constructor(opts) {
1993
+ super({
1994
+ name: "UnsupportedOperation",
1995
+ $fault: "client",
1996
+ ...opts
1997
+ });
1998
+ this.name = "UnsupportedOperation";
1999
+ this.$fault = "client";
2000
+ Object.setPrototypeOf(this, _UnsupportedOperation.prototype);
2001
+ this.Message = opts.Message;
2002
+ }
2003
+ };
2004
+ __name(_UnsupportedOperation, "UnsupportedOperation");
2005
+ var UnsupportedOperation = _UnsupportedOperation;
1898
2006
  var _TooManyCachePolicies = class _TooManyCachePolicies extends CloudFrontServiceException {
1899
2007
  /**
1900
2008
  * @internal
@@ -2079,6 +2187,24 @@ var _ContinuousDeploymentPolicyInUse = class _ContinuousDeploymentPolicyInUse ex
2079
2187
  };
2080
2188
  __name(_ContinuousDeploymentPolicyInUse, "ContinuousDeploymentPolicyInUse");
2081
2189
  var ContinuousDeploymentPolicyInUse = _ContinuousDeploymentPolicyInUse;
2190
+ var _EntityNotFound = class _EntityNotFound extends CloudFrontServiceException {
2191
+ /**
2192
+ * @internal
2193
+ */
2194
+ constructor(opts) {
2195
+ super({
2196
+ name: "EntityNotFound",
2197
+ $fault: "client",
2198
+ ...opts
2199
+ });
2200
+ this.name = "EntityNotFound";
2201
+ this.$fault = "client";
2202
+ Object.setPrototypeOf(this, _EntityNotFound.prototype);
2203
+ this.Message = opts.Message;
2204
+ }
2205
+ };
2206
+ __name(_EntityNotFound, "EntityNotFound");
2207
+ var EntityNotFound = _EntityNotFound;
2082
2208
  var _IllegalOriginAccessConfiguration = class _IllegalOriginAccessConfiguration extends CloudFrontServiceException {
2083
2209
  /**
2084
2210
  * @internal
@@ -2133,24 +2259,6 @@ var _NoSuchContinuousDeploymentPolicy = class _NoSuchContinuousDeploymentPolicy
2133
2259
  };
2134
2260
  __name(_NoSuchContinuousDeploymentPolicy, "NoSuchContinuousDeploymentPolicy");
2135
2261
  var NoSuchContinuousDeploymentPolicy = _NoSuchContinuousDeploymentPolicy;
2136
- var _InvalidTagging = class _InvalidTagging extends CloudFrontServiceException {
2137
- /**
2138
- * @internal
2139
- */
2140
- constructor(opts) {
2141
- super({
2142
- name: "InvalidTagging",
2143
- $fault: "client",
2144
- ...opts
2145
- });
2146
- this.name = "InvalidTagging";
2147
- this.$fault = "client";
2148
- Object.setPrototypeOf(this, _InvalidTagging.prototype);
2149
- this.Message = opts.Message;
2150
- }
2151
- };
2152
- __name(_InvalidTagging, "InvalidTagging");
2153
- var InvalidTagging = _InvalidTagging;
2154
2262
  var Format = {
2155
2263
  URLEncoded: "URLEncoded"
2156
2264
  };
@@ -2432,24 +2540,6 @@ var _TooManyFunctions = class _TooManyFunctions extends CloudFrontServiceExcepti
2432
2540
  };
2433
2541
  __name(_TooManyFunctions, "TooManyFunctions");
2434
2542
  var TooManyFunctions = _TooManyFunctions;
2435
- var _UnsupportedOperation = class _UnsupportedOperation extends CloudFrontServiceException {
2436
- /**
2437
- * @internal
2438
- */
2439
- constructor(opts) {
2440
- super({
2441
- name: "UnsupportedOperation",
2442
- $fault: "client",
2443
- ...opts
2444
- });
2445
- this.name = "UnsupportedOperation";
2446
- this.$fault = "client";
2447
- Object.setPrototypeOf(this, _UnsupportedOperation.prototype);
2448
- this.Message = opts.Message;
2449
- }
2450
- };
2451
- __name(_UnsupportedOperation, "UnsupportedOperation");
2452
- var UnsupportedOperation = _UnsupportedOperation;
2453
2543
  var _TooManyInvalidationsInProgress = class _TooManyInvalidationsInProgress extends CloudFrontServiceException {
2454
2544
  /**
2455
2545
  * @internal
@@ -2525,42 +2615,6 @@ var TooManyPublicKeysInKeyGroup = _TooManyPublicKeysInKeyGroup;
2525
2615
  var ImportSourceType = {
2526
2616
  S3: "S3"
2527
2617
  };
2528
- var _EntityAlreadyExists = class _EntityAlreadyExists extends CloudFrontServiceException {
2529
- /**
2530
- * @internal
2531
- */
2532
- constructor(opts) {
2533
- super({
2534
- name: "EntityAlreadyExists",
2535
- $fault: "client",
2536
- ...opts
2537
- });
2538
- this.name = "EntityAlreadyExists";
2539
- this.$fault = "client";
2540
- Object.setPrototypeOf(this, _EntityAlreadyExists.prototype);
2541
- this.Message = opts.Message;
2542
- }
2543
- };
2544
- __name(_EntityAlreadyExists, "EntityAlreadyExists");
2545
- var EntityAlreadyExists = _EntityAlreadyExists;
2546
- var _EntityLimitExceeded = class _EntityLimitExceeded extends CloudFrontServiceException {
2547
- /**
2548
- * @internal
2549
- */
2550
- constructor(opts) {
2551
- super({
2552
- name: "EntityLimitExceeded",
2553
- $fault: "client",
2554
- ...opts
2555
- });
2556
- this.name = "EntityLimitExceeded";
2557
- this.$fault = "client";
2558
- Object.setPrototypeOf(this, _EntityLimitExceeded.prototype);
2559
- this.Message = opts.Message;
2560
- }
2561
- };
2562
- __name(_EntityLimitExceeded, "EntityLimitExceeded");
2563
- var EntityLimitExceeded = _EntityLimitExceeded;
2564
2618
  var _EntitySizeLimitExceeded = class _EntitySizeLimitExceeded extends CloudFrontServiceException {
2565
2619
  /**
2566
2620
  * @internal
@@ -3226,24 +3280,6 @@ var _ResourceInUse = class _ResourceInUse extends CloudFrontServiceException {
3226
3280
  };
3227
3281
  __name(_ResourceInUse, "ResourceInUse");
3228
3282
  var ResourceInUse = _ResourceInUse;
3229
- var _EntityNotFound = class _EntityNotFound extends CloudFrontServiceException {
3230
- /**
3231
- * @internal
3232
- */
3233
- constructor(opts) {
3234
- super({
3235
- name: "EntityNotFound",
3236
- $fault: "client",
3237
- ...opts
3238
- });
3239
- this.name = "EntityNotFound";
3240
- this.$fault = "client";
3241
- Object.setPrototypeOf(this, _EntityNotFound.prototype);
3242
- this.Message = opts.Message;
3243
- }
3244
- };
3245
- __name(_EntityNotFound, "EntityNotFound");
3246
- var EntityNotFound = _EntityNotFound;
3247
3283
  var _NoSuchMonitoringSubscription = class _NoSuchMonitoringSubscription extends CloudFrontServiceException {
3248
3284
  /**
3249
3285
  * @internal
@@ -3471,6 +3507,9 @@ var DistributionListFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
3471
3507
  var ListDistributionsResultFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
3472
3508
  ...obj
3473
3509
  }), "ListDistributionsResultFilterSensitiveLog");
3510
+ var ListDistributionsByAnycastIpListIdResultFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
3511
+ ...obj
3512
+ }), "ListDistributionsByAnycastIpListIdResultFilterSensitiveLog");
3474
3513
  var ListDistributionsByRealtimeLogConfigResultFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
3475
3514
  ...obj
3476
3515
  }), "ListDistributionsByRealtimeLogConfigResultFilterSensitiveLog");
@@ -3544,6 +3583,29 @@ var se_CopyDistributionCommand = /* @__PURE__ */ __name(async (input, context) =
3544
3583
  b.m("POST").h(headers).b(body);
3545
3584
  return b.build();
3546
3585
  }, "se_CopyDistributionCommand");
3586
+ var se_CreateAnycastIpListCommand = /* @__PURE__ */ __name(async (input, context) => {
3587
+ const b = (0, import_core.requestBuilder)(input, context);
3588
+ const headers = {
3589
+ "content-type": "application/xml"
3590
+ };
3591
+ b.bp("/2020-05-31/anycast-ip-list");
3592
+ let body;
3593
+ body = _ve;
3594
+ const bn = new import_xml_builder.XmlNode(_CAILR);
3595
+ bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
3596
+ if (input[_IC] != null) {
3597
+ bn.c(import_xml_builder.XmlNode.of(_i, String(input[_IC])).n(_IC));
3598
+ }
3599
+ if (input[_N] != null) {
3600
+ bn.c(import_xml_builder.XmlNode.of(_AILN, input[_N]).n(_N));
3601
+ }
3602
+ if (input[_T] != null) {
3603
+ bn.c(se_Tags(input[_T], context).n(_T));
3604
+ }
3605
+ body += bn.toString();
3606
+ b.m("POST").h(headers).b(body);
3607
+ return b.build();
3608
+ }, "se_CreateAnycastIpListCommand");
3547
3609
  var se_CreateCachePolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
3548
3610
  const b = (0, import_core.requestBuilder)(input, context);
3549
3611
  const headers = {
@@ -3892,6 +3954,37 @@ var se_CreateStreamingDistributionWithTagsCommand = /* @__PURE__ */ __name(async
3892
3954
  b.m("POST").h(headers).q(query).b(body);
3893
3955
  return b.build();
3894
3956
  }, "se_CreateStreamingDistributionWithTagsCommand");
3957
+ var se_CreateVpcOriginCommand = /* @__PURE__ */ __name(async (input, context) => {
3958
+ const b = (0, import_core.requestBuilder)(input, context);
3959
+ const headers = {
3960
+ "content-type": "application/xml"
3961
+ };
3962
+ b.bp("/2020-05-31/vpc-origin");
3963
+ let body;
3964
+ body = _ve;
3965
+ const bn = new import_xml_builder.XmlNode(_CVOR);
3966
+ bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
3967
+ if (input[_T] != null) {
3968
+ bn.c(se_Tags(input[_T], context).n(_T));
3969
+ }
3970
+ if (input[_VOEC] != null) {
3971
+ bn.c(se_VpcOriginEndpointConfig(input[_VOEC], context).n(_VOEC));
3972
+ }
3973
+ body += bn.toString();
3974
+ b.m("POST").h(headers).b(body);
3975
+ return b.build();
3976
+ }, "se_CreateVpcOriginCommand");
3977
+ var se_DeleteAnycastIpListCommand = /* @__PURE__ */ __name(async (input, context) => {
3978
+ const b = (0, import_core.requestBuilder)(input, context);
3979
+ const headers = (0, import_smithy_client.map)({}, import_smithy_client.isSerializableHeaderValue, {
3980
+ [_im]: input[_IM]
3981
+ });
3982
+ b.bp("/2020-05-31/anycast-ip-list/{Id}");
3983
+ b.p("Id", () => input.Id, "{Id}", false);
3984
+ let body;
3985
+ b.m("DELETE").h(headers).b(body);
3986
+ return b.build();
3987
+ }, "se_DeleteAnycastIpListCommand");
3895
3988
  var se_DeleteCachePolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
3896
3989
  const b = (0, import_core.requestBuilder)(input, context);
3897
3990
  const headers = (0, import_smithy_client.map)({}, import_smithy_client.isSerializableHeaderValue, {
@@ -4075,6 +4168,17 @@ var se_DeleteStreamingDistributionCommand = /* @__PURE__ */ __name(async (input,
4075
4168
  b.m("DELETE").h(headers).b(body);
4076
4169
  return b.build();
4077
4170
  }, "se_DeleteStreamingDistributionCommand");
4171
+ var se_DeleteVpcOriginCommand = /* @__PURE__ */ __name(async (input, context) => {
4172
+ const b = (0, import_core.requestBuilder)(input, context);
4173
+ const headers = (0, import_smithy_client.map)({}, import_smithy_client.isSerializableHeaderValue, {
4174
+ [_im]: input[_IM]
4175
+ });
4176
+ b.bp("/2020-05-31/vpc-origin/{Id}");
4177
+ b.p("Id", () => input.Id, "{Id}", false);
4178
+ let body;
4179
+ b.m("DELETE").h(headers).b(body);
4180
+ return b.build();
4181
+ }, "se_DeleteVpcOriginCommand");
4078
4182
  var se_DescribeFunctionCommand = /* @__PURE__ */ __name(async (input, context) => {
4079
4183
  const b = (0, import_core.requestBuilder)(input, context);
4080
4184
  const headers = {};
@@ -4096,6 +4200,15 @@ var se_DescribeKeyValueStoreCommand = /* @__PURE__ */ __name(async (input, conte
4096
4200
  b.m("GET").h(headers).b(body);
4097
4201
  return b.build();
4098
4202
  }, "se_DescribeKeyValueStoreCommand");
4203
+ var se_GetAnycastIpListCommand = /* @__PURE__ */ __name(async (input, context) => {
4204
+ const b = (0, import_core.requestBuilder)(input, context);
4205
+ const headers = {};
4206
+ b.bp("/2020-05-31/anycast-ip-list/{Id}");
4207
+ b.p("Id", () => input.Id, "{Id}", false);
4208
+ let body;
4209
+ b.m("GET").h(headers).b(body);
4210
+ return b.build();
4211
+ }, "se_GetAnycastIpListCommand");
4099
4212
  var se_GetCachePolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
4100
4213
  const b = (0, import_core.requestBuilder)(input, context);
4101
4214
  const headers = {};
@@ -4363,12 +4476,33 @@ var se_GetStreamingDistributionConfigCommand = /* @__PURE__ */ __name(async (inp
4363
4476
  b.m("GET").h(headers).b(body);
4364
4477
  return b.build();
4365
4478
  }, "se_GetStreamingDistributionConfigCommand");
4479
+ var se_GetVpcOriginCommand = /* @__PURE__ */ __name(async (input, context) => {
4480
+ const b = (0, import_core.requestBuilder)(input, context);
4481
+ const headers = {};
4482
+ b.bp("/2020-05-31/vpc-origin/{Id}");
4483
+ b.p("Id", () => input.Id, "{Id}", false);
4484
+ let body;
4485
+ b.m("GET").h(headers).b(body);
4486
+ return b.build();
4487
+ }, "se_GetVpcOriginCommand");
4488
+ var se_ListAnycastIpListsCommand = /* @__PURE__ */ __name(async (input, context) => {
4489
+ const b = (0, import_core.requestBuilder)(input, context);
4490
+ const headers = {};
4491
+ b.bp("/2020-05-31/anycast-ip-list");
4492
+ const query = (0, import_smithy_client.map)({
4493
+ [_M]: [, input[_M]],
4494
+ [_MI]: [() => input.MaxItems !== void 0, () => input[_MI].toString()]
4495
+ });
4496
+ let body;
4497
+ b.m("GET").h(headers).q(query).b(body);
4498
+ return b.build();
4499
+ }, "se_ListAnycastIpListsCommand");
4366
4500
  var se_ListCachePoliciesCommand = /* @__PURE__ */ __name(async (input, context) => {
4367
4501
  const b = (0, import_core.requestBuilder)(input, context);
4368
4502
  const headers = {};
4369
4503
  b.bp("/2020-05-31/cache-policy");
4370
4504
  const query = (0, import_smithy_client.map)({
4371
- [_T]: [, input[_T]],
4505
+ [_Ty]: [, input[_Ty]],
4372
4506
  [_M]: [, input[_M]],
4373
4507
  [_MI]: [() => input.MaxItems !== void 0, () => input[_MI].toString()]
4374
4508
  });
@@ -4426,6 +4560,19 @@ var se_ListDistributionsCommand = /* @__PURE__ */ __name(async (input, context)
4426
4560
  b.m("GET").h(headers).q(query).b(body);
4427
4561
  return b.build();
4428
4562
  }, "se_ListDistributionsCommand");
4563
+ var se_ListDistributionsByAnycastIpListIdCommand = /* @__PURE__ */ __name(async (input, context) => {
4564
+ const b = (0, import_core.requestBuilder)(input, context);
4565
+ const headers = {};
4566
+ b.bp("/2020-05-31/distributionsByAnycastIpListId/{AnycastIpListId}");
4567
+ b.p("AnycastIpListId", () => input.AnycastIpListId, "{AnycastIpListId}", false);
4568
+ const query = (0, import_smithy_client.map)({
4569
+ [_M]: [, input[_M]],
4570
+ [_MI]: [() => input.MaxItems !== void 0, () => input[_MI].toString()]
4571
+ });
4572
+ let body;
4573
+ b.m("GET").h(headers).q(query).b(body);
4574
+ return b.build();
4575
+ }, "se_ListDistributionsByAnycastIpListIdCommand");
4429
4576
  var se_ListDistributionsByCachePolicyIdCommand = /* @__PURE__ */ __name(async (input, context) => {
4430
4577
  const b = (0, import_core.requestBuilder)(input, context);
4431
4578
  const headers = {};
@@ -4504,6 +4651,19 @@ var se_ListDistributionsByResponseHeadersPolicyIdCommand = /* @__PURE__ */ __nam
4504
4651
  b.m("GET").h(headers).q(query).b(body);
4505
4652
  return b.build();
4506
4653
  }, "se_ListDistributionsByResponseHeadersPolicyIdCommand");
4654
+ var se_ListDistributionsByVpcOriginIdCommand = /* @__PURE__ */ __name(async (input, context) => {
4655
+ const b = (0, import_core.requestBuilder)(input, context);
4656
+ const headers = {};
4657
+ b.bp("/2020-05-31/distributionsByVpcOriginId/{VpcOriginId}");
4658
+ b.p("VpcOriginId", () => input.VpcOriginId, "{VpcOriginId}", false);
4659
+ const query = (0, import_smithy_client.map)({
4660
+ [_M]: [, input[_M]],
4661
+ [_MI]: [() => input.MaxItems !== void 0, () => input[_MI].toString()]
4662
+ });
4663
+ let body;
4664
+ b.m("GET").h(headers).q(query).b(body);
4665
+ return b.build();
4666
+ }, "se_ListDistributionsByVpcOriginIdCommand");
4507
4667
  var se_ListDistributionsByWebACLIdCommand = /* @__PURE__ */ __name(async (input, context) => {
4508
4668
  const b = (0, import_core.requestBuilder)(input, context);
4509
4669
  const headers = {};
@@ -4609,7 +4769,7 @@ var se_ListOriginRequestPoliciesCommand = /* @__PURE__ */ __name(async (input, c
4609
4769
  const headers = {};
4610
4770
  b.bp("/2020-05-31/origin-request-policy");
4611
4771
  const query = (0, import_smithy_client.map)({
4612
- [_T]: [, input[_T]],
4772
+ [_Ty]: [, input[_Ty]],
4613
4773
  [_M]: [, input[_M]],
4614
4774
  [_MI]: [() => input.MaxItems !== void 0, () => input[_MI].toString()]
4615
4775
  });
@@ -4646,7 +4806,7 @@ var se_ListResponseHeadersPoliciesCommand = /* @__PURE__ */ __name(async (input,
4646
4806
  const headers = {};
4647
4807
  b.bp("/2020-05-31/response-headers-policy");
4648
4808
  const query = (0, import_smithy_client.map)({
4649
- [_T]: [, input[_T]],
4809
+ [_Ty]: [, input[_Ty]],
4650
4810
  [_M]: [, input[_M]],
4651
4811
  [_MI]: [() => input.MaxItems !== void 0, () => input[_MI].toString()]
4652
4812
  });
@@ -4677,6 +4837,18 @@ var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context
4677
4837
  b.m("GET").h(headers).q(query).b(body);
4678
4838
  return b.build();
4679
4839
  }, "se_ListTagsForResourceCommand");
4840
+ var se_ListVpcOriginsCommand = /* @__PURE__ */ __name(async (input, context) => {
4841
+ const b = (0, import_core.requestBuilder)(input, context);
4842
+ const headers = {};
4843
+ b.bp("/2020-05-31/vpc-origin");
4844
+ const query = (0, import_smithy_client.map)({
4845
+ [_M]: [, input[_M]],
4846
+ [_MI]: [() => input.MaxItems !== void 0, () => input[_MI].toString()]
4847
+ });
4848
+ let body;
4849
+ b.m("GET").h(headers).q(query).b(body);
4850
+ return b.build();
4851
+ }, "se_ListVpcOriginsCommand");
4680
4852
  var se_PublishFunctionCommand = /* @__PURE__ */ __name(async (input, context) => {
4681
4853
  const b = (0, import_core.requestBuilder)(input, context);
4682
4854
  const headers = (0, import_smithy_client.map)({}, import_smithy_client.isSerializableHeaderValue, {
@@ -5040,26 +5212,45 @@ var se_UpdateResponseHeadersPolicyCommand = /* @__PURE__ */ __name(async (input,
5040
5212
  }
5041
5213
  b.m("PUT").h(headers).b(body);
5042
5214
  return b.build();
5043
- }, "se_UpdateResponseHeadersPolicyCommand");
5044
- var se_UpdateStreamingDistributionCommand = /* @__PURE__ */ __name(async (input, context) => {
5215
+ }, "se_UpdateResponseHeadersPolicyCommand");
5216
+ var se_UpdateStreamingDistributionCommand = /* @__PURE__ */ __name(async (input, context) => {
5217
+ const b = (0, import_core.requestBuilder)(input, context);
5218
+ const headers = (0, import_smithy_client.map)({}, import_smithy_client.isSerializableHeaderValue, {
5219
+ "content-type": "application/xml",
5220
+ [_im]: input[_IM]
5221
+ });
5222
+ b.bp("/2020-05-31/streaming-distribution/{Id}/config");
5223
+ b.p("Id", () => input.Id, "{Id}", false);
5224
+ let body;
5225
+ let contents;
5226
+ if (input.StreamingDistributionConfig !== void 0) {
5227
+ contents = se_StreamingDistributionConfig(input.StreamingDistributionConfig, context);
5228
+ body = _ve;
5229
+ contents.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
5230
+ body += contents.toString();
5231
+ }
5232
+ b.m("PUT").h(headers).b(body);
5233
+ return b.build();
5234
+ }, "se_UpdateStreamingDistributionCommand");
5235
+ var se_UpdateVpcOriginCommand = /* @__PURE__ */ __name(async (input, context) => {
5045
5236
  const b = (0, import_core.requestBuilder)(input, context);
5046
5237
  const headers = (0, import_smithy_client.map)({}, import_smithy_client.isSerializableHeaderValue, {
5047
5238
  "content-type": "application/xml",
5048
5239
  [_im]: input[_IM]
5049
5240
  });
5050
- b.bp("/2020-05-31/streaming-distribution/{Id}/config");
5241
+ b.bp("/2020-05-31/vpc-origin/{Id}");
5051
5242
  b.p("Id", () => input.Id, "{Id}", false);
5052
5243
  let body;
5053
5244
  let contents;
5054
- if (input.StreamingDistributionConfig !== void 0) {
5055
- contents = se_StreamingDistributionConfig(input.StreamingDistributionConfig, context);
5245
+ if (input.VpcOriginEndpointConfig !== void 0) {
5246
+ contents = se_VpcOriginEndpointConfig(input.VpcOriginEndpointConfig, context);
5056
5247
  body = _ve;
5057
5248
  contents.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
5058
5249
  body += contents.toString();
5059
5250
  }
5060
5251
  b.m("PUT").h(headers).b(body);
5061
5252
  return b.build();
5062
- }, "se_UpdateStreamingDistributionCommand");
5253
+ }, "se_UpdateVpcOriginCommand");
5063
5254
  var de_AssociateAliasCommand = /* @__PURE__ */ __name(async (output, context) => {
5064
5255
  if (output.statusCode !== 200 && output.statusCode >= 300) {
5065
5256
  return de_CommandError(output, context);
@@ -5083,6 +5274,18 @@ var de_CopyDistributionCommand = /* @__PURE__ */ __name(async (output, context)
5083
5274
  contents.Distribution = de_Distribution(data, context);
5084
5275
  return contents;
5085
5276
  }, "de_CopyDistributionCommand");
5277
+ var de_CreateAnycastIpListCommand = /* @__PURE__ */ __name(async (output, context) => {
5278
+ if (output.statusCode !== 202 && output.statusCode >= 300) {
5279
+ return de_CommandError(output, context);
5280
+ }
5281
+ const contents = (0, import_smithy_client.map)({
5282
+ $metadata: deserializeMetadata(output),
5283
+ [_ET]: [, output.headers[_e]]
5284
+ });
5285
+ const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
5286
+ contents.AnycastIpList = de_AnycastIpList(data, context);
5287
+ return contents;
5288
+ }, "de_CreateAnycastIpListCommand");
5086
5289
  var de_CreateCachePolicyCommand = /* @__PURE__ */ __name(async (output, context) => {
5087
5290
  if (output.statusCode !== 201 && output.statusCode >= 300) {
5088
5291
  return de_CommandError(output, context);
@@ -5327,6 +5530,29 @@ var de_CreateStreamingDistributionWithTagsCommand = /* @__PURE__ */ __name(async
5327
5530
  contents.StreamingDistribution = de_StreamingDistribution(data, context);
5328
5531
  return contents;
5329
5532
  }, "de_CreateStreamingDistributionWithTagsCommand");
5533
+ var de_CreateVpcOriginCommand = /* @__PURE__ */ __name(async (output, context) => {
5534
+ if (output.statusCode !== 202 && output.statusCode >= 300) {
5535
+ return de_CommandError(output, context);
5536
+ }
5537
+ const contents = (0, import_smithy_client.map)({
5538
+ $metadata: deserializeMetadata(output),
5539
+ [_L]: [, output.headers[_lo]],
5540
+ [_ET]: [, output.headers[_e]]
5541
+ });
5542
+ const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
5543
+ contents.VpcOrigin = de_VpcOrigin(data, context);
5544
+ return contents;
5545
+ }, "de_CreateVpcOriginCommand");
5546
+ var de_DeleteAnycastIpListCommand = /* @__PURE__ */ __name(async (output, context) => {
5547
+ if (output.statusCode !== 204 && output.statusCode >= 300) {
5548
+ return de_CommandError(output, context);
5549
+ }
5550
+ const contents = (0, import_smithy_client.map)({
5551
+ $metadata: deserializeMetadata(output)
5552
+ });
5553
+ await (0, import_smithy_client.collectBody)(output.body, context);
5554
+ return contents;
5555
+ }, "de_DeleteAnycastIpListCommand");
5330
5556
  var de_DeleteCachePolicyCommand = /* @__PURE__ */ __name(async (output, context) => {
5331
5557
  if (output.statusCode !== 204 && output.statusCode >= 300) {
5332
5558
  return de_CommandError(output, context);
@@ -5487,6 +5713,18 @@ var de_DeleteStreamingDistributionCommand = /* @__PURE__ */ __name(async (output
5487
5713
  await (0, import_smithy_client.collectBody)(output.body, context);
5488
5714
  return contents;
5489
5715
  }, "de_DeleteStreamingDistributionCommand");
5716
+ var de_DeleteVpcOriginCommand = /* @__PURE__ */ __name(async (output, context) => {
5717
+ if (output.statusCode !== 202 && output.statusCode >= 300) {
5718
+ return de_CommandError(output, context);
5719
+ }
5720
+ const contents = (0, import_smithy_client.map)({
5721
+ $metadata: deserializeMetadata(output),
5722
+ [_ET]: [, output.headers[_e]]
5723
+ });
5724
+ const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
5725
+ contents.VpcOrigin = de_VpcOrigin(data, context);
5726
+ return contents;
5727
+ }, "de_DeleteVpcOriginCommand");
5490
5728
  var de_DescribeFunctionCommand = /* @__PURE__ */ __name(async (output, context) => {
5491
5729
  if (output.statusCode !== 200 && output.statusCode >= 300) {
5492
5730
  return de_CommandError(output, context);
@@ -5511,6 +5749,18 @@ var de_DescribeKeyValueStoreCommand = /* @__PURE__ */ __name(async (output, cont
5511
5749
  contents.KeyValueStore = de_KeyValueStore(data, context);
5512
5750
  return contents;
5513
5751
  }, "de_DescribeKeyValueStoreCommand");
5752
+ var de_GetAnycastIpListCommand = /* @__PURE__ */ __name(async (output, context) => {
5753
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
5754
+ return de_CommandError(output, context);
5755
+ }
5756
+ const contents = (0, import_smithy_client.map)({
5757
+ $metadata: deserializeMetadata(output),
5758
+ [_ET]: [, output.headers[_e]]
5759
+ });
5760
+ const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
5761
+ contents.AnycastIpList = de_AnycastIpList(data, context);
5762
+ return contents;
5763
+ }, "de_GetAnycastIpListCommand");
5514
5764
  var de_GetCachePolicyCommand = /* @__PURE__ */ __name(async (output, context) => {
5515
5765
  if (output.statusCode !== 200 && output.statusCode >= 300) {
5516
5766
  return de_CommandError(output, context);
@@ -5847,6 +6097,29 @@ var de_GetStreamingDistributionConfigCommand = /* @__PURE__ */ __name(async (out
5847
6097
  contents.StreamingDistributionConfig = de_StreamingDistributionConfig(data, context);
5848
6098
  return contents;
5849
6099
  }, "de_GetStreamingDistributionConfigCommand");
6100
+ var de_GetVpcOriginCommand = /* @__PURE__ */ __name(async (output, context) => {
6101
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
6102
+ return de_CommandError(output, context);
6103
+ }
6104
+ const contents = (0, import_smithy_client.map)({
6105
+ $metadata: deserializeMetadata(output),
6106
+ [_ET]: [, output.headers[_e]]
6107
+ });
6108
+ const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
6109
+ contents.VpcOrigin = de_VpcOrigin(data, context);
6110
+ return contents;
6111
+ }, "de_GetVpcOriginCommand");
6112
+ var de_ListAnycastIpListsCommand = /* @__PURE__ */ __name(async (output, context) => {
6113
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
6114
+ return de_CommandError(output, context);
6115
+ }
6116
+ const contents = (0, import_smithy_client.map)({
6117
+ $metadata: deserializeMetadata(output)
6118
+ });
6119
+ const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
6120
+ contents.AnycastIpLists = de_AnycastIpListCollection(data, context);
6121
+ return contents;
6122
+ }, "de_ListAnycastIpListsCommand");
5850
6123
  var de_ListCachePoliciesCommand = /* @__PURE__ */ __name(async (output, context) => {
5851
6124
  if (output.statusCode !== 200 && output.statusCode >= 300) {
5852
6125
  return de_CommandError(output, context);
@@ -5902,6 +6175,17 @@ var de_ListDistributionsCommand = /* @__PURE__ */ __name(async (output, context)
5902
6175
  contents.DistributionList = de_DistributionList(data, context);
5903
6176
  return contents;
5904
6177
  }, "de_ListDistributionsCommand");
6178
+ var de_ListDistributionsByAnycastIpListIdCommand = /* @__PURE__ */ __name(async (output, context) => {
6179
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
6180
+ return de_CommandError(output, context);
6181
+ }
6182
+ const contents = (0, import_smithy_client.map)({
6183
+ $metadata: deserializeMetadata(output)
6184
+ });
6185
+ const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
6186
+ contents.DistributionList = de_DistributionList(data, context);
6187
+ return contents;
6188
+ }, "de_ListDistributionsByAnycastIpListIdCommand");
5905
6189
  var de_ListDistributionsByCachePolicyIdCommand = /* @__PURE__ */ __name(async (output, context) => {
5906
6190
  if (output.statusCode !== 200 && output.statusCode >= 300) {
5907
6191
  return de_CommandError(output, context);
@@ -5957,6 +6241,17 @@ var de_ListDistributionsByResponseHeadersPolicyIdCommand = /* @__PURE__ */ __nam
5957
6241
  contents.DistributionIdList = de_DistributionIdList(data, context);
5958
6242
  return contents;
5959
6243
  }, "de_ListDistributionsByResponseHeadersPolicyIdCommand");
6244
+ var de_ListDistributionsByVpcOriginIdCommand = /* @__PURE__ */ __name(async (output, context) => {
6245
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
6246
+ return de_CommandError(output, context);
6247
+ }
6248
+ const contents = (0, import_smithy_client.map)({
6249
+ $metadata: deserializeMetadata(output)
6250
+ });
6251
+ const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
6252
+ contents.DistributionIdList = de_DistributionIdList(data, context);
6253
+ return contents;
6254
+ }, "de_ListDistributionsByVpcOriginIdCommand");
5960
6255
  var de_ListDistributionsByWebACLIdCommand = /* @__PURE__ */ __name(async (output, context) => {
5961
6256
  if (output.statusCode !== 200 && output.statusCode >= 300) {
5962
6257
  return de_CommandError(output, context);
@@ -6111,6 +6406,17 @@ var de_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (output, contex
6111
6406
  contents.Tags = de_Tags(data, context);
6112
6407
  return contents;
6113
6408
  }, "de_ListTagsForResourceCommand");
6409
+ var de_ListVpcOriginsCommand = /* @__PURE__ */ __name(async (output, context) => {
6410
+ if (output.statusCode !== 200 && output.statusCode >= 300) {
6411
+ return de_CommandError(output, context);
6412
+ }
6413
+ const contents = (0, import_smithy_client.map)({
6414
+ $metadata: deserializeMetadata(output)
6415
+ });
6416
+ const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
6417
+ contents.VpcOriginList = de_VpcOriginList(data, context);
6418
+ return contents;
6419
+ }, "de_ListVpcOriginsCommand");
6114
6420
  var de_PublishFunctionCommand = /* @__PURE__ */ __name(async (output, context) => {
6115
6421
  if (output.statusCode !== 200 && output.statusCode >= 300) {
6116
6422
  return de_CommandError(output, context);
@@ -6346,6 +6652,18 @@ var de_UpdateStreamingDistributionCommand = /* @__PURE__ */ __name(async (output
6346
6652
  contents.StreamingDistribution = de_StreamingDistribution(data, context);
6347
6653
  return contents;
6348
6654
  }, "de_UpdateStreamingDistributionCommand");
6655
+ var de_UpdateVpcOriginCommand = /* @__PURE__ */ __name(async (output, context) => {
6656
+ if (output.statusCode !== 202 && output.statusCode >= 300) {
6657
+ return de_CommandError(output, context);
6658
+ }
6659
+ const contents = (0, import_smithy_client.map)({
6660
+ $metadata: deserializeMetadata(output),
6661
+ [_ET]: [, output.headers[_e]]
6662
+ });
6663
+ const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
6664
+ contents.VpcOrigin = de_VpcOrigin(data, context);
6665
+ return contents;
6666
+ }, "de_UpdateVpcOriginCommand");
6349
6667
  var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
6350
6668
  const parsedOutput = {
6351
6669
  ...output,
@@ -6548,6 +6866,18 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
6548
6866
  case "TrustedSignerDoesNotExist":
6549
6867
  case "com.amazonaws.cloudfront#TrustedSignerDoesNotExist":
6550
6868
  throw await de_TrustedSignerDoesNotExistRes(parsedOutput, context);
6869
+ case "EntityAlreadyExists":
6870
+ case "com.amazonaws.cloudfront#EntityAlreadyExists":
6871
+ throw await de_EntityAlreadyExistsRes(parsedOutput, context);
6872
+ case "EntityLimitExceeded":
6873
+ case "com.amazonaws.cloudfront#EntityLimitExceeded":
6874
+ throw await de_EntityLimitExceededRes(parsedOutput, context);
6875
+ case "InvalidTagging":
6876
+ case "com.amazonaws.cloudfront#InvalidTagging":
6877
+ throw await de_InvalidTaggingRes(parsedOutput, context);
6878
+ case "UnsupportedOperation":
6879
+ case "com.amazonaws.cloudfront#UnsupportedOperation":
6880
+ throw await de_UnsupportedOperationRes(parsedOutput, context);
6551
6881
  case "CachePolicyAlreadyExists":
6552
6882
  case "com.amazonaws.cloudfront#CachePolicyAlreadyExists":
6553
6883
  throw await de_CachePolicyAlreadyExistsRes(parsedOutput, context);
@@ -6581,6 +6911,9 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
6581
6911
  case "ContinuousDeploymentPolicyInUse":
6582
6912
  case "com.amazonaws.cloudfront#ContinuousDeploymentPolicyInUse":
6583
6913
  throw await de_ContinuousDeploymentPolicyInUseRes(parsedOutput, context);
6914
+ case "EntityNotFound":
6915
+ case "com.amazonaws.cloudfront#EntityNotFound":
6916
+ throw await de_EntityNotFoundRes(parsedOutput, context);
6584
6917
  case "IllegalOriginAccessConfiguration":
6585
6918
  case "com.amazonaws.cloudfront#IllegalOriginAccessConfiguration":
6586
6919
  throw await de_IllegalOriginAccessConfigurationRes(parsedOutput, context);
@@ -6590,9 +6923,6 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
6590
6923
  case "NoSuchContinuousDeploymentPolicy":
6591
6924
  case "com.amazonaws.cloudfront#NoSuchContinuousDeploymentPolicy":
6592
6925
  throw await de_NoSuchContinuousDeploymentPolicyRes(parsedOutput, context);
6593
- case "InvalidTagging":
6594
- case "com.amazonaws.cloudfront#InvalidTagging":
6595
- throw await de_InvalidTaggingRes(parsedOutput, context);
6596
6926
  case "FieldLevelEncryptionConfigAlreadyExists":
6597
6927
  case "com.amazonaws.cloudfront#FieldLevelEncryptionConfigAlreadyExists":
6598
6928
  throw await de_FieldLevelEncryptionConfigAlreadyExistsRes(parsedOutput, context);
@@ -6638,9 +6968,6 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
6638
6968
  case "TooManyFunctions":
6639
6969
  case "com.amazonaws.cloudfront#TooManyFunctions":
6640
6970
  throw await de_TooManyFunctionsRes(parsedOutput, context);
6641
- case "UnsupportedOperation":
6642
- case "com.amazonaws.cloudfront#UnsupportedOperation":
6643
- throw await de_UnsupportedOperationRes(parsedOutput, context);
6644
6971
  case "BatchTooLarge":
6645
6972
  case "com.amazonaws.cloudfront#BatchTooLarge":
6646
6973
  throw await de_BatchTooLargeRes(parsedOutput, context);
@@ -6656,12 +6983,6 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
6656
6983
  case "TooManyPublicKeysInKeyGroup":
6657
6984
  case "com.amazonaws.cloudfront#TooManyPublicKeysInKeyGroup":
6658
6985
  throw await de_TooManyPublicKeysInKeyGroupRes(parsedOutput, context);
6659
- case "EntityAlreadyExists":
6660
- case "com.amazonaws.cloudfront#EntityAlreadyExists":
6661
- throw await de_EntityAlreadyExistsRes(parsedOutput, context);
6662
- case "EntityLimitExceeded":
6663
- case "com.amazonaws.cloudfront#EntityLimitExceeded":
6664
- throw await de_EntityLimitExceededRes(parsedOutput, context);
6665
6986
  case "EntitySizeLimitExceeded":
6666
6987
  case "com.amazonaws.cloudfront#EntitySizeLimitExceeded":
6667
6988
  throw await de_EntitySizeLimitExceededRes(parsedOutput, context);
@@ -6725,12 +7046,15 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
6725
7046
  case "TooManyStreamingDistributions":
6726
7047
  case "com.amazonaws.cloudfront#TooManyStreamingDistributions":
6727
7048
  throw await de_TooManyStreamingDistributionsRes(parsedOutput, context);
6728
- case "CachePolicyInUse":
6729
- case "com.amazonaws.cloudfront#CachePolicyInUse":
6730
- throw await de_CachePolicyInUseRes(parsedOutput, context);
7049
+ case "CannotDeleteEntityWhileInUse":
7050
+ case "com.amazonaws.cloudfront#CannotDeleteEntityWhileInUse":
7051
+ throw await de_CannotDeleteEntityWhileInUseRes(parsedOutput, context);
6731
7052
  case "IllegalDelete":
6732
7053
  case "com.amazonaws.cloudfront#IllegalDelete":
6733
7054
  throw await de_IllegalDeleteRes(parsedOutput, context);
7055
+ case "CachePolicyInUse":
7056
+ case "com.amazonaws.cloudfront#CachePolicyInUse":
7057
+ throw await de_CachePolicyInUseRes(parsedOutput, context);
6734
7058
  case "CloudFrontOriginAccessIdentityInUse":
6735
7059
  case "com.amazonaws.cloudfront#CloudFrontOriginAccessIdentityInUse":
6736
7060
  throw await de_CloudFrontOriginAccessIdentityInUseRes(parsedOutput, context);
@@ -6758,12 +7082,6 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
6758
7082
  case "ResourceInUse":
6759
7083
  case "com.amazonaws.cloudfront#ResourceInUse":
6760
7084
  throw await de_ResourceInUseRes(parsedOutput, context);
6761
- case "CannotDeleteEntityWhileInUse":
6762
- case "com.amazonaws.cloudfront#CannotDeleteEntityWhileInUse":
6763
- throw await de_CannotDeleteEntityWhileInUseRes(parsedOutput, context);
6764
- case "EntityNotFound":
6765
- case "com.amazonaws.cloudfront#EntityNotFound":
6766
- throw await de_EntityNotFoundRes(parsedOutput, context);
6767
7085
  case "NoSuchMonitoringSubscription":
6768
7086
  case "com.amazonaws.cloudfront#NoSuchMonitoringSubscription":
6769
7087
  throw await de_NoSuchMonitoringSubscriptionRes(parsedOutput, context);
@@ -6800,6 +7118,9 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
6800
7118
  case "CannotChangeImmutablePublicKeyFields":
6801
7119
  case "com.amazonaws.cloudfront#CannotChangeImmutablePublicKeyFields":
6802
7120
  throw await de_CannotChangeImmutablePublicKeyFieldsRes(parsedOutput, context);
7121
+ case "CannotUpdateEntityWhileInUse":
7122
+ case "com.amazonaws.cloudfront#CannotUpdateEntityWhileInUse":
7123
+ throw await de_CannotUpdateEntityWhileInUseRes(parsedOutput, context);
6803
7124
  default:
6804
7125
  const parsedBody = parsedOutput.body;
6805
7126
  return throwDefaultError({
@@ -6882,6 +7203,18 @@ var de_CannotDeleteEntityWhileInUseRes = /* @__PURE__ */ __name(async (parsedOut
6882
7203
  });
6883
7204
  return (0, import_smithy_client.decorateServiceException)(exception, parsedOutput.body.Error);
6884
7205
  }, "de_CannotDeleteEntityWhileInUseRes");
7206
+ var de_CannotUpdateEntityWhileInUseRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
7207
+ const contents = (0, import_smithy_client.map)({});
7208
+ const data = parsedOutput.body.Error;
7209
+ if (data[_Me] != null) {
7210
+ contents[_Me] = (0, import_smithy_client.expectString)(data[_Me]);
7211
+ }
7212
+ const exception = new CannotUpdateEntityWhileInUse({
7213
+ $metadata: deserializeMetadata(parsedOutput),
7214
+ ...contents
7215
+ });
7216
+ return (0, import_smithy_client.decorateServiceException)(exception, parsedOutput.body.Error);
7217
+ }, "de_CannotUpdateEntityWhileInUseRes");
6885
7218
  var de_CloudFrontOriginAccessIdentityAlreadyExistsRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
6886
7219
  const contents = (0, import_smithy_client.map)({});
6887
7220
  const data = parsedOutput.body.Error;
@@ -8698,6 +9031,9 @@ var se_CacheBehavior = /* @__PURE__ */ __name((input, context) => {
8698
9031
  if (input[_RHPI] != null) {
8699
9032
  bn.c(import_xml_builder.XmlNode.of(_st, input[_RHPI]).n(_RHPI));
8700
9033
  }
9034
+ if (input[_GC] != null) {
9035
+ bn.c(se_GrpcConfig(input[_GC], context).n(_GC));
9036
+ }
8701
9037
  if (input[_FV] != null) {
8702
9038
  bn.c(se_ForwardedValues(input[_FV], context).n(_FV));
8703
9039
  }
@@ -8988,6 +9324,9 @@ var se_DefaultCacheBehavior = /* @__PURE__ */ __name((input, context) => {
8988
9324
  if (input[_RHPI] != null) {
8989
9325
  bn.c(import_xml_builder.XmlNode.of(_st, input[_RHPI]).n(_RHPI));
8990
9326
  }
9327
+ if (input[_GC] != null) {
9328
+ bn.c(se_GrpcConfig(input[_GC], context).n(_GC));
9329
+ }
8991
9330
  if (input[_FV] != null) {
8992
9331
  bn.c(se_ForwardedValues(input[_FV], context).n(_FV));
8993
9332
  }
@@ -9057,6 +9396,9 @@ var se_DistributionConfig = /* @__PURE__ */ __name((input, context) => {
9057
9396
  if (input[_S] != null) {
9058
9397
  bn.c(import_xml_builder.XmlNode.of(_b, String(input[_S])).n(_S));
9059
9398
  }
9399
+ if (input[_AILI] != null) {
9400
+ bn.c(import_xml_builder.XmlNode.of(_st, input[_AILI]).n(_AILI));
9401
+ }
9060
9402
  return bn;
9061
9403
  }, "se_DistributionConfig");
9062
9404
  var se_DistributionConfigWithTags = /* @__PURE__ */ __name((input, context) => {
@@ -9064,8 +9406,8 @@ var se_DistributionConfigWithTags = /* @__PURE__ */ __name((input, context) => {
9064
9406
  if (input[_DC] != null) {
9065
9407
  bn.c(se_DistributionConfig(input[_DC], context).n(_DC));
9066
9408
  }
9067
- if (input[_Ta] != null) {
9068
- bn.c(se_Tags(input[_Ta], context).n(_Ta));
9409
+ if (input[_T] != null) {
9410
+ bn.c(se_Tags(input[_T], context).n(_T));
9069
9411
  }
9070
9412
  return bn;
9071
9413
  }, "se_DistributionConfigWithTags");
@@ -9224,6 +9566,13 @@ var se_GeoRestriction = /* @__PURE__ */ __name((input, context) => {
9224
9566
  bn.lc(input, "Items", "Items", () => se_LocationList(input[_I], context));
9225
9567
  return bn;
9226
9568
  }, "se_GeoRestriction");
9569
+ var se_GrpcConfig = /* @__PURE__ */ __name((input, context) => {
9570
+ const bn = new import_xml_builder.XmlNode(_GC);
9571
+ if (input[_E] != null) {
9572
+ bn.c(import_xml_builder.XmlNode.of(_b, String(input[_E])).n(_E));
9573
+ }
9574
+ return bn;
9575
+ }, "se_GrpcConfig");
9227
9576
  var se_HeaderList = /* @__PURE__ */ __name((input, context) => {
9228
9577
  return input.filter((e) => e != null).map((entry) => {
9229
9578
  const n = import_xml_builder.XmlNode.of(_st, entry);
@@ -9332,8 +9681,8 @@ var se_LoggingConfig = /* @__PURE__ */ __name((input, context) => {
9332
9681
  if (input[_E] != null) {
9333
9682
  bn.c(import_xml_builder.XmlNode.of(_b, String(input[_E])).n(_E));
9334
9683
  }
9335
- if (input[_IC] != null) {
9336
- bn.c(import_xml_builder.XmlNode.of(_b, String(input[_IC])).n(_IC));
9684
+ if (input[_ICn] != null) {
9685
+ bn.c(import_xml_builder.XmlNode.of(_b, String(input[_ICn])).n(_ICn));
9337
9686
  }
9338
9687
  if (input[_B] != null) {
9339
9688
  bn.c(import_xml_builder.XmlNode.of(_st, input[_B]).n(_B));
@@ -9376,6 +9725,9 @@ var se_Origin = /* @__PURE__ */ __name((input, context) => {
9376
9725
  if (input[_COC] != null) {
9377
9726
  bn.c(se_CustomOriginConfig(input[_COC], context).n(_COC));
9378
9727
  }
9728
+ if (input[_VOC] != null) {
9729
+ bn.c(se_VpcOriginConfig(input[_VOC], context).n(_VOC));
9730
+ }
9379
9731
  if (input[_CA] != null) {
9380
9732
  bn.c(import_xml_builder.XmlNode.of(_i, String(input[_CA])).n(_CA));
9381
9733
  }
@@ -9436,12 +9788,15 @@ var se_OriginGroup = /* @__PURE__ */ __name((input, context) => {
9436
9788
  if (input[_Mem] != null) {
9437
9789
  bn.c(se_OriginGroupMembers(input[_Mem], context).n(_Mem));
9438
9790
  }
9791
+ if (input[_SC] != null) {
9792
+ bn.c(import_xml_builder.XmlNode.of(_OGSC, input[_SC]).n(_SC));
9793
+ }
9439
9794
  return bn;
9440
9795
  }, "se_OriginGroup");
9441
9796
  var se_OriginGroupFailoverCriteria = /* @__PURE__ */ __name((input, context) => {
9442
9797
  const bn = new import_xml_builder.XmlNode(_OGFC);
9443
- if (input[_SC] != null) {
9444
- bn.c(se_StatusCodes(input[_SC], context).n(_SC));
9798
+ if (input[_SCt] != null) {
9799
+ bn.c(se_StatusCodes(input[_SCt], context).n(_SCt));
9445
9800
  }
9446
9801
  return bn;
9447
9802
  }, "se_OriginGroupFailoverCriteria");
@@ -9969,11 +10324,11 @@ var se_StagingDistributionDnsNames = /* @__PURE__ */ __name((input, context) =>
9969
10324
  var se_StatusCodeList = /* @__PURE__ */ __name((input, context) => {
9970
10325
  return input.filter((e) => e != null).map((entry) => {
9971
10326
  const n = import_xml_builder.XmlNode.of(_i, String(entry));
9972
- return n.n(_SCt);
10327
+ return n.n(_SCta);
9973
10328
  });
9974
10329
  }, "se_StatusCodeList");
9975
10330
  var se_StatusCodes = /* @__PURE__ */ __name((input, context) => {
9976
- const bn = new import_xml_builder.XmlNode(_SC);
10331
+ const bn = new import_xml_builder.XmlNode(_SCt);
9977
10332
  if (input[_Q] != null) {
9978
10333
  bn.c(import_xml_builder.XmlNode.of(_i, String(input[_Q])).n(_Q));
9979
10334
  }
@@ -10011,8 +10366,8 @@ var se_StreamingDistributionConfigWithTags = /* @__PURE__ */ __name((input, cont
10011
10366
  if (input[_SDC] != null) {
10012
10367
  bn.c(se_StreamingDistributionConfig(input[_SDC], context).n(_SDC));
10013
10368
  }
10014
- if (input[_Ta] != null) {
10015
- bn.c(se_Tags(input[_Ta], context).n(_Ta));
10369
+ if (input[_T] != null) {
10370
+ bn.c(se_Tags(input[_T], context).n(_T));
10016
10371
  }
10017
10372
  return bn;
10018
10373
  }, "se_StreamingDistributionConfigWithTags");
@@ -10030,7 +10385,7 @@ var se_StreamingLoggingConfig = /* @__PURE__ */ __name((input, context) => {
10030
10385
  return bn;
10031
10386
  }, "se_StreamingLoggingConfig");
10032
10387
  var se_Tag = /* @__PURE__ */ __name((input, context) => {
10033
- const bn = new import_xml_builder.XmlNode(_Tag);
10388
+ const bn = new import_xml_builder.XmlNode(_Ta);
10034
10389
  if (input[_K] != null) {
10035
10390
  bn.c(import_xml_builder.XmlNode.of(_TK, input[_K]).n(_K));
10036
10391
  }
@@ -10053,11 +10408,11 @@ var se_TagKeys = /* @__PURE__ */ __name((input, context) => {
10053
10408
  var se_TagList = /* @__PURE__ */ __name((input, context) => {
10054
10409
  return input.filter((e) => e != null).map((entry) => {
10055
10410
  const n = se_Tag(entry, context);
10056
- return n.n(_Tag);
10411
+ return n.n(_Ta);
10057
10412
  });
10058
10413
  }, "se_TagList");
10059
10414
  var se_Tags = /* @__PURE__ */ __name((input, context) => {
10060
- const bn = new import_xml_builder.XmlNode(_Ta);
10415
+ const bn = new import_xml_builder.XmlNode(_T);
10061
10416
  bn.lc(input, "Items", "Items", () => se_TagList(input[_I], context));
10062
10417
  return bn;
10063
10418
  }, "se_Tags");
@@ -10069,8 +10424,8 @@ var se_TrafficConfig = /* @__PURE__ */ __name((input, context) => {
10069
10424
  if (input[_SHCi] != null) {
10070
10425
  bn.c(se_ContinuousDeploymentSingleHeaderConfig(input[_SHCi], context).n(_SHCi));
10071
10426
  }
10072
- if (input[_T] != null) {
10073
- bn.c(import_xml_builder.XmlNode.of(_CDPT, input[_T]).n(_T));
10427
+ if (input[_Ty] != null) {
10428
+ bn.c(import_xml_builder.XmlNode.of(_CDPT, input[_Ty]).n(_Ty));
10074
10429
  }
10075
10430
  return bn;
10076
10431
  }, "se_TrafficConfig");
@@ -10121,6 +10476,33 @@ var se_ViewerCertificate = /* @__PURE__ */ __name((input, context) => {
10121
10476
  bn.cc(input, _CS);
10122
10477
  return bn;
10123
10478
  }, "se_ViewerCertificate");
10479
+ var se_VpcOriginConfig = /* @__PURE__ */ __name((input, context) => {
10480
+ const bn = new import_xml_builder.XmlNode(_VOC);
10481
+ if (input[_VOI] != null) {
10482
+ bn.c(import_xml_builder.XmlNode.of(_st, input[_VOI]).n(_VOI));
10483
+ }
10484
+ return bn;
10485
+ }, "se_VpcOriginConfig");
10486
+ var se_VpcOriginEndpointConfig = /* @__PURE__ */ __name((input, context) => {
10487
+ const bn = new import_xml_builder.XmlNode(_VOEC);
10488
+ if (input[_N] != null) {
10489
+ bn.c(import_xml_builder.XmlNode.of(_st, input[_N]).n(_N));
10490
+ }
10491
+ if (input[_Ar] != null) {
10492
+ bn.c(import_xml_builder.XmlNode.of(_st, input[_Ar]).n(_Ar));
10493
+ }
10494
+ if (input[_HTTPP] != null) {
10495
+ bn.c(import_xml_builder.XmlNode.of(_i, String(input[_HTTPP])).n(_HTTPP));
10496
+ }
10497
+ if (input[_HTTPSP] != null) {
10498
+ bn.c(import_xml_builder.XmlNode.of(_i, String(input[_HTTPSP])).n(_HTTPSP));
10499
+ }
10500
+ bn.cc(input, _OPP);
10501
+ if (input[_OSP] != null) {
10502
+ bn.c(se_OriginSslProtocols(input[_OSP], context).n(_OSP));
10503
+ }
10504
+ return bn;
10505
+ }, "se_VpcOriginEndpointConfig");
10124
10506
  var de_AccessControlAllowHeadersList = /* @__PURE__ */ __name((output, context) => {
10125
10507
  return (output || []).filter((e) => e != null).map((entry) => {
10126
10508
  return (0, import_smithy_client.expectString)(entry);
@@ -10176,48 +10558,131 @@ var de_Aliases = /* @__PURE__ */ __name((output, context) => {
10176
10558
  if (output[_Q] != null) {
10177
10559
  contents[_Q] = (0, import_smithy_client.strictParseInt32)(output[_Q]);
10178
10560
  }
10179
- if (output.Items === "") {
10180
- contents[_I] = [];
10181
- } else if (output[_I] != null && output[_I][_CNAME] != null) {
10182
- contents[_I] = de_AliasList((0, import_smithy_client.getArrayIfSingleItem)(output[_I][_CNAME]), context);
10561
+ if (output.Items === "") {
10562
+ contents[_I] = [];
10563
+ } else if (output[_I] != null && output[_I][_CNAME] != null) {
10564
+ contents[_I] = de_AliasList((0, import_smithy_client.getArrayIfSingleItem)(output[_I][_CNAME]), context);
10565
+ }
10566
+ return contents;
10567
+ }, "de_Aliases");
10568
+ var de_AliasICPRecordal = /* @__PURE__ */ __name((output, context) => {
10569
+ const contents = {};
10570
+ if (output[_CNAME] != null) {
10571
+ contents[_CNAME] = (0, import_smithy_client.expectString)(output[_CNAME]);
10572
+ }
10573
+ if (output[_ICPRS] != null) {
10574
+ contents[_ICPRS] = (0, import_smithy_client.expectString)(output[_ICPRS]);
10575
+ }
10576
+ return contents;
10577
+ }, "de_AliasICPRecordal");
10578
+ var de_AliasICPRecordals = /* @__PURE__ */ __name((output, context) => {
10579
+ return (output || []).filter((e) => e != null).map((entry) => {
10580
+ return de_AliasICPRecordal(entry, context);
10581
+ });
10582
+ }, "de_AliasICPRecordals");
10583
+ var de_AliasList = /* @__PURE__ */ __name((output, context) => {
10584
+ return (output || []).filter((e) => e != null).map((entry) => {
10585
+ return (0, import_smithy_client.expectString)(entry);
10586
+ });
10587
+ }, "de_AliasList");
10588
+ var de_AllowedMethods = /* @__PURE__ */ __name((output, context) => {
10589
+ const contents = {};
10590
+ if (output[_Q] != null) {
10591
+ contents[_Q] = (0, import_smithy_client.strictParseInt32)(output[_Q]);
10592
+ }
10593
+ if (output.Items === "") {
10594
+ contents[_I] = [];
10595
+ } else if (output[_I] != null && output[_I][_Met] != null) {
10596
+ contents[_I] = de_MethodsList((0, import_smithy_client.getArrayIfSingleItem)(output[_I][_Met]), context);
10597
+ }
10598
+ if (output[_CM] != null) {
10599
+ contents[_CM] = de_CachedMethods(output[_CM], context);
10600
+ }
10601
+ return contents;
10602
+ }, "de_AllowedMethods");
10603
+ var de_AnycastIpList = /* @__PURE__ */ __name((output, context) => {
10604
+ const contents = {};
10605
+ if (output[_Id] != null) {
10606
+ contents[_Id] = (0, import_smithy_client.expectString)(output[_Id]);
10607
+ }
10608
+ if (output[_N] != null) {
10609
+ contents[_N] = (0, import_smithy_client.expectString)(output[_N]);
10610
+ }
10611
+ if (output[_Sta] != null) {
10612
+ contents[_Sta] = (0, import_smithy_client.expectString)(output[_Sta]);
10613
+ }
10614
+ if (output[_Ar] != null) {
10615
+ contents[_Ar] = (0, import_smithy_client.expectString)(output[_Ar]);
10616
+ }
10617
+ if (output.AnycastIps === "") {
10618
+ contents[_AI] = [];
10619
+ } else if (output[_AI] != null && output[_AI][_AIn] != null) {
10620
+ contents[_AI] = de_AnycastIps((0, import_smithy_client.getArrayIfSingleItem)(output[_AI][_AIn]), context);
10621
+ }
10622
+ if (output[_IC] != null) {
10623
+ contents[_IC] = (0, import_smithy_client.strictParseInt32)(output[_IC]);
10624
+ }
10625
+ if (output[_LMT] != null) {
10626
+ contents[_LMT] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_LMT]));
10627
+ }
10628
+ return contents;
10629
+ }, "de_AnycastIpList");
10630
+ var de_AnycastIpListCollection = /* @__PURE__ */ __name((output, context) => {
10631
+ const contents = {};
10632
+ if (output.Items === "") {
10633
+ contents[_I] = [];
10634
+ } else if (output[_I] != null && output[_I][_AILS] != null) {
10635
+ contents[_I] = de_AnycastIpListSummaries((0, import_smithy_client.getArrayIfSingleItem)(output[_I][_AILS]), context);
10636
+ }
10637
+ if (output[_M] != null) {
10638
+ contents[_M] = (0, import_smithy_client.expectString)(output[_M]);
10639
+ }
10640
+ if (output[_NM] != null) {
10641
+ contents[_NM] = (0, import_smithy_client.expectString)(output[_NM]);
10642
+ }
10643
+ if (output[_MI] != null) {
10644
+ contents[_MI] = (0, import_smithy_client.strictParseInt32)(output[_MI]);
10183
10645
  }
10184
- return contents;
10185
- }, "de_Aliases");
10186
- var de_AliasICPRecordal = /* @__PURE__ */ __name((output, context) => {
10187
- const contents = {};
10188
- if (output[_CNAME] != null) {
10189
- contents[_CNAME] = (0, import_smithy_client.expectString)(output[_CNAME]);
10646
+ if (output[_IT] != null) {
10647
+ contents[_IT] = (0, import_smithy_client.parseBoolean)(output[_IT]);
10190
10648
  }
10191
- if (output[_ICPRS] != null) {
10192
- contents[_ICPRS] = (0, import_smithy_client.expectString)(output[_ICPRS]);
10649
+ if (output[_Q] != null) {
10650
+ contents[_Q] = (0, import_smithy_client.strictParseInt32)(output[_Q]);
10193
10651
  }
10194
10652
  return contents;
10195
- }, "de_AliasICPRecordal");
10196
- var de_AliasICPRecordals = /* @__PURE__ */ __name((output, context) => {
10197
- return (output || []).filter((e) => e != null).map((entry) => {
10198
- return de_AliasICPRecordal(entry, context);
10199
- });
10200
- }, "de_AliasICPRecordals");
10201
- var de_AliasList = /* @__PURE__ */ __name((output, context) => {
10653
+ }, "de_AnycastIpListCollection");
10654
+ var de_AnycastIpListSummaries = /* @__PURE__ */ __name((output, context) => {
10202
10655
  return (output || []).filter((e) => e != null).map((entry) => {
10203
- return (0, import_smithy_client.expectString)(entry);
10656
+ return de_AnycastIpListSummary(entry, context);
10204
10657
  });
10205
- }, "de_AliasList");
10206
- var de_AllowedMethods = /* @__PURE__ */ __name((output, context) => {
10658
+ }, "de_AnycastIpListSummaries");
10659
+ var de_AnycastIpListSummary = /* @__PURE__ */ __name((output, context) => {
10207
10660
  const contents = {};
10208
- if (output[_Q] != null) {
10209
- contents[_Q] = (0, import_smithy_client.strictParseInt32)(output[_Q]);
10661
+ if (output[_Id] != null) {
10662
+ contents[_Id] = (0, import_smithy_client.expectString)(output[_Id]);
10210
10663
  }
10211
- if (output.Items === "") {
10212
- contents[_I] = [];
10213
- } else if (output[_I] != null && output[_I][_Met] != null) {
10214
- contents[_I] = de_MethodsList((0, import_smithy_client.getArrayIfSingleItem)(output[_I][_Met]), context);
10664
+ if (output[_N] != null) {
10665
+ contents[_N] = (0, import_smithy_client.expectString)(output[_N]);
10215
10666
  }
10216
- if (output[_CM] != null) {
10217
- contents[_CM] = de_CachedMethods(output[_CM], context);
10667
+ if (output[_Sta] != null) {
10668
+ contents[_Sta] = (0, import_smithy_client.expectString)(output[_Sta]);
10669
+ }
10670
+ if (output[_Ar] != null) {
10671
+ contents[_Ar] = (0, import_smithy_client.expectString)(output[_Ar]);
10672
+ }
10673
+ if (output[_IC] != null) {
10674
+ contents[_IC] = (0, import_smithy_client.strictParseInt32)(output[_IC]);
10675
+ }
10676
+ if (output[_LMT] != null) {
10677
+ contents[_LMT] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_LMT]));
10218
10678
  }
10219
10679
  return contents;
10220
- }, "de_AllowedMethods");
10680
+ }, "de_AnycastIpListSummary");
10681
+ var de_AnycastIps = /* @__PURE__ */ __name((output, context) => {
10682
+ return (output || []).filter((e) => e != null).map((entry) => {
10683
+ return (0, import_smithy_client.expectString)(entry);
10684
+ });
10685
+ }, "de_AnycastIps");
10221
10686
  var de_AwsAccountNumberList = /* @__PURE__ */ __name((output, context) => {
10222
10687
  return (output || []).filter((e) => e != null).map((entry) => {
10223
10688
  return (0, import_smithy_client.expectString)(entry);
@@ -10270,6 +10735,9 @@ var de_CacheBehavior = /* @__PURE__ */ __name((output, context) => {
10270
10735
  if (output[_RHPI] != null) {
10271
10736
  contents[_RHPI] = (0, import_smithy_client.expectString)(output[_RHPI]);
10272
10737
  }
10738
+ if (output[_GC] != null) {
10739
+ contents[_GC] = de_GrpcConfig(output[_GC], context);
10740
+ }
10273
10741
  if (output[_FV] != null) {
10274
10742
  contents[_FV] = de_ForwardedValues(output[_FV], context);
10275
10743
  }
@@ -10398,8 +10866,8 @@ var de_CachePolicyQueryStringsConfig = /* @__PURE__ */ __name((output, context)
10398
10866
  }, "de_CachePolicyQueryStringsConfig");
10399
10867
  var de_CachePolicySummary = /* @__PURE__ */ __name((output, context) => {
10400
10868
  const contents = {};
10401
- if (output[_T] != null) {
10402
- contents[_T] = (0, import_smithy_client.expectString)(output[_T]);
10869
+ if (output[_Ty] != null) {
10870
+ contents[_Ty] = (0, import_smithy_client.expectString)(output[_Ty]);
10403
10871
  }
10404
10872
  if (output[_CPa] != null) {
10405
10873
  contents[_CPa] = de_CachePolicy(output[_CPa], context);
@@ -10484,8 +10952,8 @@ var de_ConflictingAlias = /* @__PURE__ */ __name((output, context) => {
10484
10952
  if (output[_DI] != null) {
10485
10953
  contents[_DI] = (0, import_smithy_client.expectString)(output[_DI]);
10486
10954
  }
10487
- if (output[_AI] != null) {
10488
- contents[_AI] = (0, import_smithy_client.expectString)(output[_AI]);
10955
+ if (output[_AIc] != null) {
10956
+ contents[_AIc] = (0, import_smithy_client.expectString)(output[_AIc]);
10489
10957
  }
10490
10958
  return contents;
10491
10959
  }, "de_ConflictingAlias");
@@ -10766,6 +11234,9 @@ var de_DefaultCacheBehavior = /* @__PURE__ */ __name((output, context) => {
10766
11234
  if (output[_RHPI] != null) {
10767
11235
  contents[_RHPI] = (0, import_smithy_client.expectString)(output[_RHPI]);
10768
11236
  }
11237
+ if (output[_GC] != null) {
11238
+ contents[_GC] = de_GrpcConfig(output[_GC], context);
11239
+ }
10769
11240
  if (output[_FV] != null) {
10770
11241
  contents[_FV] = de_ForwardedValues(output[_FV], context);
10771
11242
  }
@@ -10875,6 +11346,9 @@ var de_DistributionConfig = /* @__PURE__ */ __name((output, context) => {
10875
11346
  if (output[_S] != null) {
10876
11347
  contents[_S] = (0, import_smithy_client.parseBoolean)(output[_S]);
10877
11348
  }
11349
+ if (output[_AILI] != null) {
11350
+ contents[_AILI] = (0, import_smithy_client.expectString)(output[_AILI]);
11351
+ }
10878
11352
  return contents;
10879
11353
  }, "de_DistributionConfig");
10880
11354
  var de_DistributionIdList = /* @__PURE__ */ __name((output, context) => {
@@ -10997,6 +11471,9 @@ var de_DistributionSummary = /* @__PURE__ */ __name((output, context) => {
10997
11471
  if (output[_S] != null) {
10998
11472
  contents[_S] = (0, import_smithy_client.parseBoolean)(output[_S]);
10999
11473
  }
11474
+ if (output[_AILI] != null) {
11475
+ contents[_AILI] = (0, import_smithy_client.expectString)(output[_AILI]);
11476
+ }
11000
11477
  return contents;
11001
11478
  }, "de_DistributionSummary");
11002
11479
  var de_DistributionSummaryList = /* @__PURE__ */ __name((output, context) => {
@@ -11344,6 +11821,13 @@ var de_GeoRestriction = /* @__PURE__ */ __name((output, context) => {
11344
11821
  }
11345
11822
  return contents;
11346
11823
  }, "de_GeoRestriction");
11824
+ var de_GrpcConfig = /* @__PURE__ */ __name((output, context) => {
11825
+ const contents = {};
11826
+ if (output[_E] != null) {
11827
+ contents[_E] = (0, import_smithy_client.parseBoolean)(output[_E]);
11828
+ }
11829
+ return contents;
11830
+ }, "de_GrpcConfig");
11347
11831
  var de_HeaderList = /* @__PURE__ */ __name((output, context) => {
11348
11832
  return (output || []).filter((e) => e != null).map((entry) => {
11349
11833
  return (0, import_smithy_client.expectString)(entry);
@@ -11638,8 +12122,8 @@ var de_LoggingConfig = /* @__PURE__ */ __name((output, context) => {
11638
12122
  if (output[_E] != null) {
11639
12123
  contents[_E] = (0, import_smithy_client.parseBoolean)(output[_E]);
11640
12124
  }
11641
- if (output[_IC] != null) {
11642
- contents[_IC] = (0, import_smithy_client.parseBoolean)(output[_IC]);
12125
+ if (output[_ICn] != null) {
12126
+ contents[_ICn] = (0, import_smithy_client.parseBoolean)(output[_ICn]);
11643
12127
  }
11644
12128
  if (output[_B] != null) {
11645
12129
  contents[_B] = (0, import_smithy_client.expectString)(output[_B]);
@@ -11681,6 +12165,9 @@ var de_Origin = /* @__PURE__ */ __name((output, context) => {
11681
12165
  if (output[_COC] != null) {
11682
12166
  contents[_COC] = de_CustomOriginConfig(output[_COC], context);
11683
12167
  }
12168
+ if (output[_VOC] != null) {
12169
+ contents[_VOC] = de_VpcOriginConfig(output[_VOC], context);
12170
+ }
11684
12171
  if (output[_CA] != null) {
11685
12172
  contents[_CA] = (0, import_smithy_client.strictParseInt32)(output[_CA]);
11686
12173
  }
@@ -11801,12 +12288,15 @@ var de_OriginGroup = /* @__PURE__ */ __name((output, context) => {
11801
12288
  if (output[_Mem] != null) {
11802
12289
  contents[_Mem] = de_OriginGroupMembers(output[_Mem], context);
11803
12290
  }
12291
+ if (output[_SC] != null) {
12292
+ contents[_SC] = (0, import_smithy_client.expectString)(output[_SC]);
12293
+ }
11804
12294
  return contents;
11805
12295
  }, "de_OriginGroup");
11806
12296
  var de_OriginGroupFailoverCriteria = /* @__PURE__ */ __name((output, context) => {
11807
12297
  const contents = {};
11808
- if (output[_SC] != null) {
11809
- contents[_SC] = de_StatusCodes(output[_SC], context);
12298
+ if (output[_SCt] != null) {
12299
+ contents[_SCt] = de_StatusCodes(output[_SCt], context);
11810
12300
  }
11811
12301
  return contents;
11812
12302
  }, "de_OriginGroupFailoverCriteria");
@@ -11938,8 +12428,8 @@ var de_OriginRequestPolicyQueryStringsConfig = /* @__PURE__ */ __name((output, c
11938
12428
  }, "de_OriginRequestPolicyQueryStringsConfig");
11939
12429
  var de_OriginRequestPolicySummary = /* @__PURE__ */ __name((output, context) => {
11940
12430
  const contents = {};
11941
- if (output[_T] != null) {
11942
- contents[_T] = (0, import_smithy_client.expectString)(output[_T]);
12431
+ if (output[_Ty] != null) {
12432
+ contents[_Ty] = (0, import_smithy_client.expectString)(output[_Ty]);
11943
12433
  }
11944
12434
  if (output[_ORP] != null) {
11945
12435
  contents[_ORP] = de_OriginRequestPolicy(output[_ORP], context);
@@ -12494,8 +12984,8 @@ var de_ResponseHeadersPolicyStrictTransportSecurity = /* @__PURE__ */ __name((ou
12494
12984
  }, "de_ResponseHeadersPolicyStrictTransportSecurity");
12495
12985
  var de_ResponseHeadersPolicySummary = /* @__PURE__ */ __name((output, context) => {
12496
12986
  const contents = {};
12497
- if (output[_T] != null) {
12498
- contents[_T] = (0, import_smithy_client.expectString)(output[_T]);
12987
+ if (output[_Ty] != null) {
12988
+ contents[_Ty] = (0, import_smithy_client.expectString)(output[_Ty]);
12499
12989
  }
12500
12990
  if (output[_RHP] != null) {
12501
12991
  contents[_RHP] = de_ResponseHeadersPolicy(output[_RHP], context);
@@ -12606,8 +13096,8 @@ var de_StatusCodes = /* @__PURE__ */ __name((output, context) => {
12606
13096
  }
12607
13097
  if (output.Items === "") {
12608
13098
  contents[_I] = [];
12609
- } else if (output[_I] != null && output[_I][_SCt] != null) {
12610
- contents[_I] = de_StatusCodeList((0, import_smithy_client.getArrayIfSingleItem)(output[_I][_SCt]), context);
13099
+ } else if (output[_I] != null && output[_I][_SCta] != null) {
13100
+ contents[_I] = de_StatusCodeList((0, import_smithy_client.getArrayIfSingleItem)(output[_I][_SCta]), context);
12611
13101
  }
12612
13102
  return contents;
12613
13103
  }, "de_StatusCodes");
@@ -12762,8 +13252,8 @@ var de_Tags = /* @__PURE__ */ __name((output, context) => {
12762
13252
  const contents = {};
12763
13253
  if (output.Items === "") {
12764
13254
  contents[_I] = [];
12765
- } else if (output[_I] != null && output[_I][_Tag] != null) {
12766
- contents[_I] = de_TagList((0, import_smithy_client.getArrayIfSingleItem)(output[_I][_Tag]), context);
13255
+ } else if (output[_I] != null && output[_I][_Ta] != null) {
13256
+ contents[_I] = de_TagList((0, import_smithy_client.getArrayIfSingleItem)(output[_I][_Ta]), context);
12767
13257
  }
12768
13258
  return contents;
12769
13259
  }, "de_Tags");
@@ -12796,8 +13286,8 @@ var de_TrafficConfig = /* @__PURE__ */ __name((output, context) => {
12796
13286
  if (output[_SHCi] != null) {
12797
13287
  contents[_SHCi] = de_ContinuousDeploymentSingleHeaderConfig(output[_SHCi], context);
12798
13288
  }
12799
- if (output[_T] != null) {
12800
- contents[_T] = (0, import_smithy_client.expectString)(output[_T]);
13289
+ if (output[_Ty] != null) {
13290
+ contents[_Ty] = (0, import_smithy_client.expectString)(output[_Ty]);
12801
13291
  }
12802
13292
  return contents;
12803
13293
  }, "de_TrafficConfig");
@@ -12861,6 +13351,111 @@ var de_ViewerCertificate = /* @__PURE__ */ __name((output, context) => {
12861
13351
  }
12862
13352
  return contents;
12863
13353
  }, "de_ViewerCertificate");
13354
+ var de_VpcOrigin = /* @__PURE__ */ __name((output, context) => {
13355
+ const contents = {};
13356
+ if (output[_Id] != null) {
13357
+ contents[_Id] = (0, import_smithy_client.expectString)(output[_Id]);
13358
+ }
13359
+ if (output[_Ar] != null) {
13360
+ contents[_Ar] = (0, import_smithy_client.expectString)(output[_Ar]);
13361
+ }
13362
+ if (output[_Sta] != null) {
13363
+ contents[_Sta] = (0, import_smithy_client.expectString)(output[_Sta]);
13364
+ }
13365
+ if (output[_CTr] != null) {
13366
+ contents[_CTr] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_CTr]));
13367
+ }
13368
+ if (output[_LMT] != null) {
13369
+ contents[_LMT] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_LMT]));
13370
+ }
13371
+ if (output[_VOEC] != null) {
13372
+ contents[_VOEC] = de_VpcOriginEndpointConfig(output[_VOEC], context);
13373
+ }
13374
+ return contents;
13375
+ }, "de_VpcOrigin");
13376
+ var de_VpcOriginConfig = /* @__PURE__ */ __name((output, context) => {
13377
+ const contents = {};
13378
+ if (output[_VOI] != null) {
13379
+ contents[_VOI] = (0, import_smithy_client.expectString)(output[_VOI]);
13380
+ }
13381
+ return contents;
13382
+ }, "de_VpcOriginConfig");
13383
+ var de_VpcOriginEndpointConfig = /* @__PURE__ */ __name((output, context) => {
13384
+ const contents = {};
13385
+ if (output[_N] != null) {
13386
+ contents[_N] = (0, import_smithy_client.expectString)(output[_N]);
13387
+ }
13388
+ if (output[_Ar] != null) {
13389
+ contents[_Ar] = (0, import_smithy_client.expectString)(output[_Ar]);
13390
+ }
13391
+ if (output[_HTTPP] != null) {
13392
+ contents[_HTTPP] = (0, import_smithy_client.strictParseInt32)(output[_HTTPP]);
13393
+ }
13394
+ if (output[_HTTPSP] != null) {
13395
+ contents[_HTTPSP] = (0, import_smithy_client.strictParseInt32)(output[_HTTPSP]);
13396
+ }
13397
+ if (output[_OPP] != null) {
13398
+ contents[_OPP] = (0, import_smithy_client.expectString)(output[_OPP]);
13399
+ }
13400
+ if (output[_OSP] != null) {
13401
+ contents[_OSP] = de_OriginSslProtocols(output[_OSP], context);
13402
+ }
13403
+ return contents;
13404
+ }, "de_VpcOriginEndpointConfig");
13405
+ var de_VpcOriginList = /* @__PURE__ */ __name((output, context) => {
13406
+ const contents = {};
13407
+ if (output[_M] != null) {
13408
+ contents[_M] = (0, import_smithy_client.expectString)(output[_M]);
13409
+ }
13410
+ if (output[_NM] != null) {
13411
+ contents[_NM] = (0, import_smithy_client.expectString)(output[_NM]);
13412
+ }
13413
+ if (output[_MI] != null) {
13414
+ contents[_MI] = (0, import_smithy_client.strictParseInt32)(output[_MI]);
13415
+ }
13416
+ if (output[_IT] != null) {
13417
+ contents[_IT] = (0, import_smithy_client.parseBoolean)(output[_IT]);
13418
+ }
13419
+ if (output[_Q] != null) {
13420
+ contents[_Q] = (0, import_smithy_client.strictParseInt32)(output[_Q]);
13421
+ }
13422
+ if (output.Items === "") {
13423
+ contents[_I] = [];
13424
+ } else if (output[_I] != null && output[_I][_VOS] != null) {
13425
+ contents[_I] = de_VpcOriginSummaryList((0, import_smithy_client.getArrayIfSingleItem)(output[_I][_VOS]), context);
13426
+ }
13427
+ return contents;
13428
+ }, "de_VpcOriginList");
13429
+ var de_VpcOriginSummary = /* @__PURE__ */ __name((output, context) => {
13430
+ const contents = {};
13431
+ if (output[_Id] != null) {
13432
+ contents[_Id] = (0, import_smithy_client.expectString)(output[_Id]);
13433
+ }
13434
+ if (output[_N] != null) {
13435
+ contents[_N] = (0, import_smithy_client.expectString)(output[_N]);
13436
+ }
13437
+ if (output[_Sta] != null) {
13438
+ contents[_Sta] = (0, import_smithy_client.expectString)(output[_Sta]);
13439
+ }
13440
+ if (output[_CTr] != null) {
13441
+ contents[_CTr] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_CTr]));
13442
+ }
13443
+ if (output[_LMT] != null) {
13444
+ contents[_LMT] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_LMT]));
13445
+ }
13446
+ if (output[_Ar] != null) {
13447
+ contents[_Ar] = (0, import_smithy_client.expectString)(output[_Ar]);
13448
+ }
13449
+ if (output[_OEA] != null) {
13450
+ contents[_OEA] = (0, import_smithy_client.expectString)(output[_OEA]);
13451
+ }
13452
+ return contents;
13453
+ }, "de_VpcOriginSummary");
13454
+ var de_VpcOriginSummaryList = /* @__PURE__ */ __name((output, context) => {
13455
+ return (output || []).filter((e) => e != null).map((entry) => {
13456
+ return de_VpcOriginSummary(entry, context);
13457
+ });
13458
+ }, "de_VpcOriginSummaryList");
12864
13459
  var deserializeMetadata = /* @__PURE__ */ __name((output) => ({
12865
13460
  httpStatusCode: output.statusCode,
12866
13461
  requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
@@ -12876,17 +13471,24 @@ var _ACAO = "AccessControlAllowOrigins";
12876
13471
  var _ACEH = "AccessControlExposeHeaders";
12877
13472
  var _ACMAS = "AccessControlMaxAgeSec";
12878
13473
  var _ACMCA = "ACMCertificateArn";
12879
- var _AI = "AccountId";
13474
+ var _AI = "AnycastIps";
12880
13475
  var _AICPR = "AliasICPRecordals";
12881
13476
  var _AICPRl = "AliasICPRecordal";
13477
+ var _AILI = "AnycastIpListId";
13478
+ var _AILN = "AnycastIpListName";
13479
+ var _AILS = "AnycastIpListSummary";
13480
+ var _AIc = "AccountId";
13481
+ var _AIn = "AnycastIp";
12882
13482
  var _AM = "AllowedMethods";
12883
13483
  var _ARN = "ARN";
12884
13484
  var _ATKG = "ActiveTrustedKeyGroups";
12885
13485
  var _ATS = "ActiveTrustedSigners";
12886
13486
  var _Al = "Aliases";
13487
+ var _Ar = "Arn";
12887
13488
  var _B = "Bucket";
12888
13489
  var _C = "Comment";
12889
13490
  var _CA = "ConnectionAttempts";
13491
+ var _CAILR = "CreateAnycastIpListRequest";
12890
13492
  var _CAo = "ConflictingAlias";
12891
13493
  var _CB = "CacheBehavior";
12892
13494
  var _CBa = "CacheBehaviors";
@@ -12939,6 +13541,7 @@ var _CTon = "ConnectionTimeout";
12939
13541
  var _CTr = "CreatedTime";
12940
13542
  var _CTre = "CreateTime";
12941
13543
  var _CU = "ComputeUtilization";
13544
+ var _CVOR = "CreateVpcOriginRequest";
12942
13545
  var _Ce = "Certificate";
12943
13546
  var _Co = "Compress";
12944
13547
  var _Coo = "Cookies";
@@ -12999,6 +13602,7 @@ var _FWQAPIU = "ForwardWhenQueryArgProfileIsUnknown";
12999
13602
  var _Fi = "Field";
13000
13603
  var _Fo = "Format";
13001
13604
  var _For = "Forward";
13605
+ var _GC = "GrpcConfig";
13002
13606
  var _GR = "GeoRestriction";
13003
13607
  var _GRLCR = "GetRealtimeLogConfigRequest";
13004
13608
  var _GRT = "GeoRestrictionType";
@@ -13015,8 +13619,9 @@ var _I = "Items";
13015
13619
  var _IAMCI = "IAMCertificateId";
13016
13620
  var _IB = "InvalidationBatch";
13017
13621
  var _IBn = "IncludeBody";
13018
- var _IC = "IncludeCookies";
13622
+ var _IC = "IpCount";
13019
13623
  var _ICPRS = "ICPRecordalStatus";
13624
+ var _ICn = "IncludeCookies";
13020
13625
  var _IIPVE = "IsIPV6Enabled";
13021
13626
  var _IM = "IfMatch";
13022
13627
  var _IPIB = "InProgressInvalidationBatches";
@@ -13073,10 +13678,12 @@ var _OACSB = "OriginAccessControlSigningBehaviors";
13073
13678
  var _OACSP = "OriginAccessControlSigningProtocols";
13074
13679
  var _OAI = "OriginAccessIdentity";
13075
13680
  var _OCH = "OriginCustomHeader";
13681
+ var _OEA = "OriginEndpointArn";
13076
13682
  var _OG = "OriginGroups";
13077
13683
  var _OGFC = "OriginGroupFailoverCriteria";
13078
13684
  var _OGM = "OriginGroupMember";
13079
13685
  var _OGMr = "OriginGroupMembers";
13686
+ var _OGSC = "OriginGroupSelectionCriteria";
13080
13687
  var _OGr = "OriginGroup";
13081
13688
  var _OI = "OriginId";
13082
13689
  var _OKT = "OriginKeepaliveTimeout";
@@ -13167,9 +13774,10 @@ var _S = "Staging";
13167
13774
  var _SARN = "SourceARN";
13168
13775
  var _SARNt = "StreamARN";
13169
13776
  var _SB = "SigningBehavior";
13170
- var _SC = "StatusCodes";
13777
+ var _SC = "SelectionCriteria";
13171
13778
  var _SCUI = "S3CanonicalUserId";
13172
- var _SCt = "StatusCode";
13779
+ var _SCt = "StatusCodes";
13780
+ var _SCta = "StatusCode";
13173
13781
  var _SDC = "StreamingDistributionConfig";
13174
13782
  var _SDCWT = "StreamingDistributionConfigWithTags";
13175
13783
  var _SDDN = "StagingDistributionDnsNames";
@@ -13194,7 +13802,7 @@ var _SWC = "SingleWeightConfig";
13194
13802
  var _Si = "Signer";
13195
13803
  var _St = "Stage";
13196
13804
  var _Sta = "Status";
13197
- var _T = "Type";
13805
+ var _T = "Tags";
13198
13806
  var _TC = "TrafficConfig";
13199
13807
  var _TFR = "TestFunctionRequest";
13200
13808
  var _TK = "TagKey";
@@ -13203,13 +13811,17 @@ var _TKa = "TagKeys";
13203
13811
  var _TOI = "TargetOriginId";
13204
13812
  var _TS = "TrustedSigners";
13205
13813
  var _TV = "TagValue";
13206
- var _Ta = "Tags";
13207
- var _Tag = "Tag";
13814
+ var _Ta = "Tag";
13815
+ var _Ty = "Type";
13208
13816
  var _UFR = "UpdateFunctionRequest";
13209
13817
  var _UKVSR = "UpdateKeyValueStoreRequest";
13210
13818
  var _URLCR = "UpdateRealtimeLogConfigRequest";
13211
13819
  var _V = "Value";
13212
13820
  var _VC = "ViewerCertificate";
13821
+ var _VOC = "VpcOriginConfig";
13822
+ var _VOEC = "VpcOriginEndpointConfig";
13823
+ var _VOI = "VpcOriginId";
13824
+ var _VOS = "VpcOriginSummary";
13213
13825
  var _VPP = "ViewerProtocolPolicy";
13214
13826
  var _W = "Weight";
13215
13827
  var _WACLI = "WebACLId";
@@ -13256,6 +13868,20 @@ var _CopyDistributionCommand = class _CopyDistributionCommand extends import_smi
13256
13868
  __name(_CopyDistributionCommand, "CopyDistributionCommand");
13257
13869
  var CopyDistributionCommand = _CopyDistributionCommand;
13258
13870
 
13871
+ // src/commands/CreateAnycastIpListCommand.ts
13872
+
13873
+
13874
+
13875
+ var _CreateAnycastIpListCommand = class _CreateAnycastIpListCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
13876
+ return [
13877
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
13878
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
13879
+ ];
13880
+ }).s("Cloudfront2020_05_31", "CreateAnycastIpList", {}).n("CloudFrontClient", "CreateAnycastIpListCommand").f(void 0, void 0).ser(se_CreateAnycastIpListCommand).de(de_CreateAnycastIpListCommand).build() {
13881
+ };
13882
+ __name(_CreateAnycastIpListCommand, "CreateAnycastIpListCommand");
13883
+ var CreateAnycastIpListCommand = _CreateAnycastIpListCommand;
13884
+
13259
13885
  // src/commands/CreateCachePolicyCommand.ts
13260
13886
 
13261
13887
 
@@ -13522,6 +14148,34 @@ var _CreateStreamingDistributionWithTagsCommand = class _CreateStreamingDistribu
13522
14148
  __name(_CreateStreamingDistributionWithTagsCommand, "CreateStreamingDistributionWithTagsCommand");
13523
14149
  var CreateStreamingDistributionWithTagsCommand = _CreateStreamingDistributionWithTagsCommand;
13524
14150
 
14151
+ // src/commands/CreateVpcOriginCommand.ts
14152
+
14153
+
14154
+
14155
+ var _CreateVpcOriginCommand = class _CreateVpcOriginCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
14156
+ return [
14157
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
14158
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
14159
+ ];
14160
+ }).s("Cloudfront2020_05_31", "CreateVpcOrigin", {}).n("CloudFrontClient", "CreateVpcOriginCommand").f(void 0, void 0).ser(se_CreateVpcOriginCommand).de(de_CreateVpcOriginCommand).build() {
14161
+ };
14162
+ __name(_CreateVpcOriginCommand, "CreateVpcOriginCommand");
14163
+ var CreateVpcOriginCommand = _CreateVpcOriginCommand;
14164
+
14165
+ // src/commands/DeleteAnycastIpListCommand.ts
14166
+
14167
+
14168
+
14169
+ var _DeleteAnycastIpListCommand = class _DeleteAnycastIpListCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
14170
+ return [
14171
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
14172
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
14173
+ ];
14174
+ }).s("Cloudfront2020_05_31", "DeleteAnycastIpList", {}).n("CloudFrontClient", "DeleteAnycastIpListCommand").f(void 0, void 0).ser(se_DeleteAnycastIpListCommand).de(de_DeleteAnycastIpListCommand).build() {
14175
+ };
14176
+ __name(_DeleteAnycastIpListCommand, "DeleteAnycastIpListCommand");
14177
+ var DeleteAnycastIpListCommand = _DeleteAnycastIpListCommand;
14178
+
13525
14179
  // src/commands/DeleteCachePolicyCommand.ts
13526
14180
 
13527
14181
 
@@ -13746,6 +14400,20 @@ var _DeleteStreamingDistributionCommand = class _DeleteStreamingDistributionComm
13746
14400
  __name(_DeleteStreamingDistributionCommand, "DeleteStreamingDistributionCommand");
13747
14401
  var DeleteStreamingDistributionCommand = _DeleteStreamingDistributionCommand;
13748
14402
 
14403
+ // src/commands/DeleteVpcOriginCommand.ts
14404
+
14405
+
14406
+
14407
+ var _DeleteVpcOriginCommand = class _DeleteVpcOriginCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
14408
+ return [
14409
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
14410
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
14411
+ ];
14412
+ }).s("Cloudfront2020_05_31", "DeleteVpcOrigin", {}).n("CloudFrontClient", "DeleteVpcOriginCommand").f(void 0, void 0).ser(se_DeleteVpcOriginCommand).de(de_DeleteVpcOriginCommand).build() {
14413
+ };
14414
+ __name(_DeleteVpcOriginCommand, "DeleteVpcOriginCommand");
14415
+ var DeleteVpcOriginCommand = _DeleteVpcOriginCommand;
14416
+
13749
14417
  // src/commands/DescribeFunctionCommand.ts
13750
14418
 
13751
14419
 
@@ -13774,6 +14442,20 @@ var _DescribeKeyValueStoreCommand = class _DescribeKeyValueStoreCommand extends
13774
14442
  __name(_DescribeKeyValueStoreCommand, "DescribeKeyValueStoreCommand");
13775
14443
  var DescribeKeyValueStoreCommand = _DescribeKeyValueStoreCommand;
13776
14444
 
14445
+ // src/commands/GetAnycastIpListCommand.ts
14446
+
14447
+
14448
+
14449
+ var _GetAnycastIpListCommand = class _GetAnycastIpListCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
14450
+ return [
14451
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
14452
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
14453
+ ];
14454
+ }).s("Cloudfront2020_05_31", "GetAnycastIpList", {}).n("CloudFrontClient", "GetAnycastIpListCommand").f(void 0, void 0).ser(se_GetAnycastIpListCommand).de(de_GetAnycastIpListCommand).build() {
14455
+ };
14456
+ __name(_GetAnycastIpListCommand, "GetAnycastIpListCommand");
14457
+ var GetAnycastIpListCommand = _GetAnycastIpListCommand;
14458
+
13777
14459
  // src/commands/GetCachePolicyCommand.ts
13778
14460
 
13779
14461
 
@@ -14166,6 +14848,34 @@ var _GetStreamingDistributionConfigCommand = class _GetStreamingDistributionConf
14166
14848
  __name(_GetStreamingDistributionConfigCommand, "GetStreamingDistributionConfigCommand");
14167
14849
  var GetStreamingDistributionConfigCommand = _GetStreamingDistributionConfigCommand;
14168
14850
 
14851
+ // src/commands/GetVpcOriginCommand.ts
14852
+
14853
+
14854
+
14855
+ var _GetVpcOriginCommand = class _GetVpcOriginCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
14856
+ return [
14857
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
14858
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
14859
+ ];
14860
+ }).s("Cloudfront2020_05_31", "GetVpcOrigin", {}).n("CloudFrontClient", "GetVpcOriginCommand").f(void 0, void 0).ser(se_GetVpcOriginCommand).de(de_GetVpcOriginCommand).build() {
14861
+ };
14862
+ __name(_GetVpcOriginCommand, "GetVpcOriginCommand");
14863
+ var GetVpcOriginCommand = _GetVpcOriginCommand;
14864
+
14865
+ // src/commands/ListAnycastIpListsCommand.ts
14866
+
14867
+
14868
+
14869
+ var _ListAnycastIpListsCommand = class _ListAnycastIpListsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
14870
+ return [
14871
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
14872
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
14873
+ ];
14874
+ }).s("Cloudfront2020_05_31", "ListAnycastIpLists", {}).n("CloudFrontClient", "ListAnycastIpListsCommand").f(void 0, void 0).ser(se_ListAnycastIpListsCommand).de(de_ListAnycastIpListsCommand).build() {
14875
+ };
14876
+ __name(_ListAnycastIpListsCommand, "ListAnycastIpListsCommand");
14877
+ var ListAnycastIpListsCommand = _ListAnycastIpListsCommand;
14878
+
14169
14879
  // src/commands/ListCachePoliciesCommand.ts
14170
14880
 
14171
14881
 
@@ -14222,6 +14932,20 @@ var _ListContinuousDeploymentPoliciesCommand = class _ListContinuousDeploymentPo
14222
14932
  __name(_ListContinuousDeploymentPoliciesCommand, "ListContinuousDeploymentPoliciesCommand");
14223
14933
  var ListContinuousDeploymentPoliciesCommand = _ListContinuousDeploymentPoliciesCommand;
14224
14934
 
14935
+ // src/commands/ListDistributionsByAnycastIpListIdCommand.ts
14936
+
14937
+
14938
+
14939
+ var _ListDistributionsByAnycastIpListIdCommand = class _ListDistributionsByAnycastIpListIdCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
14940
+ return [
14941
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
14942
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
14943
+ ];
14944
+ }).s("Cloudfront2020_05_31", "ListDistributionsByAnycastIpListId", {}).n("CloudFrontClient", "ListDistributionsByAnycastIpListIdCommand").f(void 0, ListDistributionsByAnycastIpListIdResultFilterSensitiveLog).ser(se_ListDistributionsByAnycastIpListIdCommand).de(de_ListDistributionsByAnycastIpListIdCommand).build() {
14945
+ };
14946
+ __name(_ListDistributionsByAnycastIpListIdCommand, "ListDistributionsByAnycastIpListIdCommand");
14947
+ var ListDistributionsByAnycastIpListIdCommand = _ListDistributionsByAnycastIpListIdCommand;
14948
+
14225
14949
  // src/commands/ListDistributionsByCachePolicyIdCommand.ts
14226
14950
 
14227
14951
 
@@ -14292,6 +15016,20 @@ var _ListDistributionsByResponseHeadersPolicyIdCommand = class _ListDistribution
14292
15016
  __name(_ListDistributionsByResponseHeadersPolicyIdCommand, "ListDistributionsByResponseHeadersPolicyIdCommand");
14293
15017
  var ListDistributionsByResponseHeadersPolicyIdCommand = _ListDistributionsByResponseHeadersPolicyIdCommand;
14294
15018
 
15019
+ // src/commands/ListDistributionsByVpcOriginIdCommand.ts
15020
+
15021
+
15022
+
15023
+ var _ListDistributionsByVpcOriginIdCommand = class _ListDistributionsByVpcOriginIdCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
15024
+ return [
15025
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
15026
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
15027
+ ];
15028
+ }).s("Cloudfront2020_05_31", "ListDistributionsByVpcOriginId", {}).n("CloudFrontClient", "ListDistributionsByVpcOriginIdCommand").f(void 0, void 0).ser(se_ListDistributionsByVpcOriginIdCommand).de(de_ListDistributionsByVpcOriginIdCommand).build() {
15029
+ };
15030
+ __name(_ListDistributionsByVpcOriginIdCommand, "ListDistributionsByVpcOriginIdCommand");
15031
+ var ListDistributionsByVpcOriginIdCommand = _ListDistributionsByVpcOriginIdCommand;
15032
+
14295
15033
  // src/commands/ListDistributionsByWebACLIdCommand.ts
14296
15034
 
14297
15035
 
@@ -14502,6 +15240,20 @@ var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends impo
14502
15240
  __name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
14503
15241
  var ListTagsForResourceCommand = _ListTagsForResourceCommand;
14504
15242
 
15243
+ // src/commands/ListVpcOriginsCommand.ts
15244
+
15245
+
15246
+
15247
+ var _ListVpcOriginsCommand = class _ListVpcOriginsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
15248
+ return [
15249
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
15250
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
15251
+ ];
15252
+ }).s("Cloudfront2020_05_31", "ListVpcOrigins", {}).n("CloudFrontClient", "ListVpcOriginsCommand").f(void 0, void 0).ser(se_ListVpcOriginsCommand).de(de_ListVpcOriginsCommand).build() {
15253
+ };
15254
+ __name(_ListVpcOriginsCommand, "ListVpcOriginsCommand");
15255
+ var ListVpcOriginsCommand = _ListVpcOriginsCommand;
15256
+
14505
15257
  // src/commands/PublishFunctionCommand.ts
14506
15258
 
14507
15259
 
@@ -14782,10 +15534,25 @@ var _UpdateStreamingDistributionCommand = class _UpdateStreamingDistributionComm
14782
15534
  __name(_UpdateStreamingDistributionCommand, "UpdateStreamingDistributionCommand");
14783
15535
  var UpdateStreamingDistributionCommand = _UpdateStreamingDistributionCommand;
14784
15536
 
15537
+ // src/commands/UpdateVpcOriginCommand.ts
15538
+
15539
+
15540
+
15541
+ var _UpdateVpcOriginCommand = class _UpdateVpcOriginCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
15542
+ return [
15543
+ (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
15544
+ (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
15545
+ ];
15546
+ }).s("Cloudfront2020_05_31", "UpdateVpcOrigin", {}).n("CloudFrontClient", "UpdateVpcOriginCommand").f(void 0, void 0).ser(se_UpdateVpcOriginCommand).de(de_UpdateVpcOriginCommand).build() {
15547
+ };
15548
+ __name(_UpdateVpcOriginCommand, "UpdateVpcOriginCommand");
15549
+ var UpdateVpcOriginCommand = _UpdateVpcOriginCommand;
15550
+
14785
15551
  // src/CloudFront.ts
14786
15552
  var commands = {
14787
15553
  AssociateAliasCommand,
14788
15554
  CopyDistributionCommand,
15555
+ CreateAnycastIpListCommand,
14789
15556
  CreateCachePolicyCommand,
14790
15557
  CreateCloudFrontOriginAccessIdentityCommand,
14791
15558
  CreateContinuousDeploymentPolicyCommand,
@@ -14805,6 +15572,8 @@ var commands = {
14805
15572
  CreateResponseHeadersPolicyCommand,
14806
15573
  CreateStreamingDistributionCommand,
14807
15574
  CreateStreamingDistributionWithTagsCommand,
15575
+ CreateVpcOriginCommand,
15576
+ DeleteAnycastIpListCommand,
14808
15577
  DeleteCachePolicyCommand,
14809
15578
  DeleteCloudFrontOriginAccessIdentityCommand,
14810
15579
  DeleteContinuousDeploymentPolicyCommand,
@@ -14821,8 +15590,10 @@ var commands = {
14821
15590
  DeleteRealtimeLogConfigCommand,
14822
15591
  DeleteResponseHeadersPolicyCommand,
14823
15592
  DeleteStreamingDistributionCommand,
15593
+ DeleteVpcOriginCommand,
14824
15594
  DescribeFunctionCommand,
14825
15595
  DescribeKeyValueStoreCommand,
15596
+ GetAnycastIpListCommand,
14826
15597
  GetCachePolicyCommand,
14827
15598
  GetCachePolicyConfigCommand,
14828
15599
  GetCloudFrontOriginAccessIdentityCommand,
@@ -14851,16 +15622,20 @@ var commands = {
14851
15622
  GetResponseHeadersPolicyConfigCommand,
14852
15623
  GetStreamingDistributionCommand,
14853
15624
  GetStreamingDistributionConfigCommand,
15625
+ GetVpcOriginCommand,
15626
+ ListAnycastIpListsCommand,
14854
15627
  ListCachePoliciesCommand,
14855
15628
  ListCloudFrontOriginAccessIdentitiesCommand,
14856
15629
  ListConflictingAliasesCommand,
14857
15630
  ListContinuousDeploymentPoliciesCommand,
14858
15631
  ListDistributionsCommand,
15632
+ ListDistributionsByAnycastIpListIdCommand,
14859
15633
  ListDistributionsByCachePolicyIdCommand,
14860
15634
  ListDistributionsByKeyGroupCommand,
14861
15635
  ListDistributionsByOriginRequestPolicyIdCommand,
14862
15636
  ListDistributionsByRealtimeLogConfigCommand,
14863
15637
  ListDistributionsByResponseHeadersPolicyIdCommand,
15638
+ ListDistributionsByVpcOriginIdCommand,
14864
15639
  ListDistributionsByWebACLIdCommand,
14865
15640
  ListFieldLevelEncryptionConfigsCommand,
14866
15641
  ListFieldLevelEncryptionProfilesCommand,
@@ -14875,6 +15650,7 @@ var commands = {
14875
15650
  ListResponseHeadersPoliciesCommand,
14876
15651
  ListStreamingDistributionsCommand,
14877
15652
  ListTagsForResourceCommand,
15653
+ ListVpcOriginsCommand,
14878
15654
  PublishFunctionCommand,
14879
15655
  TagResourceCommand,
14880
15656
  TestFunctionCommand,
@@ -14894,7 +15670,8 @@ var commands = {
14894
15670
  UpdatePublicKeyCommand,
14895
15671
  UpdateRealtimeLogConfigCommand,
14896
15672
  UpdateResponseHeadersPolicyCommand,
14897
- UpdateStreamingDistributionCommand
15673
+ UpdateStreamingDistributionCommand,
15674
+ UpdateVpcOriginCommand
14898
15675
  };
14899
15676
  var _CloudFront = class _CloudFront extends CloudFrontClient {
14900
15677
  };
@@ -15034,6 +15811,7 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
15034
15811
  $Command,
15035
15812
  AssociateAliasCommand,
15036
15813
  CopyDistributionCommand,
15814
+ CreateAnycastIpListCommand,
15037
15815
  CreateCachePolicyCommand,
15038
15816
  CreateCloudFrontOriginAccessIdentityCommand,
15039
15817
  CreateContinuousDeploymentPolicyCommand,
@@ -15053,6 +15831,8 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
15053
15831
  CreateResponseHeadersPolicyCommand,
15054
15832
  CreateStreamingDistributionCommand,
15055
15833
  CreateStreamingDistributionWithTagsCommand,
15834
+ CreateVpcOriginCommand,
15835
+ DeleteAnycastIpListCommand,
15056
15836
  DeleteCachePolicyCommand,
15057
15837
  DeleteCloudFrontOriginAccessIdentityCommand,
15058
15838
  DeleteContinuousDeploymentPolicyCommand,
@@ -15069,8 +15849,10 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
15069
15849
  DeleteRealtimeLogConfigCommand,
15070
15850
  DeleteResponseHeadersPolicyCommand,
15071
15851
  DeleteStreamingDistributionCommand,
15852
+ DeleteVpcOriginCommand,
15072
15853
  DescribeFunctionCommand,
15073
15854
  DescribeKeyValueStoreCommand,
15855
+ GetAnycastIpListCommand,
15074
15856
  GetCachePolicyCommand,
15075
15857
  GetCachePolicyConfigCommand,
15076
15858
  GetCloudFrontOriginAccessIdentityCommand,
@@ -15099,15 +15881,19 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
15099
15881
  GetResponseHeadersPolicyConfigCommand,
15100
15882
  GetStreamingDistributionCommand,
15101
15883
  GetStreamingDistributionConfigCommand,
15884
+ GetVpcOriginCommand,
15885
+ ListAnycastIpListsCommand,
15102
15886
  ListCachePoliciesCommand,
15103
15887
  ListCloudFrontOriginAccessIdentitiesCommand,
15104
15888
  ListConflictingAliasesCommand,
15105
15889
  ListContinuousDeploymentPoliciesCommand,
15890
+ ListDistributionsByAnycastIpListIdCommand,
15106
15891
  ListDistributionsByCachePolicyIdCommand,
15107
15892
  ListDistributionsByKeyGroupCommand,
15108
15893
  ListDistributionsByOriginRequestPolicyIdCommand,
15109
15894
  ListDistributionsByRealtimeLogConfigCommand,
15110
15895
  ListDistributionsByResponseHeadersPolicyIdCommand,
15896
+ ListDistributionsByVpcOriginIdCommand,
15111
15897
  ListDistributionsByWebACLIdCommand,
15112
15898
  ListDistributionsCommand,
15113
15899
  ListFieldLevelEncryptionConfigsCommand,
@@ -15123,6 +15909,7 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
15123
15909
  ListResponseHeadersPoliciesCommand,
15124
15910
  ListStreamingDistributionsCommand,
15125
15911
  ListTagsForResourceCommand,
15912
+ ListVpcOriginsCommand,
15126
15913
  PublishFunctionCommand,
15127
15914
  TagResourceCommand,
15128
15915
  TestFunctionCommand,
@@ -15143,6 +15930,7 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
15143
15930
  UpdateRealtimeLogConfigCommand,
15144
15931
  UpdateResponseHeadersPolicyCommand,
15145
15932
  UpdateStreamingDistributionCommand,
15933
+ UpdateVpcOriginCommand,
15146
15934
  paginateListCloudFrontOriginAccessIdentities,
15147
15935
  paginateListDistributions,
15148
15936
  paginateListInvalidations,
@@ -15175,9 +15963,11 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
15175
15963
  CachePolicyType,
15176
15964
  CannotChangeImmutablePublicKeyFields,
15177
15965
  CannotDeleteEntityWhileInUse,
15966
+ CannotUpdateEntityWhileInUse,
15178
15967
  CertificateSource,
15179
15968
  CNAMEAlreadyExists,
15180
15969
  HttpVersion,
15970
+ OriginGroupSelectionCriteria,
15181
15971
  OriginProtocolPolicy,
15182
15972
  SslProtocol,
15183
15973
  PriceClass,
@@ -15243,6 +16033,10 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
15243
16033
  TooManyTrustedSigners,
15244
16034
  TrustedKeyGroupDoesNotExist,
15245
16035
  TrustedSignerDoesNotExist,
16036
+ EntityAlreadyExists,
16037
+ EntityLimitExceeded,
16038
+ InvalidTagging,
16039
+ UnsupportedOperation,
15246
16040
  TooManyCachePolicies,
15247
16041
  TooManyCookiesInCachePolicy,
15248
16042
  TooManyHeadersInCachePolicy,
@@ -15254,10 +16048,10 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
15254
16048
  StagingDistributionInUse,
15255
16049
  TooManyContinuousDeploymentPolicies,
15256
16050
  ContinuousDeploymentPolicyInUse,
16051
+ EntityNotFound,
15257
16052
  IllegalOriginAccessConfiguration,
15258
16053
  InvalidDomainNameForOriginAccessControl,
15259
16054
  NoSuchContinuousDeploymentPolicy,
15260
- InvalidTagging,
15261
16055
  Format,
15262
16056
  FieldLevelEncryptionConfigAlreadyExists,
15263
16057
  NoSuchFieldLevelEncryptionProfile,
@@ -15276,14 +16070,11 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
15276
16070
  FunctionAlreadyExists,
15277
16071
  FunctionSizeLimitExceeded,
15278
16072
  TooManyFunctions,
15279
- UnsupportedOperation,
15280
16073
  TooManyInvalidationsInProgress,
15281
16074
  KeyGroupAlreadyExists,
15282
16075
  TooManyKeyGroups,
15283
16076
  TooManyPublicKeysInKeyGroup,
15284
16077
  ImportSourceType,
15285
- EntityAlreadyExists,
15286
- EntityLimitExceeded,
15287
16078
  EntitySizeLimitExceeded,
15288
16079
  RealtimeMetricsSubscriptionStatus,
15289
16080
  MonitoringSubscriptionAlreadyExists,
@@ -15337,7 +16128,6 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
15337
16128
  NoSuchFunctionExists,
15338
16129
  NoSuchResource,
15339
16130
  ResourceInUse,
15340
- EntityNotFound,
15341
16131
  NoSuchMonitoringSubscription,
15342
16132
  NoSuchOriginAccessControl,
15343
16133
  OriginAccessControlInUse,
@@ -15357,6 +16147,7 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
15357
16147
  DistributionSummaryFilterSensitiveLog,
15358
16148
  DistributionListFilterSensitiveLog,
15359
16149
  ListDistributionsResultFilterSensitiveLog,
16150
+ ListDistributionsByAnycastIpListIdResultFilterSensitiveLog,
15360
16151
  ListDistributionsByRealtimeLogConfigResultFilterSensitiveLog,
15361
16152
  ListDistributionsByWebACLIdResultFilterSensitiveLog,
15362
16153
  TestFunctionRequestFilterSensitiveLog,