@aws-sdk/client-cloudfront 3.937.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 (112) hide show
  1. package/README.md +120 -0
  2. package/dist-cjs/index.js +977 -63
  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 +17 -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 +708 -27
  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/CreateConnectionFunctionCommand.d.ts +138 -0
  32. package/dist-types/commands/CreateDistributionCommand.d.ts +22 -0
  33. package/dist-types/commands/CreateDistributionWithTagsCommand.d.ts +22 -0
  34. package/dist-types/commands/CreateTrustStoreCommand.d.ts +117 -0
  35. package/dist-types/commands/DeleteConnectionFunctionCommand.d.ts +94 -0
  36. package/dist-types/commands/DeleteTrustStoreCommand.d.ts +91 -0
  37. package/dist-types/commands/DescribeConnectionFunctionCommand.d.ts +108 -0
  38. package/dist-types/commands/GetConnectionFunctionCommand.d.ts +93 -0
  39. package/dist-types/commands/GetDistributionCommand.d.ts +11 -0
  40. package/dist-types/commands/GetDistributionConfigCommand.d.ts +11 -0
  41. package/dist-types/commands/GetManagedCertificateDetailsCommand.d.ts +2 -1
  42. package/dist-types/commands/GetMonitoringSubscriptionCommand.d.ts +1 -1
  43. package/dist-types/commands/GetOriginAccessControlCommand.d.ts +1 -1
  44. package/dist-types/commands/GetOriginAccessControlConfigCommand.d.ts +1 -1
  45. package/dist-types/commands/GetOriginRequestPolicyCommand.d.ts +1 -1
  46. package/dist-types/commands/GetOriginRequestPolicyConfigCommand.d.ts +1 -1
  47. package/dist-types/commands/GetPublicKeyCommand.d.ts +1 -1
  48. package/dist-types/commands/GetPublicKeyConfigCommand.d.ts +1 -1
  49. package/dist-types/commands/GetTrustStoreCommand.d.ts +92 -0
  50. package/dist-types/commands/ListConnectionFunctionsCommand.d.ts +108 -0
  51. package/dist-types/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +11 -0
  52. package/dist-types/commands/ListDistributionsByConnectionFunctionCommand.d.ts +412 -0
  53. package/dist-types/commands/ListDistributionsByConnectionModeCommand.d.ts +11 -0
  54. package/dist-types/commands/ListDistributionsByRealtimeLogConfigCommand.d.ts +11 -0
  55. package/dist-types/commands/ListDistributionsByTrustStoreCommand.d.ts +412 -0
  56. package/dist-types/commands/ListDistributionsByWebACLIdCommand.d.ts +11 -0
  57. package/dist-types/commands/ListDistributionsCommand.d.ts +11 -0
  58. package/dist-types/commands/ListTrustStoresCommand.d.ts +96 -0
  59. package/dist-types/commands/PublishConnectionFunctionCommand.d.ts +113 -0
  60. package/dist-types/commands/TestConnectionFunctionCommand.d.ts +123 -0
  61. package/dist-types/commands/UpdateConnectionFunctionCommand.d.ts +130 -0
  62. package/dist-types/commands/UpdateDistributionCommand.d.ts +22 -0
  63. package/dist-types/commands/UpdateDistributionWithStagingConfigCommand.d.ts +11 -0
  64. package/dist-types/commands/UpdateTrustStoreCommand.d.ts +107 -0
  65. package/dist-types/commands/index.d.ts +18 -3
  66. package/dist-types/models/enums.d.ts +49 -24
  67. package/dist-types/models/errors.d.ts +13 -13
  68. package/dist-types/models/models_0.d.ts +440 -288
  69. package/dist-types/models/models_1.d.ts +601 -2
  70. package/dist-types/pagination/ListConnectionFunctionsPaginator.d.ts +7 -0
  71. package/dist-types/pagination/ListDistributionsByConnectionFunctionPaginator.d.ts +7 -0
  72. package/dist-types/pagination/ListDistributionsByTrustStorePaginator.d.ts +7 -0
  73. package/dist-types/pagination/ListTrustStoresPaginator.d.ts +7 -0
  74. package/dist-types/pagination/index.d.ts +4 -0
  75. package/dist-types/schemas/schemas_0.d.ts +54 -0
  76. package/dist-types/ts3.4/CloudFront.d.ts +263 -0
  77. package/dist-types/ts3.4/CloudFrontClient.d.ts +90 -0
  78. package/dist-types/ts3.4/commands/CreateConnectionFunctionCommand.d.ts +51 -0
  79. package/dist-types/ts3.4/commands/CreateTrustStoreCommand.d.ts +50 -0
  80. package/dist-types/ts3.4/commands/DeleteConnectionFunctionCommand.d.ts +47 -0
  81. package/dist-types/ts3.4/commands/DeleteTrustStoreCommand.d.ts +45 -0
  82. package/dist-types/ts3.4/commands/DescribeConnectionFunctionCommand.d.ts +51 -0
  83. package/dist-types/ts3.4/commands/GetConnectionFunctionCommand.d.ts +58 -0
  84. package/dist-types/ts3.4/commands/GetManagedCertificateDetailsCommand.d.ts +2 -4
  85. package/dist-types/ts3.4/commands/GetMonitoringSubscriptionCommand.d.ts +1 -1
  86. package/dist-types/ts3.4/commands/GetOriginAccessControlCommand.d.ts +1 -1
  87. package/dist-types/ts3.4/commands/GetOriginAccessControlConfigCommand.d.ts +1 -1
  88. package/dist-types/ts3.4/commands/GetOriginRequestPolicyCommand.d.ts +1 -1
  89. package/dist-types/ts3.4/commands/GetOriginRequestPolicyConfigCommand.d.ts +1 -1
  90. package/dist-types/ts3.4/commands/GetPublicKeyCommand.d.ts +1 -1
  91. package/dist-types/ts3.4/commands/GetPublicKeyConfigCommand.d.ts +1 -1
  92. package/dist-types/ts3.4/commands/GetTrustStoreCommand.d.ts +47 -0
  93. package/dist-types/ts3.4/commands/ListConnectionFunctionsCommand.d.ts +51 -0
  94. package/dist-types/ts3.4/commands/ListDistributionsByConnectionFunctionCommand.d.ts +51 -0
  95. package/dist-types/ts3.4/commands/ListDistributionsByTrustStoreCommand.d.ts +51 -0
  96. package/dist-types/ts3.4/commands/ListTrustStoresCommand.d.ts +50 -0
  97. package/dist-types/ts3.4/commands/PublishConnectionFunctionCommand.d.ts +51 -0
  98. package/dist-types/ts3.4/commands/TestConnectionFunctionCommand.d.ts +51 -0
  99. package/dist-types/ts3.4/commands/UpdateConnectionFunctionCommand.d.ts +51 -0
  100. package/dist-types/ts3.4/commands/UpdateTrustStoreCommand.d.ts +50 -0
  101. package/dist-types/ts3.4/commands/index.d.ts +18 -3
  102. package/dist-types/ts3.4/models/enums.d.ts +24 -11
  103. package/dist-types/ts3.4/models/errors.d.ts +8 -8
  104. package/dist-types/ts3.4/models/models_0.d.ts +117 -75
  105. package/dist-types/ts3.4/models/models_1.d.ts +165 -0
  106. package/dist-types/ts3.4/pagination/ListConnectionFunctionsPaginator.d.ts +11 -0
  107. package/dist-types/ts3.4/pagination/ListDistributionsByConnectionFunctionPaginator.d.ts +11 -0
  108. package/dist-types/ts3.4/pagination/ListDistributionsByTrustStorePaginator.d.ts +11 -0
  109. package/dist-types/ts3.4/pagination/ListTrustStoresPaginator.d.ts +11 -0
  110. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  111. package/dist-types/ts3.4/schemas/schemas_0.d.ts +54 -0
  112. 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";
@@ -211,8 +233,13 @@ const _DC = "DistributionConfig";
211
233
  const _DCB = "DefaultCacheBehavior";
212
234
  const _DCDP = "DeleteContinuousDeploymentPolicy";
213
235
  const _DCDPR = "DeleteContinuousDeploymentPolicyRequest";
236
+ const _DCF = "DeleteConnectionFunction";
214
237
  const _DCFOAI = "DeleteCloudFrontOriginAccessIdentity";
215
238
  const _DCFOAIR = "DeleteCloudFrontOriginAccessIdentityRequest";
239
+ const _DCFR = "DeleteConnectionFunctionRequest";
240
+ const _DCFRe = "DescribeConnectionFunctionRequest";
241
+ const _DCFRes = "DescribeConnectionFunctionResult";
242
+ const _DCFe = "DescribeConnectionFunction";
216
243
  const _DCG = "DeleteConnectionGroup";
217
244
  const _DCGR = "DeleteConnectionGroupRequest";
218
245
  const _DCL = "DnsConfigurationList";
@@ -290,6 +317,8 @@ const _DTAF = "DistributionTenantAssociationFilter";
290
317
  const _DTI = "DistributionTenantId";
291
318
  const _DTL = "DistributionTenantList";
292
319
  const _DTS = "DistributionTenantSummary";
320
+ const _DTSR = "DeleteTrustStoreRequest";
321
+ const _DTSe = "DeleteTrustStore";
293
322
  const _DTTL = "DefaultTTL";
294
323
  const _DV = "DefaultValue";
295
324
  const _DVO = "DeleteVpcOrigin";
@@ -378,12 +407,15 @@ const _GCDPCR = "GetContinuousDeploymentPolicyConfigRequest";
378
407
  const _GCDPCRe = "GetContinuousDeploymentPolicyConfigResult";
379
408
  const _GCDPR = "GetContinuousDeploymentPolicyRequest";
380
409
  const _GCDPRe = "GetContinuousDeploymentPolicyResult";
410
+ const _GCF = "GetConnectionFunction";
381
411
  const _GCFOAI = "GetCloudFrontOriginAccessIdentity";
382
412
  const _GCFOAIC = "GetCloudFrontOriginAccessIdentityConfig";
383
413
  const _GCFOAICR = "GetCloudFrontOriginAccessIdentityConfigRequest";
384
414
  const _GCFOAICRe = "GetCloudFrontOriginAccessIdentityConfigResult";
385
415
  const _GCFOAIR = "GetCloudFrontOriginAccessIdentityRequest";
386
416
  const _GCFOAIRe = "GetCloudFrontOriginAccessIdentityResult";
417
+ const _GCFR = "GetConnectionFunctionRequest";
418
+ const _GCFRe = "GetConnectionFunctionResult";
387
419
  const _GCG = "GetConnectionGroup";
388
420
  const _GCGBRE = "GetConnectionGroupByRoutingEndpoint";
389
421
  const _GCGBRER = "GetConnectionGroupByRoutingEndpointRequest";
@@ -480,6 +512,9 @@ const _GSDCR = "GetStreamingDistributionConfigRequest";
480
512
  const _GSDCRe = "GetStreamingDistributionConfigResult";
481
513
  const _GSDR = "GetStreamingDistributionRequest";
482
514
  const _GSDRe = "GetStreamingDistributionResult";
515
+ const _GTS = "GetTrustStore";
516
+ const _GTSR = "GetTrustStoreRequest";
517
+ const _GTSRe = "GetTrustStoreResult";
483
518
  const _GVO = "GetVpcOrigin";
484
519
  const _GVOR = "GetVpcOriginRequest";
485
520
  const _GVORe = "GetVpcOriginResult";
@@ -504,6 +539,7 @@ const _IC = "IpamConfig";
504
539
  const _ICC = "IpamCidrConfigs";
505
540
  const _ICCL = "IpamCidrConfigList";
506
541
  const _ICCp = "IpamCidrConfig";
542
+ const _ICE = "IgnoreCertificateExpiry";
507
543
  const _ICPRS = "ICPRecordalStatus";
508
544
  const _ICn = "IncludeCookies";
509
545
  const _ICp = "IpCount";
@@ -586,9 +622,12 @@ const _LCARi = "ListConflictingAliasesResult";
586
622
  const _LCDP = "ListContinuousDeploymentPolicies";
587
623
  const _LCDPR = "ListContinuousDeploymentPoliciesRequest";
588
624
  const _LCDPRi = "ListContinuousDeploymentPoliciesResult";
625
+ const _LCF = "ListConnectionFunctions";
589
626
  const _LCFOAI = "ListCloudFrontOriginAccessIdentities";
590
627
  const _LCFOAIR = "ListCloudFrontOriginAccessIdentitiesRequest";
591
628
  const _LCFOAIRi = "ListCloudFrontOriginAccessIdentitiesResult";
629
+ const _LCFR = "ListConnectionFunctionsRequest";
630
+ const _LCFRi = "ListConnectionFunctionsResult";
592
631
  const _LCG = "ListConnectionGroups";
593
632
  const _LCGR = "ListConnectionGroupsRequest";
594
633
  const _LCGRi = "ListConnectionGroupsResult";
@@ -599,6 +638,9 @@ const _LD = "ListDistributions";
599
638
  const _LDBAILI = "ListDistributionsByAnycastIpListId";
600
639
  const _LDBAILIR = "ListDistributionsByAnycastIpListIdRequest";
601
640
  const _LDBAILIRi = "ListDistributionsByAnycastIpListIdResult";
641
+ const _LDBCF = "ListDistributionsByConnectionFunction";
642
+ const _LDBCFR = "ListDistributionsByConnectionFunctionRequest";
643
+ const _LDBCFRi = "ListDistributionsByConnectionFunctionResult";
602
644
  const _LDBCM = "ListDistributionsByConnectionMode";
603
645
  const _LDBCMR = "ListDistributionsByConnectionModeRequest";
604
646
  const _LDBCMRi = "ListDistributionsByConnectionModeResult";
@@ -620,6 +662,9 @@ const _LDBRHPIRi = "ListDistributionsByResponseHeadersPolicyIdResult";
620
662
  const _LDBRLC = "ListDistributionsByRealtimeLogConfig";
621
663
  const _LDBRLCR = "ListDistributionsByRealtimeLogConfigRequest";
622
664
  const _LDBRLCRi = "ListDistributionsByRealtimeLogConfigResult";
665
+ const _LDBTS = "ListDistributionsByTrustStore";
666
+ const _LDBTSR = "ListDistributionsByTrustStoreRequest";
667
+ const _LDBTSRi = "ListDistributionsByTrustStoreResult";
623
668
  const _LDBVOI = "ListDistributionsByVpcOriginId";
624
669
  const _LDBVOIR = "ListDistributionsByVpcOriginIdRequest";
625
670
  const _LDBVOIRi = "ListDistributionsByVpcOriginIdResult";
@@ -685,6 +730,9 @@ const _LSDRi = "ListStreamingDistributionsResult";
685
730
  const _LTFR = "ListTagsForResource";
686
731
  const _LTFRR = "ListTagsForResourceRequest";
687
732
  const _LTFRRi = "ListTagsForResourceResult";
733
+ const _LTS = "ListTrustStores";
734
+ const _LTSR = "ListTrustStoresRequest";
735
+ const _LTSRi = "ListTrustStoresResult";
688
736
  const _LVO = "ListVpcOrigins";
689
737
  const _LVOR = "ListVpcOriginsRequest";
690
738
  const _LVORi = "ListVpcOriginsResult";
@@ -706,8 +754,10 @@ const _MTTLax = "MaximumTTL";
706
754
  const _Ma = "Marker";
707
755
  const _Me = "Members";
708
756
  const _Met = "Method";
757
+ const _Mo = "Mode";
709
758
  const _N = "Name";
710
759
  const _NM = "NextMarker";
760
+ const _NOCC = "NumberOfCaCertificates";
711
761
  const _NSCDP = "NoSuchContinuousDeploymentPolicy";
712
762
  const _NSCFOAI = "NoSuchCloudFrontOriginAccessIdentity";
713
763
  const _NSCP = "NoSuchCachePolicy";
@@ -772,6 +822,9 @@ const _Or = "Origin";
772
822
  const _Ov = "Override";
773
823
  const _P = "Parameters";
774
824
  const _PC = "PriceClass";
825
+ const _PCF = "PublishConnectionFunction";
826
+ const _PCFR = "PublishConnectionFunctionRequest";
827
+ const _PCFRu = "PublishConnectionFunctionResult";
775
828
  const _PD = "PolicyDocument";
776
829
  const _PDI = "PrimaryDistributionId";
777
830
  const _PDN = "PrimaryDomainName";
@@ -820,7 +873,7 @@ const _QSCKL = "QueryStringCacheKeysList";
820
873
  const _QSN = "QueryStringNames";
821
874
  const _QSNL = "QueryStringNamesList";
822
875
  const _QSu = "QueryString";
823
- const _R = "Restrictions";
876
+ const _R = "Region";
824
877
  const _RA = "ResourceArn";
825
878
  const _RARN = "RoleARN";
826
879
  const _RC = "ResponseCode";
@@ -874,7 +927,8 @@ const _RT = "ResourceType";
874
927
  const _RTe = "RestrictionType";
875
928
  const _RTed = "RedirectTo";
876
929
  const _RU = "ReportUri";
877
- const _Re = "Reason";
930
+ const _Re = "Restrictions";
931
+ const _Rea = "Reason";
878
932
  const _Req = "Required";
879
933
  const _Res = "Resource";
880
934
  const _Ru = "Runtime";
@@ -920,10 +974,13 @@ const _STS = "StrictTransportSecurity";
920
974
  const _STo = "SourceType";
921
975
  const _SWC = "SingleWeightConfig";
922
976
  const _Si = "Signer";
923
- const _St = "Staging";
924
- const _Sta = "Stage";
977
+ const _St = "Stage";
978
+ const _Sta = "Staging";
925
979
  const _T = "Type";
926
980
  const _TC = "TrafficConfig";
981
+ const _TCF = "TestConnectionFunction";
982
+ const _TCFR = "TestConnectionFunctionRequest";
983
+ const _TCFRe = "TestConnectionFunctionResult";
927
984
  const _TCe = "TenantConfig";
928
985
  const _TDI = "TargetDistributionId";
929
986
  const _TF = "TestFunction";
@@ -994,7 +1051,13 @@ const _TRR = "TagResourceRequest";
994
1051
  const _TRa = "TargetResource";
995
1052
  const _TRag = "TagResource";
996
1053
  const _TS = "TrustedSigners";
1054
+ const _TSC = "TrustStoreConfig";
997
1055
  const _TSDNE = "TrustedSignerDoesNotExist";
1056
+ const _TSI = "TrustStoreIdentifier";
1057
+ const _TSIr = "TrustStoreId";
1058
+ const _TSL = "TrustStoreList";
1059
+ const _TSS = "TrustStoreSummary";
1060
+ const _TSr = "TrustStore";
998
1061
  const _Ta = "Tags";
999
1062
  const _Tag = "Tag";
1000
1063
  const _UAIL = "UpdateAnycastIpList";
@@ -1003,9 +1066,12 @@ const _UAILRp = "UpdateAnycastIpListResult";
1003
1066
  const _UCDP = "UpdateContinuousDeploymentPolicy";
1004
1067
  const _UCDPR = "UpdateContinuousDeploymentPolicyRequest";
1005
1068
  const _UCDPRp = "UpdateContinuousDeploymentPolicyResult";
1069
+ const _UCF = "UpdateConnectionFunction";
1006
1070
  const _UCFOAI = "UpdateCloudFrontOriginAccessIdentity";
1007
1071
  const _UCFOAIR = "UpdateCloudFrontOriginAccessIdentityRequest";
1008
1072
  const _UCFOAIRp = "UpdateCloudFrontOriginAccessIdentityResult";
1073
+ const _UCFR = "UpdateConnectionFunctionRequest";
1074
+ const _UCFRp = "UpdateConnectionFunctionResult";
1009
1075
  const _UCG = "UpdateConnectionGroup";
1010
1076
  const _UCGR = "UpdateConnectionGroupRequest";
1011
1077
  const _UCGRp = "UpdateConnectionGroupResult";
@@ -1060,14 +1126,18 @@ const _URR = "UntagResourceRequest";
1060
1126
  const _USD = "UpdateStreamingDistribution";
1061
1127
  const _USDR = "UpdateStreamingDistributionRequest";
1062
1128
  const _USDRp = "UpdateStreamingDistributionResult";
1129
+ const _UTS = "UpdateTrustStore";
1130
+ const _UTSR = "UpdateTrustStoreRequest";
1131
+ const _UTSRp = "UpdateTrustStoreResult";
1063
1132
  const _UVO = "UpdateVpcOrigin";
1064
1133
  const _UVOR = "UpdateVpcOriginRequest";
1065
1134
  const _UVORp = "UpdateVpcOriginResult";
1066
- const _V = "Value";
1135
+ const _V = "Version";
1067
1136
  const _VC = "ViewerCertificate";
1068
1137
  const _VDC = "VerifyDnsConfiguration";
1069
1138
  const _VDCR = "VerifyDnsConfigurationRequest";
1070
1139
  const _VDCRe = "VerifyDnsConfigurationResult";
1140
+ const _VMC = "ViewerMtlsConfig";
1071
1141
  const _VO = "VpcOrigin";
1072
1142
  const _VOC = "VpcOriginConfig";
1073
1143
  const _VOEC = "VpcOriginEndpointConfig";
@@ -1080,6 +1150,7 @@ const _VTD = "ValidationTokenDetails";
1080
1150
  const _VTDL = "ValidationTokenDetailList";
1081
1151
  const _VTDa = "ValidationTokenDetail";
1082
1152
  const _VTH = "ValidationTokenHost";
1153
+ const _Va = "Value";
1083
1154
  const _W = "Weight";
1084
1155
  const _WA = "WebAcl";
1085
1156
  const _WAC = "WebAclCustomization";
@@ -1258,6 +1329,7 @@ export var BatchTooLarge = [
1258
1329
  [0],
1259
1330
  ];
1260
1331
  TypeRegistry.for(n0).registerError(BatchTooLarge, __BatchTooLarge);
1332
+ export var CaCertificatesBundleS3Location = [3, n0, _CCBSL, 0, [_B, _K, _R, _V], [0, 0, 0, 0]];
1261
1333
  export var CacheBehavior = [
1262
1334
  3,
1263
1335
  n0,
@@ -1483,6 +1555,29 @@ export var ConflictingAliasesList = [
1483
1555
  [_NM, _MI, _Q, _I],
1484
1556
  [0, 1, 1, [() => ConflictingAliases, 0]],
1485
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
+ ];
1486
1581
  export var ConnectionGroup = [
1487
1582
  3,
1488
1583
  n0,
@@ -1573,7 +1668,7 @@ export var ContinuousDeploymentPolicySummary = [
1573
1668
  [_CDP],
1574
1669
  [[() => ContinuousDeploymentPolicy, 0]],
1575
1670
  ];
1576
- export var ContinuousDeploymentSingleHeaderConfig = [3, n0, _CDSHC, 0, [_He, _V], [0, 0]];
1671
+ export var ContinuousDeploymentSingleHeaderConfig = [3, n0, _CDSHC, 0, [_He, _Va], [0, 0]];
1577
1672
  export var ContinuousDeploymentSingleWeightConfig = [
1578
1673
  3,
1579
1674
  n0,
@@ -1589,13 +1684,13 @@ export var CopyDistributionRequest = [
1589
1684
  n0,
1590
1685
  _CDR,
1591
1686
  0,
1592
- [_PDI, _St, _IM, _CR, _E],
1687
+ [_PDI, _Sta, _IM, _CR, _E],
1593
1688
  [
1594
1689
  [0, 1],
1595
1690
  [
1596
1691
  2,
1597
1692
  {
1598
- [_hH]: _St,
1693
+ [_hH]: _Sta,
1599
1694
  },
1600
1695
  ],
1601
1696
  [
@@ -1730,6 +1825,36 @@ export var CreateCloudFrontOriginAccessIdentityResult = [
1730
1825
  ],
1731
1826
  ],
1732
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
+ ];
1733
1858
  export var CreateConnectionGroupRequest = [
1734
1859
  3,
1735
1860
  n0,
@@ -2411,6 +2536,30 @@ export var CreateStreamingDistributionWithTagsResult = [
2411
2536
  ],
2412
2537
  ],
2413
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
+ ];
2414
2563
  export var CreateVpcOriginRequest = [
2415
2564
  3,
2416
2565
  n0,
@@ -2546,6 +2695,22 @@ export var DeleteCloudFrontOriginAccessIdentityRequest = [
2546
2695
  ],
2547
2696
  ],
2548
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
+ ];
2549
2714
  export var DeleteConnectionGroupRequest = [
2550
2715
  3,
2551
2716
  n0,
@@ -2774,6 +2939,22 @@ export var DeleteStreamingDistributionRequest = [
2774
2939
  ],
2775
2940
  ],
2776
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
+ ];
2777
2958
  export var DeleteVpcOriginRequest = [
2778
2959
  3,
2779
2960
  n0,
@@ -2806,18 +2987,50 @@ export var DeleteVpcOriginResult = [
2806
2987
  ],
2807
2988
  ],
2808
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
+ ];
2809
3022
  export var DescribeFunctionRequest = [
2810
3023
  3,
2811
3024
  n0,
2812
3025
  _DFRe,
2813
3026
  0,
2814
- [_N, _Sta],
3027
+ [_N, _St],
2815
3028
  [
2816
3029
  [0, 1],
2817
3030
  [
2818
3031
  0,
2819
3032
  {
2820
- [_hQ]: _Sta,
3033
+ [_hQ]: _St,
2821
3034
  },
2822
3035
  ],
2823
3036
  ],
@@ -2969,15 +3182,17 @@ export var DistributionConfig = [
2969
3182
  _PC,
2970
3183
  _E,
2971
3184
  _VC,
2972
- _R,
3185
+ _Re,
2973
3186
  _WACLI,
2974
3187
  _HV,
2975
3188
  _IIPVE,
2976
3189
  _CDPI,
2977
- _St,
3190
+ _Sta,
2978
3191
  _AILI,
2979
3192
  _TCe,
2980
3193
  _CMo,
3194
+ _VMC,
3195
+ _CFA,
2981
3196
  ],
2982
3197
  [
2983
3198
  0,
@@ -3002,6 +3217,8 @@ export var DistributionConfig = [
3002
3217
  0,
3003
3218
  [() => TenantConfig, 0],
3004
3219
  0,
3220
+ () => ViewerMtlsConfig,
3221
+ () => ConnectionFunctionAssociation,
3005
3222
  ],
3006
3223
  ];
3007
3224
  export var DistributionConfigWithTags = [
@@ -3075,14 +3292,16 @@ export var DistributionSummary = [
3075
3292
  _PC,
3076
3293
  _E,
3077
3294
  _VC,
3078
- _R,
3295
+ _Re,
3079
3296
  _WACLI,
3080
3297
  _HV,
3081
3298
  _IIPVE,
3082
3299
  _AICPRl,
3083
- _St,
3300
+ _Sta,
3084
3301
  _CMo,
3085
3302
  _AILI,
3303
+ _VMC,
3304
+ _CFA,
3086
3305
  ],
3087
3306
  [
3088
3307
  0,
@@ -3109,6 +3328,8 @@ export var DistributionSummary = [
3109
3328
  2,
3110
3329
  0,
3111
3330
  0,
3331
+ () => ViewerMtlsConfig,
3332
+ () => ConnectionFunctionAssociation,
3112
3333
  ],
3113
3334
  ];
3114
3335
  export var DistributionTenant = [
@@ -3128,7 +3349,7 @@ export var DistributionTenantSummary = [
3128
3349
  [_Id, _DI, _N, _Ar, _Do, _CGI, _Cu, _CTr, _LMT, _ET, _E, _S],
3129
3350
  [0, 0, 0, 0, () => DomainResultList, 0, [() => Customizations, 0], 4, 4, 0, 2, 0],
3130
3351
  ];
3131
- 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]];
3132
3353
  export var DomainConflict = [3, n0, _DCo, 0, [_Dom, _RT, _RI, _AIc], [0, 0, 0, 0]];
3133
3354
  export var DomainItem = [3, n0, _DIo, 0, [_Dom], [0]];
3134
3355
  export var DomainResult = [3, n0, _DR, 0, [_Dom, _S], [0, 0]];
@@ -3372,7 +3593,7 @@ export var FunctionList = [
3372
3593
  [_NM, _MI, _Q, _I],
3373
3594
  [0, 1, 1, [() => FunctionSummaryList, 0]],
3374
3595
  ];
3375
- 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]];
3376
3597
  export var FunctionSizeLimitExceeded = [
3377
3598
  -3,
3378
3599
  n0,
@@ -3494,6 +3715,44 @@ export var GetCloudFrontOriginAccessIdentityResult = [
3494
3715
  ],
3495
3716
  ],
3496
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
+ ];
3497
3756
  export var GetConnectionGroupByRoutingEndpointRequest = [
3498
3757
  3,
3499
3758
  n0,
@@ -3731,13 +3990,13 @@ export var GetFunctionRequest = [
3731
3990
  n0,
3732
3991
  _GFR,
3733
3992
  0,
3734
- [_N, _Sta],
3993
+ [_N, _St],
3735
3994
  [
3736
3995
  [0, 1],
3737
3996
  [
3738
3997
  0,
3739
3998
  {
3740
- [_hQ]: _Sta,
3999
+ [_hQ]: _St,
3741
4000
  },
3742
4001
  ],
3743
4002
  ],
@@ -4028,6 +4287,23 @@ export var GetStreamingDistributionResult = [
4028
4287
  ],
4029
4288
  ],
4030
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
+ ];
4031
4307
  export var GetVpcOriginRequest = [3, n0, _GVOR, 0, [_Id], [[0, 1]]];
4032
4308
  export var GetVpcOriginResult = [
4033
4309
  3,
@@ -4640,6 +4916,15 @@ export var ListConflictingAliasesResult = [
4640
4916
  [_CAL],
4641
4917
  [[() => ConflictingAliasesList, 16]],
4642
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
+ ];
4643
4928
  export var ListConnectionGroupsRequest = [
4644
4929
  3,
4645
4930
  n0,
@@ -4745,6 +5030,41 @@ export var ListDistributionsByCachePolicyIdResult = [
4745
5030
  [_DIL],
4746
5031
  [[() => DistributionIdList, 16]],
4747
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
+ ];
4748
5068
  export var ListDistributionsByConnectionModeRequest = [
4749
5069
  3,
4750
5070
  n0,
@@ -4911,6 +5231,41 @@ export var ListDistributionsByResponseHeadersPolicyIdResult = [
4911
5231
  [_DIL],
4912
5232
  [[() => DistributionIdList, 16]],
4913
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
+ ];
4914
5269
  export var ListDistributionsByVpcOriginIdRequest = [
4915
5270
  3,
4916
5271
  n0,
@@ -5104,7 +5459,7 @@ export var ListFunctionsRequest = [
5104
5459
  n0,
5105
5460
  _LFR,
5106
5461
  0,
5107
- [_Ma, _MI, _Sta],
5462
+ [_Ma, _MI, _St],
5108
5463
  [
5109
5464
  [
5110
5465
  0,
@@ -5121,7 +5476,7 @@ export var ListFunctionsRequest = [
5121
5476
  [
5122
5477
  0,
5123
5478
  {
5124
- [_hQ]: _Sta,
5479
+ [_hQ]: _St,
5125
5480
  },
5126
5481
  ],
5127
5482
  ],
@@ -5432,6 +5787,15 @@ export var ListTagsForResourceRequest = [
5432
5787
  ],
5433
5788
  ];
5434
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
+ ];
5435
5799
  export var ListVpcOriginsRequest = [
5436
5800
  3,
5437
5801
  n0,
@@ -5893,7 +6257,7 @@ export var OriginRequestPolicySummary = [
5893
6257
  export var Origins = [3, n0, _O, 0, [_Q, _I], [1, [() => OriginList, 0]]];
5894
6258
  export var OriginShield = [3, n0, _OS, 0, [_E, _OSR], [2, 0]];
5895
6259
  export var OriginSslProtocols = [3, n0, _OSP, 0, [_Q, _I], [1, [() => SslProtocolsList, 0]]];
5896
- export var Parameter = [3, n0, _Par, 0, [_N, _V], [0, 0]];
6260
+ export var Parameter = [3, n0, _Par, 0, [_N, _Va], [0, 0]];
5897
6261
  export var ParameterDefinition = [
5898
6262
  3,
5899
6263
  n0,
@@ -5965,6 +6329,30 @@ export var PublicKeyList = [
5965
6329
  [0, 1, 1, [() => PublicKeySummaryList, 0]],
5966
6330
  ];
5967
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
+ ];
5968
6356
  export var PublishFunctionRequest = [
5969
6357
  3,
5970
6358
  n0,
@@ -6178,7 +6566,7 @@ export var ResponseHeadersPolicyCorsConfig = [
6178
6566
  2,
6179
6567
  ],
6180
6568
  ];
6181
- 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]];
6182
6570
  export var ResponseHeadersPolicyCustomHeadersConfig = [
6183
6571
  3,
6184
6572
  n0,
@@ -6265,7 +6653,7 @@ export var ResponseHeadersPolicyXSSProtection = [
6265
6653
  [_Ov, _Pro, _MBo, _RU],
6266
6654
  [2, 2, 2, 0],
6267
6655
  ];
6268
- export var Restrictions = [3, n0, _R, 0, [_GRe], [[() => GeoRestriction, 0]]];
6656
+ export var Restrictions = [3, n0, _Re, 0, [_GRe], [[() => GeoRestriction, 0]]];
6269
6657
  export var S3Origin = [3, n0, _SO, 0, [_DN, _OAIr], [0, 0]];
6270
6658
  export var S3OriginConfig = [3, n0, _SOC, 0, [_OAIr, _ORT], [0, 1]];
6271
6659
  export var SessionStickinessConfig = [3, n0, _SSC, 0, [_ITTL, _MTTLax], [1, 1]];
@@ -6367,7 +6755,7 @@ export var StringSchemaConfig = [
6367
6755
  [_Co, _DV, _Req],
6368
6756
  [[() => sensitiveStringType, 0], 0, 2],
6369
6757
  ];
6370
- export var Tag = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
6758
+ export var Tag = [3, n0, _Tag, 0, [_K, _Va], [0, 0]];
6371
6759
  export var TagKeys = [3, n0, _TK, 0, [_I], [[() => TagKeyList, 0]]];
6372
6760
  export var TagResourceRequest = [
6373
6761
  3,
@@ -6393,6 +6781,32 @@ export var TagResourceRequest = [
6393
6781
  ];
6394
6782
  export var Tags = [3, n0, _Ta, 0, [_I], [[() => TagList, 0]]];
6395
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
+ ];
6396
6810
  export var TestFunctionFailed = [
6397
6811
  -3,
6398
6812
  n0,
@@ -6410,7 +6824,7 @@ export var TestFunctionRequest = [
6410
6824
  n0,
6411
6825
  _TFR,
6412
6826
  0,
6413
- [_N, _IM, _Sta, _EO],
6827
+ [_N, _IM, _St, _EO],
6414
6828
  [
6415
6829
  [0, 1],
6416
6830
  [
@@ -7110,6 +7524,23 @@ export var TrustedSigners = [
7110
7524
  [_E, _Q, _I],
7111
7525
  [2, 1, [() => AwsAccountNumberList, 0]],
7112
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
+ ];
7113
7544
  export var UnsupportedOperation = [
7114
7545
  -3,
7115
7546
  n0,
@@ -7255,6 +7686,40 @@ export var UpdateCloudFrontOriginAccessIdentityResult = [
7255
7686
  ],
7256
7687
  ],
7257
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
+ ];
7258
7723
  export var UpdateConnectionGroupRequest = [
7259
7724
  3,
7260
7725
  n0,
@@ -7874,6 +8339,39 @@ export var UpdateStreamingDistributionResult = [
7874
8339
  ],
7875
8340
  ],
7876
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
+ ];
7877
8375
  export var UpdateVpcOriginRequest = [
7878
8376
  3,
7879
8377
  n0,
@@ -7931,6 +8429,7 @@ export var ViewerCertificate = [
7931
8429
  [_CFDC, _IAMCI, _ACMCA, _SSLSM, _MPV, _Ce, _CSe],
7932
8430
  [2, 0, 0, 0, 0, 0, 0],
7933
8431
  ];
8432
+ export var ViewerMtlsConfig = [3, n0, _VMC, 0, [_Mo, _TSC], [0, () => TrustStoreConfig]];
7934
8433
  export var VpcOrigin = [
7935
8434
  3,
7936
8435
  n0,
@@ -8124,6 +8623,18 @@ export var ConflictingAliases = [
8124
8623
  },
8125
8624
  ],
8126
8625
  ];
8626
+ export var ConnectionFunctionSummaryList = [
8627
+ 1,
8628
+ n0,
8629
+ _CFSL,
8630
+ 0,
8631
+ [
8632
+ () => ConnectionFunctionSummary,
8633
+ {
8634
+ [_xN]: _CFS,
8635
+ },
8636
+ ],
8637
+ ];
8127
8638
  export var ConnectionGroupSummaryList = [
8128
8639
  1,
8129
8640
  n0,
@@ -8755,6 +9266,18 @@ export var TrustedKeyGroupIdList = [
8755
9266
  },
8756
9267
  ],
8757
9268
  ];
9269
+ export var TrustStoreList = [
9270
+ 1,
9271
+ n0,
9272
+ _TSL,
9273
+ 0,
9274
+ [
9275
+ () => TrustStoreSummary,
9276
+ {
9277
+ [_xN]: _TSS,
9278
+ },
9279
+ ],
9280
+ ];
8758
9281
  export var ValidationTokenDetailList = [1, n0, _VTDL, 0, () => ValidationTokenDetail];
8759
9282
  export var VpcOriginSummaryList = [
8760
9283
  1,
@@ -8768,6 +9291,14 @@ export var VpcOriginSummaryList = [
8768
9291
  },
8769
9292
  ],
8770
9293
  ];
9294
+ export var CaCertificatesBundleSource = [
9295
+ 3,
9296
+ n0,
9297
+ _CCBS,
9298
+ 0,
9299
+ [_CCBSL],
9300
+ [() => CaCertificatesBundleS3Location],
9301
+ ];
8771
9302
  export var AssociateAlias = [
8772
9303
  9,
8773
9304
  n0,
@@ -8838,6 +9369,16 @@ export var CreateCloudFrontOriginAccessIdentity = [
8838
9369
  () => CreateCloudFrontOriginAccessIdentityRequest,
8839
9370
  () => CreateCloudFrontOriginAccessIdentityResult,
8840
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
+ ];
8841
9382
  export var CreateConnectionGroup = [
8842
9383
  9,
8843
9384
  n0,
@@ -8911,7 +9452,7 @@ export var CreateFieldLevelEncryptionProfile = [
8911
9452
  export var CreateFunction = [
8912
9453
  9,
8913
9454
  n0,
8914
- _CF,
9455
+ _CFr,
8915
9456
  {
8916
9457
  [_h]: ["POST", "/2020-05-31/function", 201],
8917
9458
  },
@@ -9038,6 +9579,16 @@ export var CreateStreamingDistributionWithTags = [
9038
9579
  () => CreateStreamingDistributionWithTagsRequest,
9039
9580
  () => CreateStreamingDistributionWithTagsResult,
9040
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
+ ];
9041
9592
  export var CreateVpcOrigin = [
9042
9593
  9,
9043
9594
  n0,
@@ -9078,6 +9629,16 @@ export var DeleteCloudFrontOriginAccessIdentity = [
9078
9629
  () => DeleteCloudFrontOriginAccessIdentityRequest,
9079
9630
  () => __Unit,
9080
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
+ ];
9081
9642
  export var DeleteConnectionGroup = [
9082
9643
  9,
9083
9644
  n0,
@@ -9248,6 +9809,16 @@ export var DeleteStreamingDistribution = [
9248
9809
  () => DeleteStreamingDistributionRequest,
9249
9810
  () => __Unit,
9250
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
+ ];
9251
9822
  export var DeleteVpcOrigin = [
9252
9823
  9,
9253
9824
  n0,
@@ -9258,6 +9829,16 @@ export var DeleteVpcOrigin = [
9258
9829
  () => DeleteVpcOriginRequest,
9259
9830
  () => DeleteVpcOriginResult,
9260
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
+ ];
9261
9842
  export var DescribeFunction = [
9262
9843
  9,
9263
9844
  n0,
@@ -9348,6 +9929,16 @@ export var GetCloudFrontOriginAccessIdentityConfig = [
9348
9929
  () => GetCloudFrontOriginAccessIdentityConfigRequest,
9349
9930
  () => GetCloudFrontOriginAccessIdentityConfigResult,
9350
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
+ ];
9351
9942
  export var GetConnectionGroup = [
9352
9943
  9,
9353
9944
  n0,
@@ -9658,6 +10249,16 @@ export var GetStreamingDistributionConfig = [
9658
10249
  () => GetStreamingDistributionConfigRequest,
9659
10250
  () => GetStreamingDistributionConfigResult,
9660
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
+ ];
9661
10262
  export var GetVpcOrigin = [
9662
10263
  9,
9663
10264
  n0,
@@ -9708,6 +10309,16 @@ export var ListConflictingAliases = [
9708
10309
  () => ListConflictingAliasesRequest,
9709
10310
  () => ListConflictingAliasesResult,
9710
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
+ ];
9711
10322
  export var ListConnectionGroups = [
9712
10323
  9,
9713
10324
  n0,
@@ -9758,6 +10369,16 @@ export var ListDistributionsByCachePolicyId = [
9758
10369
  () => ListDistributionsByCachePolicyIdRequest,
9759
10370
  () => ListDistributionsByCachePolicyIdResult,
9760
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
+ ];
9761
10382
  export var ListDistributionsByConnectionMode = [
9762
10383
  9,
9763
10384
  n0,
@@ -9818,6 +10439,16 @@ export var ListDistributionsByResponseHeadersPolicyId = [
9818
10439
  () => ListDistributionsByResponseHeadersPolicyIdRequest,
9819
10440
  () => ListDistributionsByResponseHeadersPolicyIdResult,
9820
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
+ ];
9821
10452
  export var ListDistributionsByVpcOriginId = [
9822
10453
  9,
9823
10454
  n0,
@@ -10008,6 +10639,16 @@ export var ListTagsForResource = [
10008
10639
  () => ListTagsForResourceRequest,
10009
10640
  () => ListTagsForResourceResult,
10010
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
+ ];
10011
10652
  export var ListVpcOrigins = [
10012
10653
  9,
10013
10654
  n0,
@@ -10018,6 +10659,16 @@ export var ListVpcOrigins = [
10018
10659
  () => ListVpcOriginsRequest,
10019
10660
  () => ListVpcOriginsResult,
10020
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
+ ];
10021
10672
  export var PublishFunction = [
10022
10673
  9,
10023
10674
  n0,
@@ -10048,6 +10699,16 @@ export var TagResource = [
10048
10699
  () => TagResourceRequest,
10049
10700
  () => __Unit,
10050
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
+ ];
10051
10712
  export var TestFunction = [
10052
10713
  9,
10053
10714
  n0,
@@ -10098,6 +10759,16 @@ export var UpdateCloudFrontOriginAccessIdentity = [
10098
10759
  () => UpdateCloudFrontOriginAccessIdentityRequest,
10099
10760
  () => UpdateCloudFrontOriginAccessIdentityResult,
10100
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
+ ];
10101
10772
  export var UpdateConnectionGroup = [
10102
10773
  9,
10103
10774
  n0,
@@ -10268,6 +10939,16 @@ export var UpdateStreamingDistribution = [
10268
10939
  () => UpdateStreamingDistributionRequest,
10269
10940
  () => UpdateStreamingDistributionResult,
10270
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
+ ];
10271
10952
  export var UpdateVpcOrigin = [
10272
10953
  9,
10273
10954
  n0,