@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
@@ -1,5 +1,232 @@
1
- import { CachePolicyType, ConnectionMode, DistributionResourceType, DnsConfigurationStatus, FunctionStage, HttpVersion, IpAddressType, OriginAccessControlOriginTypes, OriginAccessControlSigningBehaviors, OriginAccessControlSigningProtocols, OriginRequestPolicyType, PriceClass, ResponseHeadersPolicyType } from "./enums";
2
- import { Aliases, AliasICPRecordal, AnycastIpList, AnycastIpListCollection, CacheBehaviors, CachePolicy, CachePolicyConfig, CachePolicyList, CloudFrontOriginAccessIdentity, CloudFrontOriginAccessIdentityConfig, ConnectionGroup, ContentTypeProfileConfig, ContinuousDeploymentPolicy, ContinuousDeploymentPolicyConfig, CustomErrorResponses, Customizations, DefaultCacheBehavior, Distribution, DistributionConfig, DistributionTenant, DomainItem, DomainResult, EncryptionEntities, EndPoint, FieldLevelEncryption, FieldLevelEncryptionConfig, FieldLevelEncryptionProfile, FieldLevelEncryptionProfileConfig, FunctionConfig, FunctionSummary, KeyGroup, KeyGroupConfig, KeyValueStore, ManagedCertificateRequest, OriginAccessControl, OriginAccessControlConfig, OriginGroups, OriginRequestPolicy, OriginRequestPolicyConfig, Origins, Parameter, PublicKey, PublicKeyConfig, QueryArgProfileConfig, RealtimeLogConfig, ResponseHeadersPolicy, ResponseHeadersPolicyConfig, Restrictions, S3Origin, StreamingDistribution, StreamingDistributionConfig, Tags, TrustedSigners, ViewerCertificate, VpcOrigin, VpcOriginEndpointConfig } from "./models_0";
1
+ import { CachePolicyType, ConnectionMode, DistributionResourceType, DnsConfigurationStatus, FunctionStage, HttpVersion, IpAddressType, ManagedCertificateStatus, OriginAccessControlOriginTypes, OriginAccessControlSigningBehaviors, OriginAccessControlSigningProtocols, OriginRequestPolicyType, PriceClass, ResponseHeadersPolicyType, TrustStoreStatus, ValidationTokenHost } from "./enums";
2
+ import { Aliases, AliasICPRecordal, AnycastIpList, AnycastIpListCollection, CaCertificatesBundleSource, CacheBehaviors, CachePolicy, CachePolicyConfig, CachePolicyList, CloudFrontOriginAccessIdentity, CloudFrontOriginAccessIdentityConfig, ConnectionFunctionAssociation, ConnectionFunctionSummary, ConnectionGroup, ContentTypeProfileConfig, ContinuousDeploymentPolicy, ContinuousDeploymentPolicyConfig, CustomErrorResponses, Customizations, DefaultCacheBehavior, Distribution, DistributionConfig, DistributionTenant, DomainItem, DomainResult, EncryptionEntities, EndPoint, FieldLevelEncryption, FieldLevelEncryptionConfig, FieldLevelEncryptionProfile, FieldLevelEncryptionProfileConfig, FunctionConfig, FunctionSummary, KeyGroup, KeyGroupConfig, KeyValueStore, ManagedCertificateRequest, MonitoringSubscription, OriginAccessControl, OriginAccessControlConfig, OriginGroups, OriginRequestPolicy, OriginRequestPolicyConfig, Origins, Parameter, PublicKey, PublicKeyConfig, QueryArgProfileConfig, RealtimeLogConfig, ResponseHeadersPolicy, ResponseHeadersPolicyConfig, Restrictions, S3Origin, StreamingDistribution, StreamingDistributionConfig, Tags, TrustedSigners, TrustStore, ViewerCertificate, ViewerMtlsConfig, VpcOrigin, VpcOriginEndpointConfig } from "./models_0";
3
+ /**
4
+ * <p>Contains details about the validation token.</p>
5
+ * @public
6
+ */
7
+ export interface ValidationTokenDetail {
8
+ /**
9
+ * <p>The domain name.</p>
10
+ * @public
11
+ */
12
+ Domain: string | undefined;
13
+ /**
14
+ * <p>The domain to redirect to.</p>
15
+ * @public
16
+ */
17
+ RedirectTo?: string | undefined;
18
+ /**
19
+ * <p>The domain to redirect from.</p>
20
+ * @public
21
+ */
22
+ RedirectFrom?: string | undefined;
23
+ }
24
+ /**
25
+ * <p>Contains details about the CloudFront managed ACM certificate.</p>
26
+ * @public
27
+ */
28
+ export interface ManagedCertificateDetails {
29
+ /**
30
+ * <p>The ARN of the CloudFront managed ACM certificate.</p>
31
+ * @public
32
+ */
33
+ CertificateArn?: string | undefined;
34
+ /**
35
+ * <p>The status of the CloudFront managed ACM certificate.</p> <note> <p>Your distribution tenant will be updated with the latest certificate status. When calling the <a href="https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_UpdateDistributionTenant.html">UpdateDistributionTenant</a> operation, use the latest value for the <code>ETag</code>.</p> </note>
36
+ * @public
37
+ */
38
+ CertificateStatus?: ManagedCertificateStatus | undefined;
39
+ /**
40
+ * <p>Contains details about the validation token host of the specified CloudFront managed ACM certificate.</p> <ul> <li> <p>For <code>cloudfront</code>, CloudFront will automatically serve the validation token. Choose this mode if you can point the domain's DNS to CloudFront immediately.</p> </li> <li> <p>For <code>self-hosted</code>, you serve the validation token from your existing infrastructure. Choose this mode when you need to maintain current traffic flow while your certificate is being issued. You can place the validation token at the well-known path on your existing web server, wait for ACM to validate and issue the certificate, and then update your DNS to point to CloudFront.</p> </li> </ul> <note> <p>This setting only affects the initial certificate request. Once the DNS points to CloudFront, all future certificate renewals are automatically handled through CloudFront.</p> </note>
41
+ * @public
42
+ */
43
+ ValidationTokenHost?: ValidationTokenHost | undefined;
44
+ /**
45
+ * <p>Contains details about the validation token of the specified CloudFront managed ACM certificate.</p>
46
+ * @public
47
+ */
48
+ ValidationTokenDetails?: ValidationTokenDetail[] | undefined;
49
+ }
50
+ /**
51
+ * @public
52
+ */
53
+ export interface GetManagedCertificateDetailsResult {
54
+ /**
55
+ * <p>Contains details about the CloudFront managed ACM certificate.</p>
56
+ * @public
57
+ */
58
+ ManagedCertificateDetails?: ManagedCertificateDetails | undefined;
59
+ }
60
+ /**
61
+ * @public
62
+ */
63
+ export interface GetMonitoringSubscriptionRequest {
64
+ /**
65
+ * <p>The ID of the distribution that you are getting metrics information for.</p>
66
+ * @public
67
+ */
68
+ DistributionId: string | undefined;
69
+ }
70
+ /**
71
+ * @public
72
+ */
73
+ export interface GetMonitoringSubscriptionResult {
74
+ /**
75
+ * <p>A monitoring subscription. This structure contains information about whether additional CloudWatch metrics are enabled for a given CloudFront distribution.</p>
76
+ * @public
77
+ */
78
+ MonitoringSubscription?: MonitoringSubscription | undefined;
79
+ }
80
+ /**
81
+ * @public
82
+ */
83
+ export interface GetOriginAccessControlRequest {
84
+ /**
85
+ * <p>The unique identifier of the origin access control.</p>
86
+ * @public
87
+ */
88
+ Id: string | undefined;
89
+ }
90
+ /**
91
+ * @public
92
+ */
93
+ export interface GetOriginAccessControlResult {
94
+ /**
95
+ * <p>Contains an origin access control, including its unique identifier.</p>
96
+ * @public
97
+ */
98
+ OriginAccessControl?: OriginAccessControl | undefined;
99
+ /**
100
+ * <p>The version identifier for the current version of the origin access control.</p>
101
+ * @public
102
+ */
103
+ ETag?: string | undefined;
104
+ }
105
+ /**
106
+ * @public
107
+ */
108
+ export interface GetOriginAccessControlConfigRequest {
109
+ /**
110
+ * <p>The unique identifier of the origin access control.</p>
111
+ * @public
112
+ */
113
+ Id: string | undefined;
114
+ }
115
+ /**
116
+ * @public
117
+ */
118
+ export interface GetOriginAccessControlConfigResult {
119
+ /**
120
+ * <p>Contains an origin access control configuration.</p>
121
+ * @public
122
+ */
123
+ OriginAccessControlConfig?: OriginAccessControlConfig | undefined;
124
+ /**
125
+ * <p>The version identifier for the current version of the origin access control.</p>
126
+ * @public
127
+ */
128
+ ETag?: string | undefined;
129
+ }
130
+ /**
131
+ * @public
132
+ */
133
+ export interface GetOriginRequestPolicyRequest {
134
+ /**
135
+ * <p>The unique identifier for the origin request policy. If the origin request policy is attached to a distribution's cache behavior, you can get the policy's identifier using <code>ListDistributions</code> or <code>GetDistribution</code>. If the origin request policy is not attached to a cache behavior, you can get the identifier using <code>ListOriginRequestPolicies</code>.</p>
136
+ * @public
137
+ */
138
+ Id: string | undefined;
139
+ }
140
+ /**
141
+ * @public
142
+ */
143
+ export interface GetOriginRequestPolicyResult {
144
+ /**
145
+ * <p>The origin request policy.</p>
146
+ * @public
147
+ */
148
+ OriginRequestPolicy?: OriginRequestPolicy | undefined;
149
+ /**
150
+ * <p>The current version of the origin request policy.</p>
151
+ * @public
152
+ */
153
+ ETag?: string | undefined;
154
+ }
155
+ /**
156
+ * @public
157
+ */
158
+ export interface GetOriginRequestPolicyConfigRequest {
159
+ /**
160
+ * <p>The unique identifier for the origin request policy. If the origin request policy is attached to a distribution's cache behavior, you can get the policy's identifier using <code>ListDistributions</code> or <code>GetDistribution</code>. If the origin request policy is not attached to a cache behavior, you can get the identifier using <code>ListOriginRequestPolicies</code>.</p>
161
+ * @public
162
+ */
163
+ Id: string | undefined;
164
+ }
165
+ /**
166
+ * @public
167
+ */
168
+ export interface GetOriginRequestPolicyConfigResult {
169
+ /**
170
+ * <p>The origin request policy configuration.</p>
171
+ * @public
172
+ */
173
+ OriginRequestPolicyConfig?: OriginRequestPolicyConfig | undefined;
174
+ /**
175
+ * <p>The current version of the origin request policy.</p>
176
+ * @public
177
+ */
178
+ ETag?: string | undefined;
179
+ }
180
+ /**
181
+ * @public
182
+ */
183
+ export interface GetPublicKeyRequest {
184
+ /**
185
+ * <p>The identifier of the public key you are getting.</p>
186
+ * @public
187
+ */
188
+ Id: string | undefined;
189
+ }
190
+ /**
191
+ * @public
192
+ */
193
+ export interface GetPublicKeyResult {
194
+ /**
195
+ * <p>The public key.</p>
196
+ * @public
197
+ */
198
+ PublicKey?: PublicKey | undefined;
199
+ /**
200
+ * <p>The identifier for this version of the public key.</p>
201
+ * @public
202
+ */
203
+ ETag?: string | undefined;
204
+ }
205
+ /**
206
+ * @public
207
+ */
208
+ export interface GetPublicKeyConfigRequest {
209
+ /**
210
+ * <p>The identifier of the public key whose configuration you are getting.</p>
211
+ * @public
212
+ */
213
+ Id: string | undefined;
214
+ }
215
+ /**
216
+ * @public
217
+ */
218
+ export interface GetPublicKeyConfigResult {
219
+ /**
220
+ * <p>A public key configuration.</p>
221
+ * @public
222
+ */
223
+ PublicKeyConfig?: PublicKeyConfig | undefined;
224
+ /**
225
+ * <p>The identifier for this version of the public key configuration.</p>
226
+ * @public
227
+ */
228
+ ETag?: string | undefined;
229
+ }
3
230
  /**
4
231
  * @public
5
232
  */
@@ -154,6 +381,31 @@ export interface GetStreamingDistributionConfigResult {
154
381
  */
155
382
  ETag?: string | undefined;
156
383
  }
384
+ /**
385
+ * @public
386
+ */
387
+ export interface GetTrustStoreRequest {
388
+ /**
389
+ * <p>The trust store's identifier.</p>
390
+ * @public
391
+ */
392
+ Identifier: string | undefined;
393
+ }
394
+ /**
395
+ * @public
396
+ */
397
+ export interface GetTrustStoreResult {
398
+ /**
399
+ * <p>The trust store.</p>
400
+ * @public
401
+ */
402
+ TrustStore?: TrustStore | undefined;
403
+ /**
404
+ * <p>The version identifier for the current version of the trust store.</p>
405
+ * @public
406
+ */
407
+ ETag?: string | undefined;
408
+ }
157
409
  /**
158
410
  * @public
159
411
  */
@@ -400,6 +652,41 @@ export interface ListConflictingAliasesResult {
400
652
  */
401
653
  ConflictingAliasesList?: ConflictingAliasesList | undefined;
402
654
  }
655
+ /**
656
+ * @public
657
+ */
658
+ export interface ListConnectionFunctionsRequest {
659
+ /**
660
+ * <p>Use this field when paginating results to indicate where to begin in your list. The response includes items in the list that occur after the marker. To get the next page of the list, set this field's value to the value of <code>NextMarker</code> from the current page's response.</p>
661
+ * @public
662
+ */
663
+ Marker?: string | undefined;
664
+ /**
665
+ * <p>The maximum number of connection functions that you want returned in the response.</p>
666
+ * @public
667
+ */
668
+ MaxItems?: number | undefined;
669
+ /**
670
+ * <p>The connection function's stage.</p>
671
+ * @public
672
+ */
673
+ Stage?: FunctionStage | undefined;
674
+ }
675
+ /**
676
+ * @public
677
+ */
678
+ export interface ListConnectionFunctionsResult {
679
+ /**
680
+ * <p>Indicates the next page of connection functions. To get the next page of the list, use this value in the <code>Marker</code> field of your request.</p>
681
+ * @public
682
+ */
683
+ NextMarker?: string | undefined;
684
+ /**
685
+ * <p>A list of connection functions.</p>
686
+ * @public
687
+ */
688
+ ConnectionFunctions?: ConnectionFunctionSummary[] | undefined;
689
+ }
403
690
  /**
404
691
  * <p>Contains information about what CloudFront resources your connection groups are associated with.</p>
405
692
  * @public
@@ -710,6 +997,16 @@ export interface DistributionSummary {
710
997
  * @public
711
998
  */
712
999
  AnycastIpListId?: string | undefined;
1000
+ /**
1001
+ * <p>The distribution's viewer mTLS configuration.</p>
1002
+ * @public
1003
+ */
1004
+ ViewerMtlsConfig?: ViewerMtlsConfig | undefined;
1005
+ /**
1006
+ * <p>The distribution's connection function association.</p>
1007
+ * @public
1008
+ */
1009
+ ConnectionFunctionAssociation?: ConnectionFunctionAssociation | undefined;
713
1010
  }
714
1011
  /**
715
1012
  * <p>A distribution list.</p>
@@ -854,6 +1151,36 @@ export interface ListDistributionsByCachePolicyIdResult {
854
1151
  */
855
1152
  DistributionIdList?: DistributionIdList | undefined;
856
1153
  }
1154
+ /**
1155
+ * @public
1156
+ */
1157
+ export interface ListDistributionsByConnectionFunctionRequest {
1158
+ /**
1159
+ * <p>Use this field when paginating results to indicate where to begin in your list. The response includes items in the list that occur after the marker. To get the next page of the list, set this field's value to the value of <code>NextMarker</code> from the current page's response.</p>
1160
+ * @public
1161
+ */
1162
+ Marker?: string | undefined;
1163
+ /**
1164
+ * <p>The maximum number of distributions that you want returned in the response.</p>
1165
+ * @public
1166
+ */
1167
+ MaxItems?: number | undefined;
1168
+ /**
1169
+ * <p>The distributions by connection function identifier.</p>
1170
+ * @public
1171
+ */
1172
+ ConnectionFunctionIdentifier: string | undefined;
1173
+ }
1174
+ /**
1175
+ * @public
1176
+ */
1177
+ export interface ListDistributionsByConnectionFunctionResult {
1178
+ /**
1179
+ * <p>A distribution list.</p>
1180
+ * @public
1181
+ */
1182
+ DistributionList?: DistributionList | undefined;
1183
+ }
857
1184
  /**
858
1185
  * @public
859
1186
  */
@@ -1091,6 +1418,36 @@ export interface ListDistributionsByResponseHeadersPolicyIdResult {
1091
1418
  */
1092
1419
  DistributionIdList?: DistributionIdList | undefined;
1093
1420
  }
1421
+ /**
1422
+ * @public
1423
+ */
1424
+ export interface ListDistributionsByTrustStoreRequest {
1425
+ /**
1426
+ * <p>The distributions by trust store identifier.</p>
1427
+ * @public
1428
+ */
1429
+ TrustStoreIdentifier: string | undefined;
1430
+ /**
1431
+ * <p>Use this field when paginating results to indicate where to begin in your list. The response includes items in the list that occur after the marker. To get the next page of the list, set this field's value to the value of <code>NextMarker</code> from the current page's response.</p>
1432
+ * @public
1433
+ */
1434
+ Marker?: string | undefined;
1435
+ /**
1436
+ * <p>The maximum number of distributions that you want returned in the response.</p>
1437
+ * @public
1438
+ */
1439
+ MaxItems?: number | undefined;
1440
+ }
1441
+ /**
1442
+ * @public
1443
+ */
1444
+ export interface ListDistributionsByTrustStoreResult {
1445
+ /**
1446
+ * <p>A distribution list.</p>
1447
+ * @public
1448
+ */
1449
+ DistributionList?: DistributionList | undefined;
1450
+ }
1094
1451
  /**
1095
1452
  * @public
1096
1453
  */
@@ -2374,6 +2731,82 @@ export interface ListTagsForResourceResult {
2374
2731
  */
2375
2732
  Tags: Tags | undefined;
2376
2733
  }
2734
+ /**
2735
+ * @public
2736
+ */
2737
+ export interface ListTrustStoresRequest {
2738
+ /**
2739
+ * <p>Use this field when paginating results to indicate where to begin in your list. The response includes items in the list that occur after the marker. To get the next page of the list, set this field's value to the value of <code>NextMarker</code> from the current page's response.</p>
2740
+ * @public
2741
+ */
2742
+ Marker?: string | undefined;
2743
+ /**
2744
+ * <p>The maximum number of trust stores that you want returned in the response.</p>
2745
+ * @public
2746
+ */
2747
+ MaxItems?: number | undefined;
2748
+ }
2749
+ /**
2750
+ * <p>A trust store summary.</p>
2751
+ * @public
2752
+ */
2753
+ export interface TrustStoreSummary {
2754
+ /**
2755
+ * <p>The trust store's ID.</p>
2756
+ * @public
2757
+ */
2758
+ Id: string | undefined;
2759
+ /**
2760
+ * <p>The trust store's Amazon Resource Name (ARN).</p>
2761
+ * @public
2762
+ */
2763
+ Arn: string | undefined;
2764
+ /**
2765
+ * <p>The trust store's name.</p>
2766
+ * @public
2767
+ */
2768
+ Name: string | undefined;
2769
+ /**
2770
+ * <p>The trust store's status.</p>
2771
+ * @public
2772
+ */
2773
+ Status: TrustStoreStatus | undefined;
2774
+ /**
2775
+ * <p>The trust store's number of CA certificates.</p>
2776
+ * @public
2777
+ */
2778
+ NumberOfCaCertificates: number | undefined;
2779
+ /**
2780
+ * <p>The trust store's last modified time.</p>
2781
+ * @public
2782
+ */
2783
+ LastModifiedTime: Date | undefined;
2784
+ /**
2785
+ * <p>The trust store's reason.</p>
2786
+ * @public
2787
+ */
2788
+ Reason?: string | undefined;
2789
+ /**
2790
+ * <p>The version identifier for the current version of the trust store.</p>
2791
+ * @public
2792
+ */
2793
+ ETag: string | undefined;
2794
+ }
2795
+ /**
2796
+ * @public
2797
+ */
2798
+ export interface ListTrustStoresResult {
2799
+ /**
2800
+ * <p>Indicates the next page of trust stores. To get the next page of the list, use this value in the <code>Marker</code> field of your request.</p>
2801
+ * @public
2802
+ */
2803
+ NextMarker?: string | undefined;
2804
+ /**
2805
+ * <p>The trust store list.</p>
2806
+ * @public
2807
+ */
2808
+ TrustStoreList?: TrustStoreSummary[] | undefined;
2809
+ }
2377
2810
  /**
2378
2811
  * @public
2379
2812
  */
@@ -2481,6 +2914,31 @@ export interface ListVpcOriginsResult {
2481
2914
  */
2482
2915
  VpcOriginList?: VpcOriginList | undefined;
2483
2916
  }
2917
+ /**
2918
+ * @public
2919
+ */
2920
+ export interface PublishConnectionFunctionRequest {
2921
+ /**
2922
+ * <p>The connection function ID.</p>
2923
+ * @public
2924
+ */
2925
+ Id: string | undefined;
2926
+ /**
2927
+ * <p>The current version (<code>ETag</code> value) of the connection function.</p>
2928
+ * @public
2929
+ */
2930
+ IfMatch: string | undefined;
2931
+ }
2932
+ /**
2933
+ * @public
2934
+ */
2935
+ export interface PublishConnectionFunctionResult {
2936
+ /**
2937
+ * <p>The connection function summary.</p>
2938
+ * @public
2939
+ */
2940
+ ConnectionFunctionSummary?: ConnectionFunctionSummary | undefined;
2941
+ }
2484
2942
  /**
2485
2943
  * @public
2486
2944
  */
@@ -2547,6 +3005,72 @@ export interface TagResourceRequest {
2547
3005
  */
2548
3006
  Tags: Tags | undefined;
2549
3007
  }
3008
+ /**
3009
+ * @public
3010
+ */
3011
+ export interface TestConnectionFunctionRequest {
3012
+ /**
3013
+ * <p>The connection function ID.</p>
3014
+ * @public
3015
+ */
3016
+ Id: string | undefined;
3017
+ /**
3018
+ * <p>The current version (<code>ETag</code> value) of the connection function.</p>
3019
+ * @public
3020
+ */
3021
+ IfMatch: string | undefined;
3022
+ /**
3023
+ * <p>The connection function stage.</p>
3024
+ * @public
3025
+ */
3026
+ Stage?: FunctionStage | undefined;
3027
+ /**
3028
+ * <p>The connection object.</p>
3029
+ * @public
3030
+ */
3031
+ ConnectionObject: Uint8Array | undefined;
3032
+ }
3033
+ /**
3034
+ * <p>A connection function test result.</p>
3035
+ * @public
3036
+ */
3037
+ export interface ConnectionFunctionTestResult {
3038
+ /**
3039
+ * <p>The connection function summary.</p>
3040
+ * @public
3041
+ */
3042
+ ConnectionFunctionSummary?: ConnectionFunctionSummary | undefined;
3043
+ /**
3044
+ * <p>The connection function compute utilization.</p>
3045
+ * @public
3046
+ */
3047
+ ComputeUtilization?: string | undefined;
3048
+ /**
3049
+ * <p>The connection function execution logs.</p>
3050
+ * @public
3051
+ */
3052
+ ConnectionFunctionExecutionLogs?: string[] | undefined;
3053
+ /**
3054
+ * <p>The connection function error message.</p>
3055
+ * @public
3056
+ */
3057
+ ConnectionFunctionErrorMessage?: string | undefined;
3058
+ /**
3059
+ * <p>The connection function output.</p>
3060
+ * @public
3061
+ */
3062
+ ConnectionFunctionOutput?: string | undefined;
3063
+ }
3064
+ /**
3065
+ * @public
3066
+ */
3067
+ export interface TestConnectionFunctionResult {
3068
+ /**
3069
+ * <p>The connection function test result.</p>
3070
+ * @public
3071
+ */
3072
+ ConnectionFunctionTestResult?: ConnectionFunctionTestResult | undefined;
3073
+ }
2550
3074
  /**
2551
3075
  * @public
2552
3076
  */
@@ -2747,6 +3271,46 @@ export interface UpdateCloudFrontOriginAccessIdentityResult {
2747
3271
  */
2748
3272
  ETag?: string | undefined;
2749
3273
  }
3274
+ /**
3275
+ * @public
3276
+ */
3277
+ export interface UpdateConnectionFunctionRequest {
3278
+ /**
3279
+ * <p>The connection function ID.</p>
3280
+ * @public
3281
+ */
3282
+ Id: string | undefined;
3283
+ /**
3284
+ * <p>The current version (<code>ETag</code> value) of the connection function you are updating.</p>
3285
+ * @public
3286
+ */
3287
+ IfMatch: string | undefined;
3288
+ /**
3289
+ * <p>Contains configuration information about a CloudFront function.</p>
3290
+ * @public
3291
+ */
3292
+ ConnectionFunctionConfig: FunctionConfig | undefined;
3293
+ /**
3294
+ * <p>The connection function code.</p>
3295
+ * @public
3296
+ */
3297
+ ConnectionFunctionCode: Uint8Array | undefined;
3298
+ }
3299
+ /**
3300
+ * @public
3301
+ */
3302
+ export interface UpdateConnectionFunctionResult {
3303
+ /**
3304
+ * <p>The connection function summary.</p>
3305
+ * @public
3306
+ */
3307
+ ConnectionFunctionSummary?: ConnectionFunctionSummary | undefined;
3308
+ /**
3309
+ * <p>The version identifier for the current version of the connection function.</p>
3310
+ * @public
3311
+ */
3312
+ ETag?: string | undefined;
3313
+ }
2750
3314
  /**
2751
3315
  * @public
2752
3316
  */
@@ -3401,6 +3965,41 @@ export interface UpdateStreamingDistributionResult {
3401
3965
  */
3402
3966
  ETag?: string | undefined;
3403
3967
  }
3968
+ /**
3969
+ * @public
3970
+ */
3971
+ export interface UpdateTrustStoreRequest {
3972
+ /**
3973
+ * <p>The trust store ID.</p>
3974
+ * @public
3975
+ */
3976
+ Id: string | undefined;
3977
+ /**
3978
+ * <p>The CA certificates bundle source.</p>
3979
+ * @public
3980
+ */
3981
+ CaCertificatesBundleSource: CaCertificatesBundleSource | undefined;
3982
+ /**
3983
+ * <p>The current version (<code>ETag</code> value) of the trust store you are updating.</p>
3984
+ * @public
3985
+ */
3986
+ IfMatch: string | undefined;
3987
+ }
3988
+ /**
3989
+ * @public
3990
+ */
3991
+ export interface UpdateTrustStoreResult {
3992
+ /**
3993
+ * <p>The trust store.</p>
3994
+ * @public
3995
+ */
3996
+ TrustStore?: TrustStore | undefined;
3997
+ /**
3998
+ * <p>The version identifier for the current version of the trust store.</p>
3999
+ * @public
4000
+ */
4001
+ ETag?: string | undefined;
4002
+ }
3404
4003
  /**
3405
4004
  * @public
3406
4005
  */
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListConnectionFunctionsCommandInput, ListConnectionFunctionsCommandOutput } from "../commands/ListConnectionFunctionsCommand";
3
+ import { CloudFrontPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListConnectionFunctions: (config: CloudFrontPaginationConfiguration, input: ListConnectionFunctionsCommandInput, ...rest: any[]) => Paginator<ListConnectionFunctionsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListDistributionsByConnectionFunctionCommandInput, ListDistributionsByConnectionFunctionCommandOutput } from "../commands/ListDistributionsByConnectionFunctionCommand";
3
+ import { CloudFrontPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListDistributionsByConnectionFunction: (config: CloudFrontPaginationConfiguration, input: ListDistributionsByConnectionFunctionCommandInput, ...rest: any[]) => Paginator<ListDistributionsByConnectionFunctionCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListDistributionsByTrustStoreCommandInput, ListDistributionsByTrustStoreCommandOutput } from "../commands/ListDistributionsByTrustStoreCommand";
3
+ import { CloudFrontPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListDistributionsByTrustStore: (config: CloudFrontPaginationConfiguration, input: ListDistributionsByTrustStoreCommandInput, ...rest: any[]) => Paginator<ListDistributionsByTrustStoreCommandOutput>;