@aws-sdk/client-cloudfront 3.936.0 → 3.939.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 (118) hide show
  1. package/README.md +120 -0
  2. package/dist-cjs/index.js +1018 -69
  3. package/dist-es/CloudFront.js +30 -0
  4. package/dist-es/commands/CreateConnectionFunctionCommand.js +16 -0
  5. package/dist-es/commands/CreateTrustStoreCommand.js +16 -0
  6. package/dist-es/commands/DeleteConnectionFunctionCommand.js +16 -0
  7. package/dist-es/commands/DeleteTrustStoreCommand.js +16 -0
  8. package/dist-es/commands/DescribeConnectionFunctionCommand.js +16 -0
  9. package/dist-es/commands/GetConnectionFunctionCommand.js +16 -0
  10. package/dist-es/commands/GetTrustStoreCommand.js +16 -0
  11. package/dist-es/commands/ListConnectionFunctionsCommand.js +16 -0
  12. package/dist-es/commands/ListDistributionsByConnectionFunctionCommand.js +16 -0
  13. package/dist-es/commands/ListDistributionsByTrustStoreCommand.js +16 -0
  14. package/dist-es/commands/ListTrustStoresCommand.js +16 -0
  15. package/dist-es/commands/PublishConnectionFunctionCommand.js +16 -0
  16. package/dist-es/commands/TestConnectionFunctionCommand.js +16 -0
  17. package/dist-es/commands/UpdateConnectionFunctionCommand.js +16 -0
  18. package/dist-es/commands/UpdateTrustStoreCommand.js +16 -0
  19. package/dist-es/commands/index.js +18 -3
  20. package/dist-es/models/enums.js +31 -8
  21. package/dist-es/models/errors.js +14 -14
  22. package/dist-es/pagination/ListConnectionFunctionsPaginator.js +4 -0
  23. package/dist-es/pagination/ListDistributionsByConnectionFunctionPaginator.js +4 -0
  24. package/dist-es/pagination/ListDistributionsByTrustStorePaginator.js +4 -0
  25. package/dist-es/pagination/ListTrustStoresPaginator.js +4 -0
  26. package/dist-es/pagination/index.js +4 -0
  27. package/dist-es/schemas/schemas_0.js +735 -34
  28. package/dist-types/CloudFront.d.ts +107 -0
  29. package/dist-types/CloudFrontClient.d.ts +17 -2
  30. package/dist-types/commands/CopyDistributionCommand.d.ts +11 -0
  31. package/dist-types/commands/CreateAnycastIpListCommand.d.ts +19 -0
  32. package/dist-types/commands/CreateConnectionFunctionCommand.d.ts +138 -0
  33. package/dist-types/commands/CreateDistributionCommand.d.ts +22 -0
  34. package/dist-types/commands/CreateDistributionWithTagsCommand.d.ts +22 -0
  35. package/dist-types/commands/CreateTrustStoreCommand.d.ts +117 -0
  36. package/dist-types/commands/DeleteConnectionFunctionCommand.d.ts +94 -0
  37. package/dist-types/commands/DeleteTrustStoreCommand.d.ts +91 -0
  38. package/dist-types/commands/DescribeConnectionFunctionCommand.d.ts +108 -0
  39. package/dist-types/commands/GetAnycastIpListCommand.d.ts +11 -0
  40. package/dist-types/commands/GetConnectionFunctionCommand.d.ts +93 -0
  41. package/dist-types/commands/GetDistributionCommand.d.ts +11 -0
  42. package/dist-types/commands/GetDistributionConfigCommand.d.ts +11 -0
  43. package/dist-types/commands/GetManagedCertificateDetailsCommand.d.ts +2 -1
  44. package/dist-types/commands/GetMonitoringSubscriptionCommand.d.ts +1 -1
  45. package/dist-types/commands/GetOriginAccessControlCommand.d.ts +1 -1
  46. package/dist-types/commands/GetOriginAccessControlConfigCommand.d.ts +1 -1
  47. package/dist-types/commands/GetOriginRequestPolicyCommand.d.ts +1 -1
  48. package/dist-types/commands/GetOriginRequestPolicyConfigCommand.d.ts +1 -1
  49. package/dist-types/commands/GetPublicKeyCommand.d.ts +1 -1
  50. package/dist-types/commands/GetPublicKeyConfigCommand.d.ts +1 -1
  51. package/dist-types/commands/GetRealtimeLogConfigCommand.d.ts +1 -1
  52. package/dist-types/commands/GetTrustStoreCommand.d.ts +92 -0
  53. package/dist-types/commands/ListAnycastIpListsCommand.d.ts +11 -0
  54. package/dist-types/commands/ListConnectionFunctionsCommand.d.ts +108 -0
  55. package/dist-types/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +11 -0
  56. package/dist-types/commands/ListDistributionsByConnectionFunctionCommand.d.ts +412 -0
  57. package/dist-types/commands/ListDistributionsByConnectionModeCommand.d.ts +11 -0
  58. package/dist-types/commands/ListDistributionsByRealtimeLogConfigCommand.d.ts +11 -0
  59. package/dist-types/commands/ListDistributionsByTrustStoreCommand.d.ts +412 -0
  60. package/dist-types/commands/ListDistributionsByWebACLIdCommand.d.ts +11 -0
  61. package/dist-types/commands/ListDistributionsCommand.d.ts +11 -0
  62. package/dist-types/commands/ListTrustStoresCommand.d.ts +96 -0
  63. package/dist-types/commands/PublishConnectionFunctionCommand.d.ts +113 -0
  64. package/dist-types/commands/TestConnectionFunctionCommand.d.ts +123 -0
  65. package/dist-types/commands/UpdateAnycastIpListCommand.d.ts +11 -0
  66. package/dist-types/commands/UpdateConnectionFunctionCommand.d.ts +130 -0
  67. package/dist-types/commands/UpdateDistributionCommand.d.ts +22 -0
  68. package/dist-types/commands/UpdateDistributionWithStagingConfigCommand.d.ts +11 -0
  69. package/dist-types/commands/UpdateTrustStoreCommand.d.ts +107 -0
  70. package/dist-types/commands/index.d.ts +18 -3
  71. package/dist-types/models/enums.d.ts +71 -24
  72. package/dist-types/models/errors.d.ts +13 -13
  73. package/dist-types/models/models_0.d.ts +498 -314
  74. package/dist-types/models/models_1.d.ts +627 -3
  75. package/dist-types/pagination/ListConnectionFunctionsPaginator.d.ts +7 -0
  76. package/dist-types/pagination/ListDistributionsByConnectionFunctionPaginator.d.ts +7 -0
  77. package/dist-types/pagination/ListDistributionsByTrustStorePaginator.d.ts +7 -0
  78. package/dist-types/pagination/ListTrustStoresPaginator.d.ts +7 -0
  79. package/dist-types/pagination/index.d.ts +4 -0
  80. package/dist-types/schemas/schemas_0.d.ts +57 -0
  81. package/dist-types/ts3.4/CloudFront.d.ts +263 -0
  82. package/dist-types/ts3.4/CloudFrontClient.d.ts +90 -0
  83. package/dist-types/ts3.4/commands/CreateConnectionFunctionCommand.d.ts +51 -0
  84. package/dist-types/ts3.4/commands/CreateTrustStoreCommand.d.ts +50 -0
  85. package/dist-types/ts3.4/commands/DeleteConnectionFunctionCommand.d.ts +47 -0
  86. package/dist-types/ts3.4/commands/DeleteTrustStoreCommand.d.ts +45 -0
  87. package/dist-types/ts3.4/commands/DescribeConnectionFunctionCommand.d.ts +51 -0
  88. package/dist-types/ts3.4/commands/GetConnectionFunctionCommand.d.ts +58 -0
  89. package/dist-types/ts3.4/commands/GetManagedCertificateDetailsCommand.d.ts +2 -4
  90. package/dist-types/ts3.4/commands/GetMonitoringSubscriptionCommand.d.ts +1 -1
  91. package/dist-types/ts3.4/commands/GetOriginAccessControlCommand.d.ts +1 -1
  92. package/dist-types/ts3.4/commands/GetOriginAccessControlConfigCommand.d.ts +1 -1
  93. package/dist-types/ts3.4/commands/GetOriginRequestPolicyCommand.d.ts +1 -1
  94. package/dist-types/ts3.4/commands/GetOriginRequestPolicyConfigCommand.d.ts +1 -1
  95. package/dist-types/ts3.4/commands/GetPublicKeyCommand.d.ts +1 -1
  96. package/dist-types/ts3.4/commands/GetPublicKeyConfigCommand.d.ts +1 -1
  97. package/dist-types/ts3.4/commands/GetRealtimeLogConfigCommand.d.ts +1 -1
  98. package/dist-types/ts3.4/commands/GetTrustStoreCommand.d.ts +47 -0
  99. package/dist-types/ts3.4/commands/ListConnectionFunctionsCommand.d.ts +51 -0
  100. package/dist-types/ts3.4/commands/ListDistributionsByConnectionFunctionCommand.d.ts +51 -0
  101. package/dist-types/ts3.4/commands/ListDistributionsByTrustStoreCommand.d.ts +51 -0
  102. package/dist-types/ts3.4/commands/ListTrustStoresCommand.d.ts +50 -0
  103. package/dist-types/ts3.4/commands/PublishConnectionFunctionCommand.d.ts +51 -0
  104. package/dist-types/ts3.4/commands/TestConnectionFunctionCommand.d.ts +51 -0
  105. package/dist-types/ts3.4/commands/UpdateConnectionFunctionCommand.d.ts +51 -0
  106. package/dist-types/ts3.4/commands/UpdateTrustStoreCommand.d.ts +50 -0
  107. package/dist-types/ts3.4/commands/index.d.ts +18 -3
  108. package/dist-types/ts3.4/models/enums.d.ts +40 -11
  109. package/dist-types/ts3.4/models/errors.d.ts +8 -8
  110. package/dist-types/ts3.4/models/models_0.d.ts +131 -82
  111. package/dist-types/ts3.4/models/models_1.d.ts +172 -0
  112. package/dist-types/ts3.4/pagination/ListConnectionFunctionsPaginator.d.ts +11 -0
  113. package/dist-types/ts3.4/pagination/ListDistributionsByConnectionFunctionPaginator.d.ts +11 -0
  114. package/dist-types/ts3.4/pagination/ListDistributionsByTrustStorePaginator.d.ts +11 -0
  115. package/dist-types/ts3.4/pagination/ListTrustStoresPaginator.d.ts +11 -0
  116. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  117. package/dist-types/ts3.4/schemas/schemas_0.d.ts +57 -0
  118. package/package.json +2 -2
@@ -38,6 +38,7 @@ const _AM = "AllowedMethods";
38
38
  const _ARN = "ARN";
39
39
  const _ATKG = "ActiveTrustedKeyGroups";
40
40
  const _ATS = "ActiveTrustedSigners";
41
+ const _ATSCN = "AdvertiseTrustStoreCaNames";
41
42
  const _Ac = "Action";
42
43
  const _Al = "Alias";
43
44
  const _Ar = "Arn";
@@ -57,12 +58,17 @@ const _CBL = "CacheBehaviorList";
57
58
  const _CBa = "CacheBehaviors";
58
59
  const _CBo = "CookieBehavior";
59
60
  const _CC = "CookiesConfig";
61
+ const _CCBS = "CaCertificatesBundleSource";
62
+ const _CCBSL = "CaCertificatesBundleS3Location";
60
63
  const _CCDP = "CreateContinuousDeploymentPolicy";
61
64
  const _CCDPR = "CreateContinuousDeploymentPolicyRequest";
62
65
  const _CCDPRr = "CreateContinuousDeploymentPolicyResult";
66
+ const _CCF = "CreateConnectionFunction";
63
67
  const _CCFOAI = "CreateCloudFrontOriginAccessIdentity";
64
68
  const _CCFOAIR = "CreateCloudFrontOriginAccessIdentityRequest";
65
69
  const _CCFOAIRr = "CreateCloudFrontOriginAccessIdentityResult";
70
+ const _CCFR = "CreateConnectionFunctionRequest";
71
+ const _CCFRr = "CreateConnectionFunctionResult";
66
72
  const _CCG = "CreateConnectionGroup";
67
73
  const _CCGR = "CreateConnectionGroupRequest";
68
74
  const _CCGRr = "CreateConnectionGroupResult";
@@ -97,14 +103,22 @@ const _CDr = "CreateDistribution";
97
103
  const _CER = "CustomErrorResponse";
98
104
  const _CERL = "CustomErrorResponseList";
99
105
  const _CERu = "CustomErrorResponses";
100
- const _CF = "CreateFunction";
106
+ const _CF = "ConnectionFunctions";
107
+ const _CFA = "ConnectionFunctionAssociation";
108
+ const _CFAo = "ConnectionFunctionArn";
109
+ const _CFC = "ConnectionFunctionConfig";
110
+ const _CFCo = "ConnectionFunctionCode";
101
111
  const _CFDC = "CloudFrontDefaultCertificate";
112
+ const _CFEL = "ConnectionFunctionExecutionLogs";
113
+ const _CFEM = "ConnectionFunctionErrorMessage";
114
+ const _CFI = "ConnectionFunctionIdentifier";
102
115
  const _CFLEC = "CreateFieldLevelEncryptionConfig";
103
116
  const _CFLECR = "CreateFieldLevelEncryptionConfigRequest";
104
117
  const _CFLECRr = "CreateFieldLevelEncryptionConfigResult";
105
118
  const _CFLEP = "CreateFieldLevelEncryptionProfile";
106
119
  const _CFLEPR = "CreateFieldLevelEncryptionProfileRequest";
107
120
  const _CFLEPRr = "CreateFieldLevelEncryptionProfileResult";
121
+ const _CFO = "ConnectionFunctionOutput";
108
122
  const _CFOAI = "CloudFrontOriginAccessIdentity";
109
123
  const _CFOAIAE = "CloudFrontOriginAccessIdentityAlreadyExists";
110
124
  const _CFOAIC = "CloudFrontOriginAccessIdentityConfig";
@@ -114,6 +128,10 @@ const _CFOAIS = "CloudFrontOriginAccessIdentitySummary";
114
128
  const _CFOAISL = "CloudFrontOriginAccessIdentitySummaryList";
115
129
  const _CFR = "CreateFunctionRequest";
116
130
  const _CFRr = "CreateFunctionResult";
131
+ const _CFS = "ConnectionFunctionSummary";
132
+ const _CFSL = "ConnectionFunctionSummaryList";
133
+ const _CFTR = "ConnectionFunctionTestResult";
134
+ const _CFr = "CreateFunction";
117
135
  const _CG = "ConnectionGroup";
118
136
  const _CGAF = "ConnectionGroupAssociationFilter";
119
137
  const _CGI = "ConnectionGroupId";
@@ -143,6 +161,7 @@ const _CN = "CookieNames";
143
161
  const _CNAME = "CNAME";
144
162
  const _CNAMEAE = "CNAMEAlreadyExists";
145
163
  const _CNL = "CookieNameList";
164
+ const _CO = "ConnectionObject";
146
165
  const _COAC = "CreateOriginAccessControl";
147
166
  const _COACR = "CreateOriginAccessControlRequest";
148
167
  const _COACRr = "CreateOriginAccessControlResult";
@@ -188,6 +207,9 @@ const _CTP = "ContentTypeProfile";
188
207
  const _CTPC = "ContentTypeProfileConfig";
189
208
  const _CTPL = "ContentTypeProfileList";
190
209
  const _CTPo = "ContentTypeProfiles";
210
+ const _CTS = "CreateTrustStore";
211
+ const _CTSR = "CreateTrustStoreRequest";
212
+ const _CTSRr = "CreateTrustStoreResult";
191
213
  const _CT_ = "Content-Type";
192
214
  const _CTo = "ContentType";
193
215
  const _CTon = "ConnectionTimeout";
@@ -199,6 +221,7 @@ const _CVO = "CreateVpcOrigin";
199
221
  const _CVOR = "CreateVpcOriginRequest";
200
222
  const _CVORr = "CreateVpcOriginResult";
201
223
  const _Ce = "Certificate";
224
+ const _Ci = "Cidr";
202
225
  const _Co = "Comment";
203
226
  const _Coo = "Cookies";
204
227
  const _Cu = "Customizations";
@@ -210,8 +233,13 @@ const _DC = "DistributionConfig";
210
233
  const _DCB = "DefaultCacheBehavior";
211
234
  const _DCDP = "DeleteContinuousDeploymentPolicy";
212
235
  const _DCDPR = "DeleteContinuousDeploymentPolicyRequest";
236
+ const _DCF = "DeleteConnectionFunction";
213
237
  const _DCFOAI = "DeleteCloudFrontOriginAccessIdentity";
214
238
  const _DCFOAIR = "DeleteCloudFrontOriginAccessIdentityRequest";
239
+ const _DCFR = "DeleteConnectionFunctionRequest";
240
+ const _DCFRe = "DescribeConnectionFunctionRequest";
241
+ const _DCFRes = "DescribeConnectionFunctionResult";
242
+ const _DCFe = "DescribeConnectionFunction";
215
243
  const _DCG = "DeleteConnectionGroup";
216
244
  const _DCGR = "DeleteConnectionGroupRequest";
217
245
  const _DCL = "DnsConfigurationList";
@@ -289,6 +317,8 @@ const _DTAF = "DistributionTenantAssociationFilter";
289
317
  const _DTI = "DistributionTenantId";
290
318
  const _DTL = "DistributionTenantList";
291
319
  const _DTS = "DistributionTenantSummary";
320
+ const _DTSR = "DeleteTrustStoreRequest";
321
+ const _DTSe = "DeleteTrustStore";
292
322
  const _DTTL = "DefaultTTL";
293
323
  const _DV = "DefaultValue";
294
324
  const _DVO = "DeleteVpcOrigin";
@@ -377,12 +407,15 @@ const _GCDPCR = "GetContinuousDeploymentPolicyConfigRequest";
377
407
  const _GCDPCRe = "GetContinuousDeploymentPolicyConfigResult";
378
408
  const _GCDPR = "GetContinuousDeploymentPolicyRequest";
379
409
  const _GCDPRe = "GetContinuousDeploymentPolicyResult";
410
+ const _GCF = "GetConnectionFunction";
380
411
  const _GCFOAI = "GetCloudFrontOriginAccessIdentity";
381
412
  const _GCFOAIC = "GetCloudFrontOriginAccessIdentityConfig";
382
413
  const _GCFOAICR = "GetCloudFrontOriginAccessIdentityConfigRequest";
383
414
  const _GCFOAICRe = "GetCloudFrontOriginAccessIdentityConfigResult";
384
415
  const _GCFOAIR = "GetCloudFrontOriginAccessIdentityRequest";
385
416
  const _GCFOAIRe = "GetCloudFrontOriginAccessIdentityResult";
417
+ const _GCFR = "GetConnectionFunctionRequest";
418
+ const _GCFRe = "GetConnectionFunctionResult";
386
419
  const _GCG = "GetConnectionGroup";
387
420
  const _GCGBRE = "GetConnectionGroupByRoutingEndpoint";
388
421
  const _GCGBRER = "GetConnectionGroupByRoutingEndpointRequest";
@@ -479,6 +512,9 @@ const _GSDCR = "GetStreamingDistributionConfigRequest";
479
512
  const _GSDCRe = "GetStreamingDistributionConfigResult";
480
513
  const _GSDR = "GetStreamingDistributionRequest";
481
514
  const _GSDRe = "GetStreamingDistributionResult";
515
+ const _GTS = "GetTrustStore";
516
+ const _GTSR = "GetTrustStoreRequest";
517
+ const _GTSRe = "GetTrustStoreResult";
482
518
  const _GVO = "GetVpcOrigin";
483
519
  const _GVOR = "GetVpcOriginRequest";
484
520
  const _GVORe = "GetVpcOriginResult";
@@ -499,9 +535,14 @@ const _IAT = "IpAddressType";
499
535
  const _IAn = "InvalidAssociation";
500
536
  const _IB = "InvalidationBatch";
501
537
  const _IBn = "IncludeBody";
502
- const _IC = "IpCount";
538
+ const _IC = "IpamConfig";
539
+ const _ICC = "IpamCidrConfigs";
540
+ const _ICCL = "IpamCidrConfigList";
541
+ const _ICCp = "IpamCidrConfig";
542
+ const _ICE = "IgnoreCertificateExpiry";
503
543
  const _ICPRS = "ICPRecordalStatus";
504
544
  const _ICn = "IncludeCookies";
545
+ const _ICp = "IpCount";
505
546
  const _ID = "IsDefault";
506
547
  const _IDNFOAC = "InvalidDomainNameForOriginAccessControl";
507
548
  const _IDRO = "InvalidDefaultRootObject";
@@ -527,6 +568,7 @@ const _IOACn = "InvalidOriginAccessControl";
527
568
  const _IOAI = "InvalidOriginAccessIdentity";
528
569
  const _IOKT = "InvalidOriginKeepaliveTimeout";
529
570
  const _IORT = "InvalidOriginReadTimeout";
571
+ const _IPA = "IpamPoolArn";
530
572
  const _IPIB = "InProgressInvalidationBatches";
531
573
  const _IPS = "InvalidProtocolSettings";
532
574
  const _IQ = "InconsistentQuantities";
@@ -580,9 +622,12 @@ const _LCARi = "ListConflictingAliasesResult";
580
622
  const _LCDP = "ListContinuousDeploymentPolicies";
581
623
  const _LCDPR = "ListContinuousDeploymentPoliciesRequest";
582
624
  const _LCDPRi = "ListContinuousDeploymentPoliciesResult";
625
+ const _LCF = "ListConnectionFunctions";
583
626
  const _LCFOAI = "ListCloudFrontOriginAccessIdentities";
584
627
  const _LCFOAIR = "ListCloudFrontOriginAccessIdentitiesRequest";
585
628
  const _LCFOAIRi = "ListCloudFrontOriginAccessIdentitiesResult";
629
+ const _LCFR = "ListConnectionFunctionsRequest";
630
+ const _LCFRi = "ListConnectionFunctionsResult";
586
631
  const _LCG = "ListConnectionGroups";
587
632
  const _LCGR = "ListConnectionGroupsRequest";
588
633
  const _LCGRi = "ListConnectionGroupsResult";
@@ -593,6 +638,9 @@ const _LD = "ListDistributions";
593
638
  const _LDBAILI = "ListDistributionsByAnycastIpListId";
594
639
  const _LDBAILIR = "ListDistributionsByAnycastIpListIdRequest";
595
640
  const _LDBAILIRi = "ListDistributionsByAnycastIpListIdResult";
641
+ const _LDBCF = "ListDistributionsByConnectionFunction";
642
+ const _LDBCFR = "ListDistributionsByConnectionFunctionRequest";
643
+ const _LDBCFRi = "ListDistributionsByConnectionFunctionResult";
596
644
  const _LDBCM = "ListDistributionsByConnectionMode";
597
645
  const _LDBCMR = "ListDistributionsByConnectionModeRequest";
598
646
  const _LDBCMRi = "ListDistributionsByConnectionModeResult";
@@ -614,6 +662,9 @@ const _LDBRHPIRi = "ListDistributionsByResponseHeadersPolicyIdResult";
614
662
  const _LDBRLC = "ListDistributionsByRealtimeLogConfig";
615
663
  const _LDBRLCR = "ListDistributionsByRealtimeLogConfigRequest";
616
664
  const _LDBRLCRi = "ListDistributionsByRealtimeLogConfigResult";
665
+ const _LDBTS = "ListDistributionsByTrustStore";
666
+ const _LDBTSR = "ListDistributionsByTrustStoreRequest";
667
+ const _LDBTSRi = "ListDistributionsByTrustStoreResult";
617
668
  const _LDBVOI = "ListDistributionsByVpcOriginId";
618
669
  const _LDBVOIR = "ListDistributionsByVpcOriginIdRequest";
619
670
  const _LDBVOIRi = "ListDistributionsByVpcOriginIdResult";
@@ -679,6 +730,9 @@ const _LSDRi = "ListStreamingDistributionsResult";
679
730
  const _LTFR = "ListTagsForResource";
680
731
  const _LTFRR = "ListTagsForResourceRequest";
681
732
  const _LTFRRi = "ListTagsForResourceResult";
733
+ const _LTS = "ListTrustStores";
734
+ const _LTSR = "ListTrustStoresRequest";
735
+ const _LTSRi = "ListTrustStoresResult";
682
736
  const _LVO = "ListVpcOrigins";
683
737
  const _LVOR = "ListVpcOriginsRequest";
684
738
  const _LVORi = "ListVpcOriginsResult";
@@ -700,8 +754,10 @@ const _MTTLax = "MaximumTTL";
700
754
  const _Ma = "Marker";
701
755
  const _Me = "Members";
702
756
  const _Met = "Method";
757
+ const _Mo = "Mode";
703
758
  const _N = "Name";
704
759
  const _NM = "NextMarker";
760
+ const _NOCC = "NumberOfCaCertificates";
705
761
  const _NSCDP = "NoSuchContinuousDeploymentPolicy";
706
762
  const _NSCFOAI = "NoSuchCloudFrontOriginAccessIdentity";
707
763
  const _NSCP = "NoSuchCachePolicy";
@@ -766,6 +822,9 @@ const _Or = "Origin";
766
822
  const _Ov = "Override";
767
823
  const _P = "Parameters";
768
824
  const _PC = "PriceClass";
825
+ const _PCF = "PublishConnectionFunction";
826
+ const _PCFR = "PublishConnectionFunctionRequest";
827
+ const _PCFRu = "PublishConnectionFunctionResult";
769
828
  const _PD = "PolicyDocument";
770
829
  const _PDI = "PrimaryDistributionId";
771
830
  const _PDN = "PrimaryDomainName";
@@ -814,7 +873,7 @@ const _QSCKL = "QueryStringCacheKeysList";
814
873
  const _QSN = "QueryStringNames";
815
874
  const _QSNL = "QueryStringNamesList";
816
875
  const _QSu = "QueryString";
817
- const _R = "Restrictions";
876
+ const _R = "Region";
818
877
  const _RA = "ResourceArn";
819
878
  const _RARN = "RoleARN";
820
879
  const _RC = "ResponseCode";
@@ -868,7 +927,8 @@ const _RT = "ResourceType";
868
927
  const _RTe = "RestrictionType";
869
928
  const _RTed = "RedirectTo";
870
929
  const _RU = "ReportUri";
871
- const _Re = "Reason";
930
+ const _Re = "Restrictions";
931
+ const _Rea = "Reason";
872
932
  const _Req = "Required";
873
933
  const _Res = "Resource";
874
934
  const _Ru = "Runtime";
@@ -914,10 +974,13 @@ const _STS = "StrictTransportSecurity";
914
974
  const _STo = "SourceType";
915
975
  const _SWC = "SingleWeightConfig";
916
976
  const _Si = "Signer";
917
- const _St = "Staging";
918
- const _Sta = "Stage";
977
+ const _St = "Stage";
978
+ const _Sta = "Staging";
919
979
  const _T = "Type";
920
980
  const _TC = "TrafficConfig";
981
+ const _TCF = "TestConnectionFunction";
982
+ const _TCFR = "TestConnectionFunctionRequest";
983
+ const _TCFRe = "TestConnectionFunctionResult";
921
984
  const _TCe = "TenantConfig";
922
985
  const _TDI = "TargetDistributionId";
923
986
  const _TF = "TestFunction";
@@ -988,7 +1051,13 @@ const _TRR = "TagResourceRequest";
988
1051
  const _TRa = "TargetResource";
989
1052
  const _TRag = "TagResource";
990
1053
  const _TS = "TrustedSigners";
1054
+ const _TSC = "TrustStoreConfig";
991
1055
  const _TSDNE = "TrustedSignerDoesNotExist";
1056
+ const _TSI = "TrustStoreIdentifier";
1057
+ const _TSIr = "TrustStoreId";
1058
+ const _TSL = "TrustStoreList";
1059
+ const _TSS = "TrustStoreSummary";
1060
+ const _TSr = "TrustStore";
992
1061
  const _Ta = "Tags";
993
1062
  const _Tag = "Tag";
994
1063
  const _UAIL = "UpdateAnycastIpList";
@@ -997,9 +1066,12 @@ const _UAILRp = "UpdateAnycastIpListResult";
997
1066
  const _UCDP = "UpdateContinuousDeploymentPolicy";
998
1067
  const _UCDPR = "UpdateContinuousDeploymentPolicyRequest";
999
1068
  const _UCDPRp = "UpdateContinuousDeploymentPolicyResult";
1069
+ const _UCF = "UpdateConnectionFunction";
1000
1070
  const _UCFOAI = "UpdateCloudFrontOriginAccessIdentity";
1001
1071
  const _UCFOAIR = "UpdateCloudFrontOriginAccessIdentityRequest";
1002
1072
  const _UCFOAIRp = "UpdateCloudFrontOriginAccessIdentityResult";
1073
+ const _UCFR = "UpdateConnectionFunctionRequest";
1074
+ const _UCFRp = "UpdateConnectionFunctionResult";
1003
1075
  const _UCG = "UpdateConnectionGroup";
1004
1076
  const _UCGR = "UpdateConnectionGroupRequest";
1005
1077
  const _UCGRp = "UpdateConnectionGroupResult";
@@ -1054,14 +1126,18 @@ const _URR = "UntagResourceRequest";
1054
1126
  const _USD = "UpdateStreamingDistribution";
1055
1127
  const _USDR = "UpdateStreamingDistributionRequest";
1056
1128
  const _USDRp = "UpdateStreamingDistributionResult";
1129
+ const _UTS = "UpdateTrustStore";
1130
+ const _UTSR = "UpdateTrustStoreRequest";
1131
+ const _UTSRp = "UpdateTrustStoreResult";
1057
1132
  const _UVO = "UpdateVpcOrigin";
1058
1133
  const _UVOR = "UpdateVpcOriginRequest";
1059
1134
  const _UVORp = "UpdateVpcOriginResult";
1060
- const _V = "Value";
1135
+ const _V = "Version";
1061
1136
  const _VC = "ViewerCertificate";
1062
1137
  const _VDC = "VerifyDnsConfiguration";
1063
1138
  const _VDCR = "VerifyDnsConfigurationRequest";
1064
1139
  const _VDCRe = "VerifyDnsConfigurationResult";
1140
+ const _VMC = "ViewerMtlsConfig";
1065
1141
  const _VO = "VpcOrigin";
1066
1142
  const _VOC = "VpcOriginConfig";
1067
1143
  const _VOEC = "VpcOriginEndpointConfig";
@@ -1074,6 +1150,7 @@ const _VTD = "ValidationTokenDetails";
1074
1150
  const _VTDL = "ValidationTokenDetailList";
1075
1151
  const _VTDa = "ValidationTokenDetail";
1076
1152
  const _VTH = "ValidationTokenHost";
1153
+ const _Va = "Value";
1077
1154
  const _W = "Weight";
1078
1155
  const _WA = "WebAcl";
1079
1156
  const _WAC = "WebAclCustomization";
@@ -1137,8 +1214,8 @@ export var AnycastIpList = [
1137
1214
  n0,
1138
1215
  _AIL,
1139
1216
  0,
1140
- [_Id, _N, _S, _Ar, _IAT, _AI, _IC, _LMT],
1141
- [0, 0, 0, 0, 0, [() => AnycastIps, 0], 1, 4],
1217
+ [_Id, _N, _S, _Ar, _IAT, _IC, _AI, _ICp, _LMT],
1218
+ [0, 0, 0, 0, 0, [() => IpamConfig, 0], [() => AnycastIps, 0], 1, 4],
1142
1219
  ];
1143
1220
  export var AnycastIpListCollection = [
1144
1221
  3,
@@ -1153,8 +1230,8 @@ export var AnycastIpListSummary = [
1153
1230
  n0,
1154
1231
  _AILS,
1155
1232
  0,
1156
- [_Id, _N, _S, _Ar, _IC, _LMT, _IAT, _ET],
1157
- [0, 0, 0, 0, 1, 4, 0, 0],
1233
+ [_Id, _N, _S, _Ar, _ICp, _LMT, _IAT, _ET, _IC],
1234
+ [0, 0, 0, 0, 1, 4, 0, 0, [() => IpamConfig, 0]],
1158
1235
  ];
1159
1236
  export var AssociateAliasRequest = [
1160
1237
  3,
@@ -1252,6 +1329,7 @@ export var BatchTooLarge = [
1252
1329
  [0],
1253
1330
  ];
1254
1331
  TypeRegistry.for(n0).registerError(BatchTooLarge, __BatchTooLarge);
1332
+ export var CaCertificatesBundleS3Location = [3, n0, _CCBSL, 0, [_B, _K, _R, _V], [0, 0, 0, 0]];
1255
1333
  export var CacheBehavior = [
1256
1334
  3,
1257
1335
  n0,
@@ -1477,6 +1555,29 @@ export var ConflictingAliasesList = [
1477
1555
  [_NM, _MI, _Q, _I],
1478
1556
  [0, 1, 1, [() => ConflictingAliases, 0]],
1479
1557
  ];
1558
+ export var ConnectionFunctionAssociation = [3, n0, _CFA, 0, [_Id], [0]];
1559
+ export var ConnectionFunctionSummary = [
1560
+ 3,
1561
+ n0,
1562
+ _CFS,
1563
+ 0,
1564
+ [_N, _Id, _CFC, _CFAo, _S, _St, _CTr, _LMT],
1565
+ [0, 0, [() => FunctionConfig, 0], 0, 0, 0, 4, 4],
1566
+ ];
1567
+ export var ConnectionFunctionTestResult = [
1568
+ 3,
1569
+ n0,
1570
+ _CFTR,
1571
+ 0,
1572
+ [_CFS, _CU, _CFEL, _CFEM, _CFO],
1573
+ [
1574
+ [() => ConnectionFunctionSummary, 0],
1575
+ 0,
1576
+ [() => FunctionExecutionLogList, 0],
1577
+ [() => sensitiveStringType, 0],
1578
+ [() => sensitiveStringType, 0],
1579
+ ],
1580
+ ];
1480
1581
  export var ConnectionGroup = [
1481
1582
  3,
1482
1583
  n0,
@@ -1567,7 +1668,7 @@ export var ContinuousDeploymentPolicySummary = [
1567
1668
  [_CDP],
1568
1669
  [[() => ContinuousDeploymentPolicy, 0]],
1569
1670
  ];
1570
- export var ContinuousDeploymentSingleHeaderConfig = [3, n0, _CDSHC, 0, [_He, _V], [0, 0]];
1671
+ export var ContinuousDeploymentSingleHeaderConfig = [3, n0, _CDSHC, 0, [_He, _Va], [0, 0]];
1571
1672
  export var ContinuousDeploymentSingleWeightConfig = [
1572
1673
  3,
1573
1674
  n0,
@@ -1583,13 +1684,13 @@ export var CopyDistributionRequest = [
1583
1684
  n0,
1584
1685
  _CDR,
1585
1686
  0,
1586
- [_PDI, _St, _IM, _CR, _E],
1687
+ [_PDI, _Sta, _IM, _CR, _E],
1587
1688
  [
1588
1689
  [0, 1],
1589
1690
  [
1590
1691
  2,
1591
1692
  {
1592
- [_hH]: _St,
1693
+ [_hH]: _Sta,
1593
1694
  },
1594
1695
  ],
1595
1696
  [
@@ -1629,8 +1730,8 @@ export var CreateAnycastIpListRequest = [
1629
1730
  n0,
1630
1731
  _CAILR,
1631
1732
  0,
1632
- [_N, _IC, _Ta, _IAT],
1633
- [0, 1, [() => Tags, 0], 0],
1733
+ [_N, _ICp, _Ta, _IAT, _ICC],
1734
+ [0, 1, [() => Tags, 0], 0, [() => IpamCidrConfigList, 0]],
1634
1735
  ];
1635
1736
  export var CreateAnycastIpListResult = [
1636
1737
  3,
@@ -1724,6 +1825,36 @@ export var CreateCloudFrontOriginAccessIdentityResult = [
1724
1825
  ],
1725
1826
  ],
1726
1827
  ];
1828
+ export var CreateConnectionFunctionRequest = [
1829
+ 3,
1830
+ n0,
1831
+ _CCFR,
1832
+ 0,
1833
+ [_N, _CFC, _CFCo, _Ta],
1834
+ [0, [() => FunctionConfig, 0], [() => FunctionBlob, 0], [() => Tags, 0]],
1835
+ ];
1836
+ export var CreateConnectionFunctionResult = [
1837
+ 3,
1838
+ n0,
1839
+ _CCFRr,
1840
+ 0,
1841
+ [_CFS, _L, _ET],
1842
+ [
1843
+ [() => ConnectionFunctionSummary, 16],
1844
+ [
1845
+ 0,
1846
+ {
1847
+ [_hH]: _L,
1848
+ },
1849
+ ],
1850
+ [
1851
+ 0,
1852
+ {
1853
+ [_hH]: _ET,
1854
+ },
1855
+ ],
1856
+ ],
1857
+ ];
1727
1858
  export var CreateConnectionGroupRequest = [
1728
1859
  3,
1729
1860
  n0,
@@ -2405,6 +2536,30 @@ export var CreateStreamingDistributionWithTagsResult = [
2405
2536
  ],
2406
2537
  ],
2407
2538
  ];
2539
+ export var CreateTrustStoreRequest = [
2540
+ 3,
2541
+ n0,
2542
+ _CTSR,
2543
+ 0,
2544
+ [_N, _CCBS, _Ta],
2545
+ [0, () => CaCertificatesBundleSource, [() => Tags, 0]],
2546
+ ];
2547
+ export var CreateTrustStoreResult = [
2548
+ 3,
2549
+ n0,
2550
+ _CTSRr,
2551
+ 0,
2552
+ [_TSr, _ET],
2553
+ [
2554
+ [() => TrustStore, 16],
2555
+ [
2556
+ 0,
2557
+ {
2558
+ [_hH]: _ET,
2559
+ },
2560
+ ],
2561
+ ],
2562
+ ];
2408
2563
  export var CreateVpcOriginRequest = [
2409
2564
  3,
2410
2565
  n0,
@@ -2540,6 +2695,22 @@ export var DeleteCloudFrontOriginAccessIdentityRequest = [
2540
2695
  ],
2541
2696
  ],
2542
2697
  ];
2698
+ export var DeleteConnectionFunctionRequest = [
2699
+ 3,
2700
+ n0,
2701
+ _DCFR,
2702
+ 0,
2703
+ [_Id, _IM],
2704
+ [
2705
+ [0, 1],
2706
+ [
2707
+ 0,
2708
+ {
2709
+ [_hH]: _IM_,
2710
+ },
2711
+ ],
2712
+ ],
2713
+ ];
2543
2714
  export var DeleteConnectionGroupRequest = [
2544
2715
  3,
2545
2716
  n0,
@@ -2768,6 +2939,22 @@ export var DeleteStreamingDistributionRequest = [
2768
2939
  ],
2769
2940
  ],
2770
2941
  ];
2942
+ export var DeleteTrustStoreRequest = [
2943
+ 3,
2944
+ n0,
2945
+ _DTSR,
2946
+ 0,
2947
+ [_Id, _IM],
2948
+ [
2949
+ [0, 1],
2950
+ [
2951
+ 0,
2952
+ {
2953
+ [_hH]: _IM_,
2954
+ },
2955
+ ],
2956
+ ],
2957
+ ];
2771
2958
  export var DeleteVpcOriginRequest = [
2772
2959
  3,
2773
2960
  n0,
@@ -2800,18 +2987,50 @@ export var DeleteVpcOriginResult = [
2800
2987
  ],
2801
2988
  ],
2802
2989
  ];
2990
+ export var DescribeConnectionFunctionRequest = [
2991
+ 3,
2992
+ n0,
2993
+ _DCFRe,
2994
+ 0,
2995
+ [_Ide, _St],
2996
+ [
2997
+ [0, 1],
2998
+ [
2999
+ 0,
3000
+ {
3001
+ [_hQ]: _St,
3002
+ },
3003
+ ],
3004
+ ],
3005
+ ];
3006
+ export var DescribeConnectionFunctionResult = [
3007
+ 3,
3008
+ n0,
3009
+ _DCFRes,
3010
+ 0,
3011
+ [_CFS, _ET],
3012
+ [
3013
+ [() => ConnectionFunctionSummary, 16],
3014
+ [
3015
+ 0,
3016
+ {
3017
+ [_hH]: _ET,
3018
+ },
3019
+ ],
3020
+ ],
3021
+ ];
2803
3022
  export var DescribeFunctionRequest = [
2804
3023
  3,
2805
3024
  n0,
2806
3025
  _DFRe,
2807
3026
  0,
2808
- [_N, _Sta],
3027
+ [_N, _St],
2809
3028
  [
2810
3029
  [0, 1],
2811
3030
  [
2812
3031
  0,
2813
3032
  {
2814
- [_hQ]: _Sta,
3033
+ [_hQ]: _St,
2815
3034
  },
2816
3035
  ],
2817
3036
  ],
@@ -2963,15 +3182,17 @@ export var DistributionConfig = [
2963
3182
  _PC,
2964
3183
  _E,
2965
3184
  _VC,
2966
- _R,
3185
+ _Re,
2967
3186
  _WACLI,
2968
3187
  _HV,
2969
3188
  _IIPVE,
2970
3189
  _CDPI,
2971
- _St,
3190
+ _Sta,
2972
3191
  _AILI,
2973
3192
  _TCe,
2974
3193
  _CMo,
3194
+ _VMC,
3195
+ _CFA,
2975
3196
  ],
2976
3197
  [
2977
3198
  0,
@@ -2996,6 +3217,8 @@ export var DistributionConfig = [
2996
3217
  0,
2997
3218
  [() => TenantConfig, 0],
2998
3219
  0,
3220
+ () => ViewerMtlsConfig,
3221
+ () => ConnectionFunctionAssociation,
2999
3222
  ],
3000
3223
  ];
3001
3224
  export var DistributionConfigWithTags = [
@@ -3069,14 +3292,16 @@ export var DistributionSummary = [
3069
3292
  _PC,
3070
3293
  _E,
3071
3294
  _VC,
3072
- _R,
3295
+ _Re,
3073
3296
  _WACLI,
3074
3297
  _HV,
3075
3298
  _IIPVE,
3076
3299
  _AICPRl,
3077
- _St,
3300
+ _Sta,
3078
3301
  _CMo,
3079
3302
  _AILI,
3303
+ _VMC,
3304
+ _CFA,
3080
3305
  ],
3081
3306
  [
3082
3307
  0,
@@ -3103,6 +3328,8 @@ export var DistributionSummary = [
3103
3328
  2,
3104
3329
  0,
3105
3330
  0,
3331
+ () => ViewerMtlsConfig,
3332
+ () => ConnectionFunctionAssociation,
3106
3333
  ],
3107
3334
  ];
3108
3335
  export var DistributionTenant = [
@@ -3122,7 +3349,7 @@ export var DistributionTenantSummary = [
3122
3349
  [_Id, _DI, _N, _Ar, _Do, _CGI, _Cu, _CTr, _LMT, _ET, _E, _S],
3123
3350
  [0, 0, 0, 0, () => DomainResultList, 0, [() => Customizations, 0], 4, 4, 0, 2, 0],
3124
3351
  ];
3125
- export var DnsConfiguration = [3, n0, _DCn, 0, [_Dom, _S, _Re], [0, 0, 0]];
3352
+ export var DnsConfiguration = [3, n0, _DCn, 0, [_Dom, _S, _Rea], [0, 0, 0]];
3126
3353
  export var DomainConflict = [3, n0, _DCo, 0, [_Dom, _RT, _RI, _AIc], [0, 0, 0, 0]];
3127
3354
  export var DomainItem = [3, n0, _DIo, 0, [_Dom], [0]];
3128
3355
  export var DomainResult = [3, n0, _DR, 0, [_Dom, _S], [0, 0]];
@@ -3366,7 +3593,7 @@ export var FunctionList = [
3366
3593
  [_NM, _MI, _Q, _I],
3367
3594
  [0, 1, 1, [() => FunctionSummaryList, 0]],
3368
3595
  ];
3369
- export var FunctionMetadata = [3, n0, _FM, 0, [_FARN, _Sta, _CTr, _LMT], [0, 0, 4, 4]];
3596
+ export var FunctionMetadata = [3, n0, _FM, 0, [_FARN, _St, _CTr, _LMT], [0, 0, 4, 4]];
3370
3597
  export var FunctionSizeLimitExceeded = [
3371
3598
  -3,
3372
3599
  n0,
@@ -3488,6 +3715,44 @@ export var GetCloudFrontOriginAccessIdentityResult = [
3488
3715
  ],
3489
3716
  ],
3490
3717
  ];
3718
+ export var GetConnectionFunctionRequest = [
3719
+ 3,
3720
+ n0,
3721
+ _GCFR,
3722
+ 0,
3723
+ [_Ide, _St],
3724
+ [
3725
+ [0, 1],
3726
+ [
3727
+ 0,
3728
+ {
3729
+ [_hQ]: _St,
3730
+ },
3731
+ ],
3732
+ ],
3733
+ ];
3734
+ export var GetConnectionFunctionResult = [
3735
+ 3,
3736
+ n0,
3737
+ _GCFRe,
3738
+ 0,
3739
+ [_CFCo, _ET, _CTo],
3740
+ [
3741
+ [() => FunctionBlob, 16],
3742
+ [
3743
+ 0,
3744
+ {
3745
+ [_hH]: _ET,
3746
+ },
3747
+ ],
3748
+ [
3749
+ 0,
3750
+ {
3751
+ [_hH]: _CT_,
3752
+ },
3753
+ ],
3754
+ ],
3755
+ ];
3491
3756
  export var GetConnectionGroupByRoutingEndpointRequest = [
3492
3757
  3,
3493
3758
  n0,
@@ -3725,13 +3990,13 @@ export var GetFunctionRequest = [
3725
3990
  n0,
3726
3991
  _GFR,
3727
3992
  0,
3728
- [_N, _Sta],
3993
+ [_N, _St],
3729
3994
  [
3730
3995
  [0, 1],
3731
3996
  [
3732
3997
  0,
3733
3998
  {
3734
- [_hQ]: _Sta,
3999
+ [_hQ]: _St,
3735
4000
  },
3736
4001
  ],
3737
4002
  ],
@@ -4022,6 +4287,23 @@ export var GetStreamingDistributionResult = [
4022
4287
  ],
4023
4288
  ],
4024
4289
  ];
4290
+ export var GetTrustStoreRequest = [3, n0, _GTSR, 0, [_Ide], [[0, 1]]];
4291
+ export var GetTrustStoreResult = [
4292
+ 3,
4293
+ n0,
4294
+ _GTSRe,
4295
+ 0,
4296
+ [_TSr, _ET],
4297
+ [
4298
+ [() => TrustStore, 16],
4299
+ [
4300
+ 0,
4301
+ {
4302
+ [_hH]: _ET,
4303
+ },
4304
+ ],
4305
+ ],
4306
+ ];
4025
4307
  export var GetVpcOriginRequest = [3, n0, _GVOR, 0, [_Id], [[0, 1]]];
4026
4308
  export var GetVpcOriginResult = [
4027
4309
  3,
@@ -4444,6 +4726,8 @@ export var InvalidWebACLId = [
4444
4726
  [0],
4445
4727
  ];
4446
4728
  TypeRegistry.for(n0).registerError(InvalidWebACLId, __InvalidWebACLId);
4729
+ export var IpamCidrConfig = [3, n0, _ICCp, 0, [_Ci, _IPA, _AIn, _S], [0, 0, 0, 0]];
4730
+ export var IpamConfig = [3, n0, _IC, 0, [_Q, _ICC], [1, [() => IpamCidrConfigList, 0]]];
4447
4731
  export var KeyGroup = [3, n0, _KG, 0, [_Id, _LMT, _KGC], [0, 4, [() => KeyGroupConfig, 0]]];
4448
4732
  export var KeyGroupAlreadyExists = [
4449
4733
  -3,
@@ -4632,6 +4916,15 @@ export var ListConflictingAliasesResult = [
4632
4916
  [_CAL],
4633
4917
  [[() => ConflictingAliasesList, 16]],
4634
4918
  ];
4919
+ export var ListConnectionFunctionsRequest = [3, n0, _LCFR, 0, [_Ma, _MI, _St], [0, 1, 0]];
4920
+ export var ListConnectionFunctionsResult = [
4921
+ 3,
4922
+ n0,
4923
+ _LCFRi,
4924
+ 0,
4925
+ [_NM, _CF],
4926
+ [0, [() => ConnectionFunctionSummaryList, 0]],
4927
+ ];
4635
4928
  export var ListConnectionGroupsRequest = [
4636
4929
  3,
4637
4930
  n0,
@@ -4737,6 +5030,41 @@ export var ListDistributionsByCachePolicyIdResult = [
4737
5030
  [_DIL],
4738
5031
  [[() => DistributionIdList, 16]],
4739
5032
  ];
5033
+ export var ListDistributionsByConnectionFunctionRequest = [
5034
+ 3,
5035
+ n0,
5036
+ _LDBCFR,
5037
+ 0,
5038
+ [_Ma, _MI, _CFI],
5039
+ [
5040
+ [
5041
+ 0,
5042
+ {
5043
+ [_hQ]: _Ma,
5044
+ },
5045
+ ],
5046
+ [
5047
+ 1,
5048
+ {
5049
+ [_hQ]: _MI,
5050
+ },
5051
+ ],
5052
+ [
5053
+ 0,
5054
+ {
5055
+ [_hQ]: _CFI,
5056
+ },
5057
+ ],
5058
+ ],
5059
+ ];
5060
+ export var ListDistributionsByConnectionFunctionResult = [
5061
+ 3,
5062
+ n0,
5063
+ _LDBCFRi,
5064
+ 0,
5065
+ [_DL],
5066
+ [[() => DistributionList, 16]],
5067
+ ];
4740
5068
  export var ListDistributionsByConnectionModeRequest = [
4741
5069
  3,
4742
5070
  n0,
@@ -4903,6 +5231,41 @@ export var ListDistributionsByResponseHeadersPolicyIdResult = [
4903
5231
  [_DIL],
4904
5232
  [[() => DistributionIdList, 16]],
4905
5233
  ];
5234
+ export var ListDistributionsByTrustStoreRequest = [
5235
+ 3,
5236
+ n0,
5237
+ _LDBTSR,
5238
+ 0,
5239
+ [_TSI, _Ma, _MI],
5240
+ [
5241
+ [
5242
+ 0,
5243
+ {
5244
+ [_hQ]: _TSI,
5245
+ },
5246
+ ],
5247
+ [
5248
+ 0,
5249
+ {
5250
+ [_hQ]: _Ma,
5251
+ },
5252
+ ],
5253
+ [
5254
+ 1,
5255
+ {
5256
+ [_hQ]: _MI,
5257
+ },
5258
+ ],
5259
+ ],
5260
+ ];
5261
+ export var ListDistributionsByTrustStoreResult = [
5262
+ 3,
5263
+ n0,
5264
+ _LDBTSRi,
5265
+ 0,
5266
+ [_DL],
5267
+ [[() => DistributionList, 16]],
5268
+ ];
4906
5269
  export var ListDistributionsByVpcOriginIdRequest = [
4907
5270
  3,
4908
5271
  n0,
@@ -5096,7 +5459,7 @@ export var ListFunctionsRequest = [
5096
5459
  n0,
5097
5460
  _LFR,
5098
5461
  0,
5099
- [_Ma, _MI, _Sta],
5462
+ [_Ma, _MI, _St],
5100
5463
  [
5101
5464
  [
5102
5465
  0,
@@ -5113,7 +5476,7 @@ export var ListFunctionsRequest = [
5113
5476
  [
5114
5477
  0,
5115
5478
  {
5116
- [_hQ]: _Sta,
5479
+ [_hQ]: _St,
5117
5480
  },
5118
5481
  ],
5119
5482
  ],
@@ -5424,6 +5787,15 @@ export var ListTagsForResourceRequest = [
5424
5787
  ],
5425
5788
  ];
5426
5789
  export var ListTagsForResourceResult = [3, n0, _LTFRRi, 0, [_Ta], [[() => Tags, 16]]];
5790
+ export var ListTrustStoresRequest = [3, n0, _LTSR, 0, [_Ma, _MI], [0, 1]];
5791
+ export var ListTrustStoresResult = [
5792
+ 3,
5793
+ n0,
5794
+ _LTSRi,
5795
+ 0,
5796
+ [_NM, _TSL],
5797
+ [0, [() => TrustStoreList, 0]],
5798
+ ];
5427
5799
  export var ListVpcOriginsRequest = [
5428
5800
  3,
5429
5801
  n0,
@@ -5885,7 +6257,7 @@ export var OriginRequestPolicySummary = [
5885
6257
  export var Origins = [3, n0, _O, 0, [_Q, _I], [1, [() => OriginList, 0]]];
5886
6258
  export var OriginShield = [3, n0, _OS, 0, [_E, _OSR], [2, 0]];
5887
6259
  export var OriginSslProtocols = [3, n0, _OSP, 0, [_Q, _I], [1, [() => SslProtocolsList, 0]]];
5888
- export var Parameter = [3, n0, _Par, 0, [_N, _V], [0, 0]];
6260
+ export var Parameter = [3, n0, _Par, 0, [_N, _Va], [0, 0]];
5889
6261
  export var ParameterDefinition = [
5890
6262
  3,
5891
6263
  n0,
@@ -5957,6 +6329,30 @@ export var PublicKeyList = [
5957
6329
  [0, 1, 1, [() => PublicKeySummaryList, 0]],
5958
6330
  ];
5959
6331
  export var PublicKeySummary = [3, n0, _PKS, 0, [_Id, _N, _CTr, _EK, _Co], [0, 0, 4, 0, 0]];
6332
+ export var PublishConnectionFunctionRequest = [
6333
+ 3,
6334
+ n0,
6335
+ _PCFR,
6336
+ 0,
6337
+ [_Id, _IM],
6338
+ [
6339
+ [0, 1],
6340
+ [
6341
+ 0,
6342
+ {
6343
+ [_hH]: _IM_,
6344
+ },
6345
+ ],
6346
+ ],
6347
+ ];
6348
+ export var PublishConnectionFunctionResult = [
6349
+ 3,
6350
+ n0,
6351
+ _PCFRu,
6352
+ 0,
6353
+ [_CFS],
6354
+ [[() => ConnectionFunctionSummary, 16]],
6355
+ ];
5960
6356
  export var PublishFunctionRequest = [
5961
6357
  3,
5962
6358
  n0,
@@ -6170,7 +6566,7 @@ export var ResponseHeadersPolicyCorsConfig = [
6170
6566
  2,
6171
6567
  ],
6172
6568
  ];
6173
- export var ResponseHeadersPolicyCustomHeader = [3, n0, _RHPCH, 0, [_He, _V, _Ov], [0, 0, 2]];
6569
+ export var ResponseHeadersPolicyCustomHeader = [3, n0, _RHPCH, 0, [_He, _Va, _Ov], [0, 0, 2]];
6174
6570
  export var ResponseHeadersPolicyCustomHeadersConfig = [
6175
6571
  3,
6176
6572
  n0,
@@ -6257,7 +6653,7 @@ export var ResponseHeadersPolicyXSSProtection = [
6257
6653
  [_Ov, _Pro, _MBo, _RU],
6258
6654
  [2, 2, 2, 0],
6259
6655
  ];
6260
- export var Restrictions = [3, n0, _R, 0, [_GRe], [[() => GeoRestriction, 0]]];
6656
+ export var Restrictions = [3, n0, _Re, 0, [_GRe], [[() => GeoRestriction, 0]]];
6261
6657
  export var S3Origin = [3, n0, _SO, 0, [_DN, _OAIr], [0, 0]];
6262
6658
  export var S3OriginConfig = [3, n0, _SOC, 0, [_OAIr, _ORT], [0, 1]];
6263
6659
  export var SessionStickinessConfig = [3, n0, _SSC, 0, [_ITTL, _MTTLax], [1, 1]];
@@ -6359,7 +6755,7 @@ export var StringSchemaConfig = [
6359
6755
  [_Co, _DV, _Req],
6360
6756
  [[() => sensitiveStringType, 0], 0, 2],
6361
6757
  ];
6362
- export var Tag = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
6758
+ export var Tag = [3, n0, _Tag, 0, [_K, _Va], [0, 0]];
6363
6759
  export var TagKeys = [3, n0, _TK, 0, [_I], [[() => TagKeyList, 0]]];
6364
6760
  export var TagResourceRequest = [
6365
6761
  3,
@@ -6385,6 +6781,32 @@ export var TagResourceRequest = [
6385
6781
  ];
6386
6782
  export var Tags = [3, n0, _Ta, 0, [_I], [[() => TagList, 0]]];
6387
6783
  export var TenantConfig = [3, n0, _TCe, 0, [_PDar], [[() => ParameterDefinitions, 0]]];
6784
+ export var TestConnectionFunctionRequest = [
6785
+ 3,
6786
+ n0,
6787
+ _TCFR,
6788
+ 0,
6789
+ [_Id, _IM, _St, _CO],
6790
+ [
6791
+ [0, 1],
6792
+ [
6793
+ 0,
6794
+ {
6795
+ [_hH]: _IM_,
6796
+ },
6797
+ ],
6798
+ 0,
6799
+ [() => FunctionEventObject, 0],
6800
+ ],
6801
+ ];
6802
+ export var TestConnectionFunctionResult = [
6803
+ 3,
6804
+ n0,
6805
+ _TCFRe,
6806
+ 0,
6807
+ [_CFTR],
6808
+ [[() => ConnectionFunctionTestResult, 16]],
6809
+ ];
6388
6810
  export var TestFunctionFailed = [
6389
6811
  -3,
6390
6812
  n0,
@@ -6402,7 +6824,7 @@ export var TestFunctionRequest = [
6402
6824
  n0,
6403
6825
  _TFR,
6404
6826
  0,
6405
- [_N, _IM, _Sta, _EO],
6827
+ [_N, _IM, _St, _EO],
6406
6828
  [
6407
6829
  [0, 1],
6408
6830
  [
@@ -7102,6 +7524,23 @@ export var TrustedSigners = [
7102
7524
  [_E, _Q, _I],
7103
7525
  [2, 1, [() => AwsAccountNumberList, 0]],
7104
7526
  ];
7527
+ export var TrustStore = [
7528
+ 3,
7529
+ n0,
7530
+ _TSr,
7531
+ 0,
7532
+ [_Id, _Ar, _N, _S, _NOCC, _LMT, _Rea],
7533
+ [0, 0, 0, 0, 1, 4, 0],
7534
+ ];
7535
+ export var TrustStoreConfig = [3, n0, _TSC, 0, [_TSIr, _ATSCN, _ICE], [0, 2, 2]];
7536
+ export var TrustStoreSummary = [
7537
+ 3,
7538
+ n0,
7539
+ _TSS,
7540
+ 0,
7541
+ [_Id, _Ar, _N, _S, _NOCC, _LMT, _Rea, _ET],
7542
+ [0, 0, 0, 0, 1, 4, 0, 0],
7543
+ ];
7105
7544
  export var UnsupportedOperation = [
7106
7545
  -3,
7107
7546
  n0,
@@ -7247,6 +7686,40 @@ export var UpdateCloudFrontOriginAccessIdentityResult = [
7247
7686
  ],
7248
7687
  ],
7249
7688
  ];
7689
+ export var UpdateConnectionFunctionRequest = [
7690
+ 3,
7691
+ n0,
7692
+ _UCFR,
7693
+ 0,
7694
+ [_Id, _IM, _CFC, _CFCo],
7695
+ [
7696
+ [0, 1],
7697
+ [
7698
+ 0,
7699
+ {
7700
+ [_hH]: _IM_,
7701
+ },
7702
+ ],
7703
+ [() => FunctionConfig, 0],
7704
+ [() => FunctionBlob, 0],
7705
+ ],
7706
+ ];
7707
+ export var UpdateConnectionFunctionResult = [
7708
+ 3,
7709
+ n0,
7710
+ _UCFRp,
7711
+ 0,
7712
+ [_CFS, _ET],
7713
+ [
7714
+ [() => ConnectionFunctionSummary, 16],
7715
+ [
7716
+ 0,
7717
+ {
7718
+ [_hH]: _ET,
7719
+ },
7720
+ ],
7721
+ ],
7722
+ ];
7250
7723
  export var UpdateConnectionGroupRequest = [
7251
7724
  3,
7252
7725
  n0,
@@ -7866,6 +8339,39 @@ export var UpdateStreamingDistributionResult = [
7866
8339
  ],
7867
8340
  ],
7868
8341
  ];
8342
+ export var UpdateTrustStoreRequest = [
8343
+ 3,
8344
+ n0,
8345
+ _UTSR,
8346
+ 0,
8347
+ [_Id, _CCBS, _IM],
8348
+ [
8349
+ [0, 1],
8350
+ [() => CaCertificatesBundleSource, 16],
8351
+ [
8352
+ 0,
8353
+ {
8354
+ [_hH]: _IM_,
8355
+ },
8356
+ ],
8357
+ ],
8358
+ ];
8359
+ export var UpdateTrustStoreResult = [
8360
+ 3,
8361
+ n0,
8362
+ _UTSRp,
8363
+ 0,
8364
+ [_TSr, _ET],
8365
+ [
8366
+ [() => TrustStore, 16],
8367
+ [
8368
+ 0,
8369
+ {
8370
+ [_hH]: _ET,
8371
+ },
8372
+ ],
8373
+ ],
8374
+ ];
7869
8375
  export var UpdateVpcOriginRequest = [
7870
8376
  3,
7871
8377
  n0,
@@ -7923,6 +8429,7 @@ export var ViewerCertificate = [
7923
8429
  [_CFDC, _IAMCI, _ACMCA, _SSLSM, _MPV, _Ce, _CSe],
7924
8430
  [2, 0, 0, 0, 0, 0, 0],
7925
8431
  ];
8432
+ export var ViewerMtlsConfig = [3, n0, _VMC, 0, [_Mo, _TSC], [0, () => TrustStoreConfig]];
7926
8433
  export var VpcOrigin = [
7927
8434
  3,
7928
8435
  n0,
@@ -8116,6 +8623,18 @@ export var ConflictingAliases = [
8116
8623
  },
8117
8624
  ],
8118
8625
  ];
8626
+ export var ConnectionFunctionSummaryList = [
8627
+ 1,
8628
+ n0,
8629
+ _CFSL,
8630
+ 0,
8631
+ [
8632
+ () => ConnectionFunctionSummary,
8633
+ {
8634
+ [_xN]: _CFS,
8635
+ },
8636
+ ],
8637
+ ];
8119
8638
  export var ConnectionGroupSummaryList = [
8120
8639
  1,
8121
8640
  n0,
@@ -8360,6 +8879,18 @@ export var InvalidationSummaryList = [
8360
8879
  },
8361
8880
  ],
8362
8881
  ];
8882
+ export var IpamCidrConfigList = [
8883
+ 1,
8884
+ n0,
8885
+ _ICCL,
8886
+ 0,
8887
+ [
8888
+ () => IpamCidrConfig,
8889
+ {
8890
+ [_xN]: _ICCp,
8891
+ },
8892
+ ],
8893
+ ];
8363
8894
  export var KeyGroupSummaryList = [
8364
8895
  1,
8365
8896
  n0,
@@ -8735,6 +9266,18 @@ export var TrustedKeyGroupIdList = [
8735
9266
  },
8736
9267
  ],
8737
9268
  ];
9269
+ export var TrustStoreList = [
9270
+ 1,
9271
+ n0,
9272
+ _TSL,
9273
+ 0,
9274
+ [
9275
+ () => TrustStoreSummary,
9276
+ {
9277
+ [_xN]: _TSS,
9278
+ },
9279
+ ],
9280
+ ];
8738
9281
  export var ValidationTokenDetailList = [1, n0, _VTDL, 0, () => ValidationTokenDetail];
8739
9282
  export var VpcOriginSummaryList = [
8740
9283
  1,
@@ -8748,6 +9291,14 @@ export var VpcOriginSummaryList = [
8748
9291
  },
8749
9292
  ],
8750
9293
  ];
9294
+ export var CaCertificatesBundleSource = [
9295
+ 3,
9296
+ n0,
9297
+ _CCBS,
9298
+ 0,
9299
+ [_CCBSL],
9300
+ [() => CaCertificatesBundleS3Location],
9301
+ ];
8751
9302
  export var AssociateAlias = [
8752
9303
  9,
8753
9304
  n0,
@@ -8818,6 +9369,16 @@ export var CreateCloudFrontOriginAccessIdentity = [
8818
9369
  () => CreateCloudFrontOriginAccessIdentityRequest,
8819
9370
  () => CreateCloudFrontOriginAccessIdentityResult,
8820
9371
  ];
9372
+ export var CreateConnectionFunction = [
9373
+ 9,
9374
+ n0,
9375
+ _CCF,
9376
+ {
9377
+ [_h]: ["POST", "/2020-05-31/connection-function", 201],
9378
+ },
9379
+ () => CreateConnectionFunctionRequest,
9380
+ () => CreateConnectionFunctionResult,
9381
+ ];
8821
9382
  export var CreateConnectionGroup = [
8822
9383
  9,
8823
9384
  n0,
@@ -8891,7 +9452,7 @@ export var CreateFieldLevelEncryptionProfile = [
8891
9452
  export var CreateFunction = [
8892
9453
  9,
8893
9454
  n0,
8894
- _CF,
9455
+ _CFr,
8895
9456
  {
8896
9457
  [_h]: ["POST", "/2020-05-31/function", 201],
8897
9458
  },
@@ -9018,6 +9579,16 @@ export var CreateStreamingDistributionWithTags = [
9018
9579
  () => CreateStreamingDistributionWithTagsRequest,
9019
9580
  () => CreateStreamingDistributionWithTagsResult,
9020
9581
  ];
9582
+ export var CreateTrustStore = [
9583
+ 9,
9584
+ n0,
9585
+ _CTS,
9586
+ {
9587
+ [_h]: ["POST", "/2020-05-31/trust-store", 201],
9588
+ },
9589
+ () => CreateTrustStoreRequest,
9590
+ () => CreateTrustStoreResult,
9591
+ ];
9021
9592
  export var CreateVpcOrigin = [
9022
9593
  9,
9023
9594
  n0,
@@ -9058,6 +9629,16 @@ export var DeleteCloudFrontOriginAccessIdentity = [
9058
9629
  () => DeleteCloudFrontOriginAccessIdentityRequest,
9059
9630
  () => __Unit,
9060
9631
  ];
9632
+ export var DeleteConnectionFunction = [
9633
+ 9,
9634
+ n0,
9635
+ _DCF,
9636
+ {
9637
+ [_h]: ["DELETE", "/2020-05-31/connection-function/{Id}", 204],
9638
+ },
9639
+ () => DeleteConnectionFunctionRequest,
9640
+ () => __Unit,
9641
+ ];
9061
9642
  export var DeleteConnectionGroup = [
9062
9643
  9,
9063
9644
  n0,
@@ -9228,6 +9809,16 @@ export var DeleteStreamingDistribution = [
9228
9809
  () => DeleteStreamingDistributionRequest,
9229
9810
  () => __Unit,
9230
9811
  ];
9812
+ export var DeleteTrustStore = [
9813
+ 9,
9814
+ n0,
9815
+ _DTSe,
9816
+ {
9817
+ [_h]: ["DELETE", "/2020-05-31/trust-store/{Id}", 204],
9818
+ },
9819
+ () => DeleteTrustStoreRequest,
9820
+ () => __Unit,
9821
+ ];
9231
9822
  export var DeleteVpcOrigin = [
9232
9823
  9,
9233
9824
  n0,
@@ -9238,6 +9829,16 @@ export var DeleteVpcOrigin = [
9238
9829
  () => DeleteVpcOriginRequest,
9239
9830
  () => DeleteVpcOriginResult,
9240
9831
  ];
9832
+ export var DescribeConnectionFunction = [
9833
+ 9,
9834
+ n0,
9835
+ _DCFe,
9836
+ {
9837
+ [_h]: ["GET", "/2020-05-31/connection-function/{Identifier}/describe", 200],
9838
+ },
9839
+ () => DescribeConnectionFunctionRequest,
9840
+ () => DescribeConnectionFunctionResult,
9841
+ ];
9241
9842
  export var DescribeFunction = [
9242
9843
  9,
9243
9844
  n0,
@@ -9328,6 +9929,16 @@ export var GetCloudFrontOriginAccessIdentityConfig = [
9328
9929
  () => GetCloudFrontOriginAccessIdentityConfigRequest,
9329
9930
  () => GetCloudFrontOriginAccessIdentityConfigResult,
9330
9931
  ];
9932
+ export var GetConnectionFunction = [
9933
+ 9,
9934
+ n0,
9935
+ _GCF,
9936
+ {
9937
+ [_h]: ["GET", "/2020-05-31/connection-function/{Identifier}", 200],
9938
+ },
9939
+ () => GetConnectionFunctionRequest,
9940
+ () => GetConnectionFunctionResult,
9941
+ ];
9331
9942
  export var GetConnectionGroup = [
9332
9943
  9,
9333
9944
  n0,
@@ -9638,6 +10249,16 @@ export var GetStreamingDistributionConfig = [
9638
10249
  () => GetStreamingDistributionConfigRequest,
9639
10250
  () => GetStreamingDistributionConfigResult,
9640
10251
  ];
10252
+ export var GetTrustStore = [
10253
+ 9,
10254
+ n0,
10255
+ _GTS,
10256
+ {
10257
+ [_h]: ["GET", "/2020-05-31/trust-store/{Identifier}", 200],
10258
+ },
10259
+ () => GetTrustStoreRequest,
10260
+ () => GetTrustStoreResult,
10261
+ ];
9641
10262
  export var GetVpcOrigin = [
9642
10263
  9,
9643
10264
  n0,
@@ -9688,6 +10309,16 @@ export var ListConflictingAliases = [
9688
10309
  () => ListConflictingAliasesRequest,
9689
10310
  () => ListConflictingAliasesResult,
9690
10311
  ];
10312
+ export var ListConnectionFunctions = [
10313
+ 9,
10314
+ n0,
10315
+ _LCF,
10316
+ {
10317
+ [_h]: ["POST", "/2020-05-31/connection-functions", 200],
10318
+ },
10319
+ () => ListConnectionFunctionsRequest,
10320
+ () => ListConnectionFunctionsResult,
10321
+ ];
9691
10322
  export var ListConnectionGroups = [
9692
10323
  9,
9693
10324
  n0,
@@ -9738,6 +10369,16 @@ export var ListDistributionsByCachePolicyId = [
9738
10369
  () => ListDistributionsByCachePolicyIdRequest,
9739
10370
  () => ListDistributionsByCachePolicyIdResult,
9740
10371
  ];
10372
+ export var ListDistributionsByConnectionFunction = [
10373
+ 9,
10374
+ n0,
10375
+ _LDBCF,
10376
+ {
10377
+ [_h]: ["GET", "/2020-05-31/distributionsByConnectionFunction", 200],
10378
+ },
10379
+ () => ListDistributionsByConnectionFunctionRequest,
10380
+ () => ListDistributionsByConnectionFunctionResult,
10381
+ ];
9741
10382
  export var ListDistributionsByConnectionMode = [
9742
10383
  9,
9743
10384
  n0,
@@ -9798,6 +10439,16 @@ export var ListDistributionsByResponseHeadersPolicyId = [
9798
10439
  () => ListDistributionsByResponseHeadersPolicyIdRequest,
9799
10440
  () => ListDistributionsByResponseHeadersPolicyIdResult,
9800
10441
  ];
10442
+ export var ListDistributionsByTrustStore = [
10443
+ 9,
10444
+ n0,
10445
+ _LDBTS,
10446
+ {
10447
+ [_h]: ["GET", "/2020-05-31/distributionsByTrustStore", 200],
10448
+ },
10449
+ () => ListDistributionsByTrustStoreRequest,
10450
+ () => ListDistributionsByTrustStoreResult,
10451
+ ];
9801
10452
  export var ListDistributionsByVpcOriginId = [
9802
10453
  9,
9803
10454
  n0,
@@ -9988,6 +10639,16 @@ export var ListTagsForResource = [
9988
10639
  () => ListTagsForResourceRequest,
9989
10640
  () => ListTagsForResourceResult,
9990
10641
  ];
10642
+ export var ListTrustStores = [
10643
+ 9,
10644
+ n0,
10645
+ _LTS,
10646
+ {
10647
+ [_h]: ["POST", "/2020-05-31/trust-stores", 200],
10648
+ },
10649
+ () => ListTrustStoresRequest,
10650
+ () => ListTrustStoresResult,
10651
+ ];
9991
10652
  export var ListVpcOrigins = [
9992
10653
  9,
9993
10654
  n0,
@@ -9998,6 +10659,16 @@ export var ListVpcOrigins = [
9998
10659
  () => ListVpcOriginsRequest,
9999
10660
  () => ListVpcOriginsResult,
10000
10661
  ];
10662
+ export var PublishConnectionFunction = [
10663
+ 9,
10664
+ n0,
10665
+ _PCF,
10666
+ {
10667
+ [_h]: ["POST", "/2020-05-31/connection-function/{Id}/publish", 200],
10668
+ },
10669
+ () => PublishConnectionFunctionRequest,
10670
+ () => PublishConnectionFunctionResult,
10671
+ ];
10001
10672
  export var PublishFunction = [
10002
10673
  9,
10003
10674
  n0,
@@ -10028,6 +10699,16 @@ export var TagResource = [
10028
10699
  () => TagResourceRequest,
10029
10700
  () => __Unit,
10030
10701
  ];
10702
+ export var TestConnectionFunction = [
10703
+ 9,
10704
+ n0,
10705
+ _TCF,
10706
+ {
10707
+ [_h]: ["POST", "/2020-05-31/connection-function/{Id}/test", 200],
10708
+ },
10709
+ () => TestConnectionFunctionRequest,
10710
+ () => TestConnectionFunctionResult,
10711
+ ];
10031
10712
  export var TestFunction = [
10032
10713
  9,
10033
10714
  n0,
@@ -10078,6 +10759,16 @@ export var UpdateCloudFrontOriginAccessIdentity = [
10078
10759
  () => UpdateCloudFrontOriginAccessIdentityRequest,
10079
10760
  () => UpdateCloudFrontOriginAccessIdentityResult,
10080
10761
  ];
10762
+ export var UpdateConnectionFunction = [
10763
+ 9,
10764
+ n0,
10765
+ _UCF,
10766
+ {
10767
+ [_h]: ["PUT", "/2020-05-31/connection-function/{Id}", 200],
10768
+ },
10769
+ () => UpdateConnectionFunctionRequest,
10770
+ () => UpdateConnectionFunctionResult,
10771
+ ];
10081
10772
  export var UpdateConnectionGroup = [
10082
10773
  9,
10083
10774
  n0,
@@ -10248,6 +10939,16 @@ export var UpdateStreamingDistribution = [
10248
10939
  () => UpdateStreamingDistributionRequest,
10249
10940
  () => UpdateStreamingDistributionResult,
10250
10941
  ];
10942
+ export var UpdateTrustStore = [
10943
+ 9,
10944
+ n0,
10945
+ _UTS,
10946
+ {
10947
+ [_h]: ["PUT", "/2020-05-31/trust-store/{Id}", 200],
10948
+ },
10949
+ () => UpdateTrustStoreRequest,
10950
+ () => UpdateTrustStoreResult,
10951
+ ];
10251
10952
  export var UpdateVpcOrigin = [
10252
10953
  9,
10253
10954
  n0,