@aws-sdk/client-cloudfront 3.937.0 → 3.940.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.
- package/README.md +120 -0
- package/dist-cjs/index.js +977 -63
- package/dist-es/CloudFront.js +30 -0
- package/dist-es/commands/CreateConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/CreateTrustStoreCommand.js +16 -0
- package/dist-es/commands/DeleteConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/DeleteTrustStoreCommand.js +16 -0
- package/dist-es/commands/DescribeConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/GetConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/GetTrustStoreCommand.js +16 -0
- package/dist-es/commands/ListConnectionFunctionsCommand.js +16 -0
- package/dist-es/commands/ListDistributionsByConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/ListDistributionsByTrustStoreCommand.js +16 -0
- package/dist-es/commands/ListTrustStoresCommand.js +16 -0
- package/dist-es/commands/PublishConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/TestConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/UpdateConnectionFunctionCommand.js +16 -0
- package/dist-es/commands/UpdateTrustStoreCommand.js +16 -0
- package/dist-es/commands/index.js +18 -3
- package/dist-es/models/enums.js +17 -8
- package/dist-es/models/errors.js +14 -14
- package/dist-es/pagination/ListConnectionFunctionsPaginator.js +4 -0
- package/dist-es/pagination/ListDistributionsByConnectionFunctionPaginator.js +4 -0
- package/dist-es/pagination/ListDistributionsByTrustStorePaginator.js +4 -0
- package/dist-es/pagination/ListTrustStoresPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/schemas/schemas_0.js +708 -27
- package/dist-types/CloudFront.d.ts +107 -0
- package/dist-types/CloudFrontClient.d.ts +17 -2
- package/dist-types/commands/CopyDistributionCommand.d.ts +11 -0
- package/dist-types/commands/CreateConnectionFunctionCommand.d.ts +138 -0
- package/dist-types/commands/CreateDistributionCommand.d.ts +22 -0
- package/dist-types/commands/CreateDistributionWithTagsCommand.d.ts +22 -0
- package/dist-types/commands/CreateTrustStoreCommand.d.ts +117 -0
- package/dist-types/commands/DeleteConnectionFunctionCommand.d.ts +94 -0
- package/dist-types/commands/DeleteTrustStoreCommand.d.ts +91 -0
- package/dist-types/commands/DescribeConnectionFunctionCommand.d.ts +108 -0
- package/dist-types/commands/GetConnectionFunctionCommand.d.ts +93 -0
- package/dist-types/commands/GetDistributionCommand.d.ts +11 -0
- package/dist-types/commands/GetDistributionConfigCommand.d.ts +11 -0
- package/dist-types/commands/GetManagedCertificateDetailsCommand.d.ts +2 -1
- package/dist-types/commands/GetMonitoringSubscriptionCommand.d.ts +1 -1
- package/dist-types/commands/GetOriginAccessControlCommand.d.ts +1 -1
- package/dist-types/commands/GetOriginAccessControlConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetOriginRequestPolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetOriginRequestPolicyConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetPublicKeyCommand.d.ts +1 -1
- package/dist-types/commands/GetPublicKeyConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetTrustStoreCommand.d.ts +92 -0
- package/dist-types/commands/ListConnectionFunctionsCommand.d.ts +108 -0
- package/dist-types/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +11 -0
- package/dist-types/commands/ListDistributionsByConnectionFunctionCommand.d.ts +412 -0
- package/dist-types/commands/ListDistributionsByConnectionModeCommand.d.ts +11 -0
- package/dist-types/commands/ListDistributionsByRealtimeLogConfigCommand.d.ts +11 -0
- package/dist-types/commands/ListDistributionsByTrustStoreCommand.d.ts +412 -0
- package/dist-types/commands/ListDistributionsByWebACLIdCommand.d.ts +11 -0
- package/dist-types/commands/ListDistributionsCommand.d.ts +11 -0
- package/dist-types/commands/ListTrustStoresCommand.d.ts +96 -0
- package/dist-types/commands/PublishConnectionFunctionCommand.d.ts +113 -0
- package/dist-types/commands/TestConnectionFunctionCommand.d.ts +123 -0
- package/dist-types/commands/UpdateConnectionFunctionCommand.d.ts +130 -0
- package/dist-types/commands/UpdateDistributionCommand.d.ts +22 -0
- package/dist-types/commands/UpdateDistributionWithStagingConfigCommand.d.ts +11 -0
- package/dist-types/commands/UpdateTrustStoreCommand.d.ts +107 -0
- package/dist-types/commands/index.d.ts +18 -3
- package/dist-types/models/enums.d.ts +49 -24
- package/dist-types/models/errors.d.ts +13 -13
- package/dist-types/models/models_0.d.ts +440 -288
- package/dist-types/models/models_1.d.ts +601 -2
- package/dist-types/pagination/ListConnectionFunctionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDistributionsByConnectionFunctionPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDistributionsByTrustStorePaginator.d.ts +7 -0
- package/dist-types/pagination/ListTrustStoresPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/schemas/schemas_0.d.ts +54 -0
- package/dist-types/ts3.4/CloudFront.d.ts +263 -0
- package/dist-types/ts3.4/CloudFrontClient.d.ts +90 -0
- package/dist-types/ts3.4/commands/CreateConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateTrustStoreCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteConnectionFunctionCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteTrustStoreCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DescribeConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetConnectionFunctionCommand.d.ts +58 -0
- package/dist-types/ts3.4/commands/GetManagedCertificateDetailsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetMonitoringSubscriptionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetOriginAccessControlCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetOriginAccessControlConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetOriginRequestPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetOriginRequestPolicyConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPublicKeyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetPublicKeyConfigCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetTrustStoreCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListConnectionFunctionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDistributionsByConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDistributionsByTrustStoreCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTrustStoresCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/PublishConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TestConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateConnectionFunctionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateTrustStoreCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +18 -3
- package/dist-types/ts3.4/models/enums.d.ts +24 -11
- package/dist-types/ts3.4/models/errors.d.ts +8 -8
- package/dist-types/ts3.4/models/models_0.d.ts +117 -75
- package/dist-types/ts3.4/models/models_1.d.ts +165 -0
- package/dist-types/ts3.4/pagination/ListConnectionFunctionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDistributionsByConnectionFunctionPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDistributionsByTrustStorePaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTrustStoresPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +54 -0
- package/package.json +5 -5
package/dist-es/CloudFront.js
CHANGED
|
@@ -7,6 +7,7 @@ import { CopyDistributionCommand, } from "./commands/CopyDistributionCommand";
|
|
|
7
7
|
import { CreateAnycastIpListCommand, } from "./commands/CreateAnycastIpListCommand";
|
|
8
8
|
import { CreateCachePolicyCommand, } from "./commands/CreateCachePolicyCommand";
|
|
9
9
|
import { CreateCloudFrontOriginAccessIdentityCommand, } from "./commands/CreateCloudFrontOriginAccessIdentityCommand";
|
|
10
|
+
import { CreateConnectionFunctionCommand, } from "./commands/CreateConnectionFunctionCommand";
|
|
10
11
|
import { CreateConnectionGroupCommand, } from "./commands/CreateConnectionGroupCommand";
|
|
11
12
|
import { CreateContinuousDeploymentPolicyCommand, } from "./commands/CreateContinuousDeploymentPolicyCommand";
|
|
12
13
|
import { CreateDistributionCommand, } from "./commands/CreateDistributionCommand";
|
|
@@ -27,10 +28,12 @@ import { CreateRealtimeLogConfigCommand, } from "./commands/CreateRealtimeLogCon
|
|
|
27
28
|
import { CreateResponseHeadersPolicyCommand, } from "./commands/CreateResponseHeadersPolicyCommand";
|
|
28
29
|
import { CreateStreamingDistributionCommand, } from "./commands/CreateStreamingDistributionCommand";
|
|
29
30
|
import { CreateStreamingDistributionWithTagsCommand, } from "./commands/CreateStreamingDistributionWithTagsCommand";
|
|
31
|
+
import { CreateTrustStoreCommand, } from "./commands/CreateTrustStoreCommand";
|
|
30
32
|
import { CreateVpcOriginCommand, } from "./commands/CreateVpcOriginCommand";
|
|
31
33
|
import { DeleteAnycastIpListCommand, } from "./commands/DeleteAnycastIpListCommand";
|
|
32
34
|
import { DeleteCachePolicyCommand, } from "./commands/DeleteCachePolicyCommand";
|
|
33
35
|
import { DeleteCloudFrontOriginAccessIdentityCommand, } from "./commands/DeleteCloudFrontOriginAccessIdentityCommand";
|
|
36
|
+
import { DeleteConnectionFunctionCommand, } from "./commands/DeleteConnectionFunctionCommand";
|
|
34
37
|
import { DeleteConnectionGroupCommand, } from "./commands/DeleteConnectionGroupCommand";
|
|
35
38
|
import { DeleteContinuousDeploymentPolicyCommand, } from "./commands/DeleteContinuousDeploymentPolicyCommand";
|
|
36
39
|
import { DeleteDistributionCommand, } from "./commands/DeleteDistributionCommand";
|
|
@@ -48,7 +51,9 @@ import { DeleteRealtimeLogConfigCommand, } from "./commands/DeleteRealtimeLogCon
|
|
|
48
51
|
import { DeleteResourcePolicyCommand, } from "./commands/DeleteResourcePolicyCommand";
|
|
49
52
|
import { DeleteResponseHeadersPolicyCommand, } from "./commands/DeleteResponseHeadersPolicyCommand";
|
|
50
53
|
import { DeleteStreamingDistributionCommand, } from "./commands/DeleteStreamingDistributionCommand";
|
|
54
|
+
import { DeleteTrustStoreCommand, } from "./commands/DeleteTrustStoreCommand";
|
|
51
55
|
import { DeleteVpcOriginCommand, } from "./commands/DeleteVpcOriginCommand";
|
|
56
|
+
import { DescribeConnectionFunctionCommand, } from "./commands/DescribeConnectionFunctionCommand";
|
|
52
57
|
import { DescribeFunctionCommand, } from "./commands/DescribeFunctionCommand";
|
|
53
58
|
import { DescribeKeyValueStoreCommand, } from "./commands/DescribeKeyValueStoreCommand";
|
|
54
59
|
import { DisassociateDistributionTenantWebACLCommand, } from "./commands/DisassociateDistributionTenantWebACLCommand";
|
|
@@ -58,6 +63,7 @@ import { GetCachePolicyCommand, } from "./commands/GetCachePolicyCommand";
|
|
|
58
63
|
import { GetCachePolicyConfigCommand, } from "./commands/GetCachePolicyConfigCommand";
|
|
59
64
|
import { GetCloudFrontOriginAccessIdentityCommand, } from "./commands/GetCloudFrontOriginAccessIdentityCommand";
|
|
60
65
|
import { GetCloudFrontOriginAccessIdentityConfigCommand, } from "./commands/GetCloudFrontOriginAccessIdentityConfigCommand";
|
|
66
|
+
import { GetConnectionFunctionCommand, } from "./commands/GetConnectionFunctionCommand";
|
|
61
67
|
import { GetConnectionGroupByRoutingEndpointCommand, } from "./commands/GetConnectionGroupByRoutingEndpointCommand";
|
|
62
68
|
import { GetConnectionGroupCommand, } from "./commands/GetConnectionGroupCommand";
|
|
63
69
|
import { GetContinuousDeploymentPolicyCommand, } from "./commands/GetContinuousDeploymentPolicyCommand";
|
|
@@ -89,21 +95,25 @@ import { GetResponseHeadersPolicyCommand, } from "./commands/GetResponseHeadersP
|
|
|
89
95
|
import { GetResponseHeadersPolicyConfigCommand, } from "./commands/GetResponseHeadersPolicyConfigCommand";
|
|
90
96
|
import { GetStreamingDistributionCommand, } from "./commands/GetStreamingDistributionCommand";
|
|
91
97
|
import { GetStreamingDistributionConfigCommand, } from "./commands/GetStreamingDistributionConfigCommand";
|
|
98
|
+
import { GetTrustStoreCommand, } from "./commands/GetTrustStoreCommand";
|
|
92
99
|
import { GetVpcOriginCommand, } from "./commands/GetVpcOriginCommand";
|
|
93
100
|
import { ListAnycastIpListsCommand, } from "./commands/ListAnycastIpListsCommand";
|
|
94
101
|
import { ListCachePoliciesCommand, } from "./commands/ListCachePoliciesCommand";
|
|
95
102
|
import { ListCloudFrontOriginAccessIdentitiesCommand, } from "./commands/ListCloudFrontOriginAccessIdentitiesCommand";
|
|
96
103
|
import { ListConflictingAliasesCommand, } from "./commands/ListConflictingAliasesCommand";
|
|
104
|
+
import { ListConnectionFunctionsCommand, } from "./commands/ListConnectionFunctionsCommand";
|
|
97
105
|
import { ListConnectionGroupsCommand, } from "./commands/ListConnectionGroupsCommand";
|
|
98
106
|
import { ListContinuousDeploymentPoliciesCommand, } from "./commands/ListContinuousDeploymentPoliciesCommand";
|
|
99
107
|
import { ListDistributionsByAnycastIpListIdCommand, } from "./commands/ListDistributionsByAnycastIpListIdCommand";
|
|
100
108
|
import { ListDistributionsByCachePolicyIdCommand, } from "./commands/ListDistributionsByCachePolicyIdCommand";
|
|
109
|
+
import { ListDistributionsByConnectionFunctionCommand, } from "./commands/ListDistributionsByConnectionFunctionCommand";
|
|
101
110
|
import { ListDistributionsByConnectionModeCommand, } from "./commands/ListDistributionsByConnectionModeCommand";
|
|
102
111
|
import { ListDistributionsByKeyGroupCommand, } from "./commands/ListDistributionsByKeyGroupCommand";
|
|
103
112
|
import { ListDistributionsByOriginRequestPolicyIdCommand, } from "./commands/ListDistributionsByOriginRequestPolicyIdCommand";
|
|
104
113
|
import { ListDistributionsByOwnedResourceCommand, } from "./commands/ListDistributionsByOwnedResourceCommand";
|
|
105
114
|
import { ListDistributionsByRealtimeLogConfigCommand, } from "./commands/ListDistributionsByRealtimeLogConfigCommand";
|
|
106
115
|
import { ListDistributionsByResponseHeadersPolicyIdCommand, } from "./commands/ListDistributionsByResponseHeadersPolicyIdCommand";
|
|
116
|
+
import { ListDistributionsByTrustStoreCommand, } from "./commands/ListDistributionsByTrustStoreCommand";
|
|
107
117
|
import { ListDistributionsByVpcOriginIdCommand, } from "./commands/ListDistributionsByVpcOriginIdCommand";
|
|
108
118
|
import { ListDistributionsByWebACLIdCommand, } from "./commands/ListDistributionsByWebACLIdCommand";
|
|
109
119
|
import { ListDistributionsCommand, } from "./commands/ListDistributionsCommand";
|
|
@@ -124,15 +134,19 @@ import { ListRealtimeLogConfigsCommand, } from "./commands/ListRealtimeLogConfig
|
|
|
124
134
|
import { ListResponseHeadersPoliciesCommand, } from "./commands/ListResponseHeadersPoliciesCommand";
|
|
125
135
|
import { ListStreamingDistributionsCommand, } from "./commands/ListStreamingDistributionsCommand";
|
|
126
136
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
137
|
+
import { ListTrustStoresCommand, } from "./commands/ListTrustStoresCommand";
|
|
127
138
|
import { ListVpcOriginsCommand, } from "./commands/ListVpcOriginsCommand";
|
|
139
|
+
import { PublishConnectionFunctionCommand, } from "./commands/PublishConnectionFunctionCommand";
|
|
128
140
|
import { PublishFunctionCommand, } from "./commands/PublishFunctionCommand";
|
|
129
141
|
import { PutResourcePolicyCommand, } from "./commands/PutResourcePolicyCommand";
|
|
130
142
|
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
143
|
+
import { TestConnectionFunctionCommand, } from "./commands/TestConnectionFunctionCommand";
|
|
131
144
|
import { TestFunctionCommand, } from "./commands/TestFunctionCommand";
|
|
132
145
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
133
146
|
import { UpdateAnycastIpListCommand, } from "./commands/UpdateAnycastIpListCommand";
|
|
134
147
|
import { UpdateCachePolicyCommand, } from "./commands/UpdateCachePolicyCommand";
|
|
135
148
|
import { UpdateCloudFrontOriginAccessIdentityCommand, } from "./commands/UpdateCloudFrontOriginAccessIdentityCommand";
|
|
149
|
+
import { UpdateConnectionFunctionCommand, } from "./commands/UpdateConnectionFunctionCommand";
|
|
136
150
|
import { UpdateConnectionGroupCommand, } from "./commands/UpdateConnectionGroupCommand";
|
|
137
151
|
import { UpdateContinuousDeploymentPolicyCommand, } from "./commands/UpdateContinuousDeploymentPolicyCommand";
|
|
138
152
|
import { UpdateDistributionCommand, } from "./commands/UpdateDistributionCommand";
|
|
@@ -150,6 +164,7 @@ import { UpdatePublicKeyCommand, } from "./commands/UpdatePublicKeyCommand";
|
|
|
150
164
|
import { UpdateRealtimeLogConfigCommand, } from "./commands/UpdateRealtimeLogConfigCommand";
|
|
151
165
|
import { UpdateResponseHeadersPolicyCommand, } from "./commands/UpdateResponseHeadersPolicyCommand";
|
|
152
166
|
import { UpdateStreamingDistributionCommand, } from "./commands/UpdateStreamingDistributionCommand";
|
|
167
|
+
import { UpdateTrustStoreCommand, } from "./commands/UpdateTrustStoreCommand";
|
|
153
168
|
import { UpdateVpcOriginCommand, } from "./commands/UpdateVpcOriginCommand";
|
|
154
169
|
import { VerifyDnsConfigurationCommand, } from "./commands/VerifyDnsConfigurationCommand";
|
|
155
170
|
const commands = {
|
|
@@ -160,6 +175,7 @@ const commands = {
|
|
|
160
175
|
CreateAnycastIpListCommand,
|
|
161
176
|
CreateCachePolicyCommand,
|
|
162
177
|
CreateCloudFrontOriginAccessIdentityCommand,
|
|
178
|
+
CreateConnectionFunctionCommand,
|
|
163
179
|
CreateConnectionGroupCommand,
|
|
164
180
|
CreateContinuousDeploymentPolicyCommand,
|
|
165
181
|
CreateDistributionCommand,
|
|
@@ -180,10 +196,12 @@ const commands = {
|
|
|
180
196
|
CreateResponseHeadersPolicyCommand,
|
|
181
197
|
CreateStreamingDistributionCommand,
|
|
182
198
|
CreateStreamingDistributionWithTagsCommand,
|
|
199
|
+
CreateTrustStoreCommand,
|
|
183
200
|
CreateVpcOriginCommand,
|
|
184
201
|
DeleteAnycastIpListCommand,
|
|
185
202
|
DeleteCachePolicyCommand,
|
|
186
203
|
DeleteCloudFrontOriginAccessIdentityCommand,
|
|
204
|
+
DeleteConnectionFunctionCommand,
|
|
187
205
|
DeleteConnectionGroupCommand,
|
|
188
206
|
DeleteContinuousDeploymentPolicyCommand,
|
|
189
207
|
DeleteDistributionCommand,
|
|
@@ -201,7 +219,9 @@ const commands = {
|
|
|
201
219
|
DeleteResourcePolicyCommand,
|
|
202
220
|
DeleteResponseHeadersPolicyCommand,
|
|
203
221
|
DeleteStreamingDistributionCommand,
|
|
222
|
+
DeleteTrustStoreCommand,
|
|
204
223
|
DeleteVpcOriginCommand,
|
|
224
|
+
DescribeConnectionFunctionCommand,
|
|
205
225
|
DescribeFunctionCommand,
|
|
206
226
|
DescribeKeyValueStoreCommand,
|
|
207
227
|
DisassociateDistributionTenantWebACLCommand,
|
|
@@ -211,6 +231,7 @@ const commands = {
|
|
|
211
231
|
GetCachePolicyConfigCommand,
|
|
212
232
|
GetCloudFrontOriginAccessIdentityCommand,
|
|
213
233
|
GetCloudFrontOriginAccessIdentityConfigCommand,
|
|
234
|
+
GetConnectionFunctionCommand,
|
|
214
235
|
GetConnectionGroupCommand,
|
|
215
236
|
GetConnectionGroupByRoutingEndpointCommand,
|
|
216
237
|
GetContinuousDeploymentPolicyCommand,
|
|
@@ -242,22 +263,26 @@ const commands = {
|
|
|
242
263
|
GetResponseHeadersPolicyConfigCommand,
|
|
243
264
|
GetStreamingDistributionCommand,
|
|
244
265
|
GetStreamingDistributionConfigCommand,
|
|
266
|
+
GetTrustStoreCommand,
|
|
245
267
|
GetVpcOriginCommand,
|
|
246
268
|
ListAnycastIpListsCommand,
|
|
247
269
|
ListCachePoliciesCommand,
|
|
248
270
|
ListCloudFrontOriginAccessIdentitiesCommand,
|
|
249
271
|
ListConflictingAliasesCommand,
|
|
272
|
+
ListConnectionFunctionsCommand,
|
|
250
273
|
ListConnectionGroupsCommand,
|
|
251
274
|
ListContinuousDeploymentPoliciesCommand,
|
|
252
275
|
ListDistributionsCommand,
|
|
253
276
|
ListDistributionsByAnycastIpListIdCommand,
|
|
254
277
|
ListDistributionsByCachePolicyIdCommand,
|
|
278
|
+
ListDistributionsByConnectionFunctionCommand,
|
|
255
279
|
ListDistributionsByConnectionModeCommand,
|
|
256
280
|
ListDistributionsByKeyGroupCommand,
|
|
257
281
|
ListDistributionsByOriginRequestPolicyIdCommand,
|
|
258
282
|
ListDistributionsByOwnedResourceCommand,
|
|
259
283
|
ListDistributionsByRealtimeLogConfigCommand,
|
|
260
284
|
ListDistributionsByResponseHeadersPolicyIdCommand,
|
|
285
|
+
ListDistributionsByTrustStoreCommand,
|
|
261
286
|
ListDistributionsByVpcOriginIdCommand,
|
|
262
287
|
ListDistributionsByWebACLIdCommand,
|
|
263
288
|
ListDistributionTenantsCommand,
|
|
@@ -277,15 +302,19 @@ const commands = {
|
|
|
277
302
|
ListResponseHeadersPoliciesCommand,
|
|
278
303
|
ListStreamingDistributionsCommand,
|
|
279
304
|
ListTagsForResourceCommand,
|
|
305
|
+
ListTrustStoresCommand,
|
|
280
306
|
ListVpcOriginsCommand,
|
|
307
|
+
PublishConnectionFunctionCommand,
|
|
281
308
|
PublishFunctionCommand,
|
|
282
309
|
PutResourcePolicyCommand,
|
|
283
310
|
TagResourceCommand,
|
|
311
|
+
TestConnectionFunctionCommand,
|
|
284
312
|
TestFunctionCommand,
|
|
285
313
|
UntagResourceCommand,
|
|
286
314
|
UpdateAnycastIpListCommand,
|
|
287
315
|
UpdateCachePolicyCommand,
|
|
288
316
|
UpdateCloudFrontOriginAccessIdentityCommand,
|
|
317
|
+
UpdateConnectionFunctionCommand,
|
|
289
318
|
UpdateConnectionGroupCommand,
|
|
290
319
|
UpdateContinuousDeploymentPolicyCommand,
|
|
291
320
|
UpdateDistributionCommand,
|
|
@@ -303,6 +332,7 @@ const commands = {
|
|
|
303
332
|
UpdateRealtimeLogConfigCommand,
|
|
304
333
|
UpdateResponseHeadersPolicyCommand,
|
|
305
334
|
UpdateStreamingDistributionCommand,
|
|
335
|
+
UpdateTrustStoreCommand,
|
|
306
336
|
UpdateVpcOriginCommand,
|
|
307
337
|
VerifyDnsConfigurationCommand,
|
|
308
338
|
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateConnectionFunction } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateConnectionFunctionCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Cloudfront2020_05_31", "CreateConnectionFunction", {})
|
|
13
|
+
.n("CloudFrontClient", "CreateConnectionFunctionCommand")
|
|
14
|
+
.sc(CreateConnectionFunction)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateTrustStore } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateTrustStoreCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Cloudfront2020_05_31", "CreateTrustStore", {})
|
|
13
|
+
.n("CloudFrontClient", "CreateTrustStoreCommand")
|
|
14
|
+
.sc(CreateTrustStore)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteConnectionFunction } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteConnectionFunctionCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Cloudfront2020_05_31", "DeleteConnectionFunction", {})
|
|
13
|
+
.n("CloudFrontClient", "DeleteConnectionFunctionCommand")
|
|
14
|
+
.sc(DeleteConnectionFunction)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteTrustStore } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteTrustStoreCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Cloudfront2020_05_31", "DeleteTrustStore", {})
|
|
13
|
+
.n("CloudFrontClient", "DeleteTrustStoreCommand")
|
|
14
|
+
.sc(DeleteTrustStore)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DescribeConnectionFunction } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DescribeConnectionFunctionCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Cloudfront2020_05_31", "DescribeConnectionFunction", {})
|
|
13
|
+
.n("CloudFrontClient", "DescribeConnectionFunctionCommand")
|
|
14
|
+
.sc(DescribeConnectionFunction)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetConnectionFunction } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetConnectionFunctionCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Cloudfront2020_05_31", "GetConnectionFunction", {})
|
|
13
|
+
.n("CloudFrontClient", "GetConnectionFunctionCommand")
|
|
14
|
+
.sc(GetConnectionFunction)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetTrustStore } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetTrustStoreCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Cloudfront2020_05_31", "GetTrustStore", {})
|
|
13
|
+
.n("CloudFrontClient", "GetTrustStoreCommand")
|
|
14
|
+
.sc(GetTrustStore)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListConnectionFunctions } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListConnectionFunctionsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Cloudfront2020_05_31", "ListConnectionFunctions", {})
|
|
13
|
+
.n("CloudFrontClient", "ListConnectionFunctionsCommand")
|
|
14
|
+
.sc(ListConnectionFunctions)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListDistributionsByConnectionFunction } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListDistributionsByConnectionFunctionCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Cloudfront2020_05_31", "ListDistributionsByConnectionFunction", {})
|
|
13
|
+
.n("CloudFrontClient", "ListDistributionsByConnectionFunctionCommand")
|
|
14
|
+
.sc(ListDistributionsByConnectionFunction)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListDistributionsByTrustStore } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListDistributionsByTrustStoreCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Cloudfront2020_05_31", "ListDistributionsByTrustStore", {})
|
|
13
|
+
.n("CloudFrontClient", "ListDistributionsByTrustStoreCommand")
|
|
14
|
+
.sc(ListDistributionsByTrustStore)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListTrustStores } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListTrustStoresCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Cloudfront2020_05_31", "ListTrustStores", {})
|
|
13
|
+
.n("CloudFrontClient", "ListTrustStoresCommand")
|
|
14
|
+
.sc(ListTrustStores)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { PublishConnectionFunction } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class PublishConnectionFunctionCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Cloudfront2020_05_31", "PublishConnectionFunction", {})
|
|
13
|
+
.n("CloudFrontClient", "PublishConnectionFunctionCommand")
|
|
14
|
+
.sc(PublishConnectionFunction)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { TestConnectionFunction } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class TestConnectionFunctionCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Cloudfront2020_05_31", "TestConnectionFunction", {})
|
|
13
|
+
.n("CloudFrontClient", "TestConnectionFunctionCommand")
|
|
14
|
+
.sc(TestConnectionFunction)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateConnectionFunction } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateConnectionFunctionCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Cloudfront2020_05_31", "UpdateConnectionFunction", {})
|
|
13
|
+
.n("CloudFrontClient", "UpdateConnectionFunctionCommand")
|
|
14
|
+
.sc(UpdateConnectionFunction)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateTrustStore } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateTrustStoreCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("Cloudfront2020_05_31", "UpdateTrustStore", {})
|
|
13
|
+
.n("CloudFrontClient", "UpdateTrustStoreCommand")
|
|
14
|
+
.sc(UpdateTrustStore)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -5,6 +5,7 @@ export * from "./CopyDistributionCommand";
|
|
|
5
5
|
export * from "./CreateAnycastIpListCommand";
|
|
6
6
|
export * from "./CreateCachePolicyCommand";
|
|
7
7
|
export * from "./CreateCloudFrontOriginAccessIdentityCommand";
|
|
8
|
+
export * from "./CreateConnectionFunctionCommand";
|
|
8
9
|
export * from "./CreateConnectionGroupCommand";
|
|
9
10
|
export * from "./CreateContinuousDeploymentPolicyCommand";
|
|
10
11
|
export * from "./CreateDistributionCommand";
|
|
@@ -25,10 +26,12 @@ export * from "./CreateRealtimeLogConfigCommand";
|
|
|
25
26
|
export * from "./CreateResponseHeadersPolicyCommand";
|
|
26
27
|
export * from "./CreateStreamingDistributionCommand";
|
|
27
28
|
export * from "./CreateStreamingDistributionWithTagsCommand";
|
|
29
|
+
export * from "./CreateTrustStoreCommand";
|
|
28
30
|
export * from "./CreateVpcOriginCommand";
|
|
29
31
|
export * from "./DeleteAnycastIpListCommand";
|
|
30
32
|
export * from "./DeleteCachePolicyCommand";
|
|
31
33
|
export * from "./DeleteCloudFrontOriginAccessIdentityCommand";
|
|
34
|
+
export * from "./DeleteConnectionFunctionCommand";
|
|
32
35
|
export * from "./DeleteConnectionGroupCommand";
|
|
33
36
|
export * from "./DeleteContinuousDeploymentPolicyCommand";
|
|
34
37
|
export * from "./DeleteDistributionCommand";
|
|
@@ -46,7 +49,9 @@ export * from "./DeleteRealtimeLogConfigCommand";
|
|
|
46
49
|
export * from "./DeleteResourcePolicyCommand";
|
|
47
50
|
export * from "./DeleteResponseHeadersPolicyCommand";
|
|
48
51
|
export * from "./DeleteStreamingDistributionCommand";
|
|
52
|
+
export * from "./DeleteTrustStoreCommand";
|
|
49
53
|
export * from "./DeleteVpcOriginCommand";
|
|
54
|
+
export * from "./DescribeConnectionFunctionCommand";
|
|
50
55
|
export * from "./DescribeFunctionCommand";
|
|
51
56
|
export * from "./DescribeKeyValueStoreCommand";
|
|
52
57
|
export * from "./DisassociateDistributionTenantWebACLCommand";
|
|
@@ -56,6 +61,7 @@ export * from "./GetCachePolicyCommand";
|
|
|
56
61
|
export * from "./GetCachePolicyConfigCommand";
|
|
57
62
|
export * from "./GetCloudFrontOriginAccessIdentityCommand";
|
|
58
63
|
export * from "./GetCloudFrontOriginAccessIdentityConfigCommand";
|
|
64
|
+
export * from "./GetConnectionFunctionCommand";
|
|
59
65
|
export * from "./GetConnectionGroupByRoutingEndpointCommand";
|
|
60
66
|
export * from "./GetConnectionGroupCommand";
|
|
61
67
|
export * from "./GetContinuousDeploymentPolicyCommand";
|
|
@@ -87,24 +93,28 @@ export * from "./GetResponseHeadersPolicyCommand";
|
|
|
87
93
|
export * from "./GetResponseHeadersPolicyConfigCommand";
|
|
88
94
|
export * from "./GetStreamingDistributionCommand";
|
|
89
95
|
export * from "./GetStreamingDistributionConfigCommand";
|
|
96
|
+
export * from "./GetTrustStoreCommand";
|
|
90
97
|
export * from "./GetVpcOriginCommand";
|
|
91
98
|
export * from "./ListAnycastIpListsCommand";
|
|
92
99
|
export * from "./ListCachePoliciesCommand";
|
|
93
100
|
export * from "./ListCloudFrontOriginAccessIdentitiesCommand";
|
|
94
101
|
export * from "./ListConflictingAliasesCommand";
|
|
102
|
+
export * from "./ListConnectionFunctionsCommand";
|
|
95
103
|
export * from "./ListConnectionGroupsCommand";
|
|
96
104
|
export * from "./ListContinuousDeploymentPoliciesCommand";
|
|
97
105
|
export * from "./ListDistributionsByAnycastIpListIdCommand";
|
|
98
|
-
export * from "./ListDistributionTenantsCommand";
|
|
99
106
|
export * from "./ListDistributionsByCachePolicyIdCommand";
|
|
100
|
-
export * from "./
|
|
107
|
+
export * from "./ListDistributionsByConnectionFunctionCommand";
|
|
108
|
+
export * from "./ListDistributionTenantsCommand";
|
|
101
109
|
export * from "./ListDistributionsByConnectionModeCommand";
|
|
110
|
+
export * from "./ListDistributionTenantsByCustomizationCommand";
|
|
102
111
|
export * from "./ListDistributionsByKeyGroupCommand";
|
|
103
112
|
export * from "./ListDistributionsByOriginRequestPolicyIdCommand";
|
|
104
113
|
export * from "./ListDistributionsByOwnedResourceCommand";
|
|
105
114
|
export * from "./ListDistributionsByRealtimeLogConfigCommand";
|
|
106
|
-
export * from "./ListDistributionsByResponseHeadersPolicyIdCommand";
|
|
107
115
|
export * from "./ListDistributionsCommand";
|
|
116
|
+
export * from "./ListDistributionsByResponseHeadersPolicyIdCommand";
|
|
117
|
+
export * from "./ListDistributionsByTrustStoreCommand";
|
|
108
118
|
export * from "./ListDistributionsByVpcOriginIdCommand";
|
|
109
119
|
export * from "./ListDistributionsByWebACLIdCommand";
|
|
110
120
|
export * from "./ListDomainConflictsCommand";
|
|
@@ -122,15 +132,19 @@ export * from "./ListRealtimeLogConfigsCommand";
|
|
|
122
132
|
export * from "./ListResponseHeadersPoliciesCommand";
|
|
123
133
|
export * from "./ListStreamingDistributionsCommand";
|
|
124
134
|
export * from "./ListTagsForResourceCommand";
|
|
135
|
+
export * from "./ListTrustStoresCommand";
|
|
125
136
|
export * from "./ListVpcOriginsCommand";
|
|
137
|
+
export * from "./PublishConnectionFunctionCommand";
|
|
126
138
|
export * from "./PublishFunctionCommand";
|
|
127
139
|
export * from "./PutResourcePolicyCommand";
|
|
128
140
|
export * from "./TagResourceCommand";
|
|
141
|
+
export * from "./TestConnectionFunctionCommand";
|
|
129
142
|
export * from "./TestFunctionCommand";
|
|
130
143
|
export * from "./UntagResourceCommand";
|
|
131
144
|
export * from "./UpdateAnycastIpListCommand";
|
|
132
145
|
export * from "./UpdateCachePolicyCommand";
|
|
133
146
|
export * from "./UpdateCloudFrontOriginAccessIdentityCommand";
|
|
147
|
+
export * from "./UpdateConnectionFunctionCommand";
|
|
134
148
|
export * from "./UpdateConnectionGroupCommand";
|
|
135
149
|
export * from "./UpdateContinuousDeploymentPolicyCommand";
|
|
136
150
|
export * from "./UpdateDistributionCommand";
|
|
@@ -148,5 +162,6 @@ export * from "./UpdatePublicKeyCommand";
|
|
|
148
162
|
export * from "./UpdateRealtimeLogConfigCommand";
|
|
149
163
|
export * from "./UpdateResponseHeadersPolicyCommand";
|
|
150
164
|
export * from "./UpdateStreamingDistributionCommand";
|
|
165
|
+
export * from "./UpdateTrustStoreCommand";
|
|
151
166
|
export * from "./UpdateVpcOriginCommand";
|
|
152
167
|
export * from "./VerifyDnsConfigurationCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -138,6 +138,18 @@ export const SSLSupportMethod = {
|
|
|
138
138
|
static_ip: "static-ip",
|
|
139
139
|
vip: "vip",
|
|
140
140
|
};
|
|
141
|
+
export const ViewerMtlsMode = {
|
|
142
|
+
Optional: "optional",
|
|
143
|
+
Required: "required",
|
|
144
|
+
};
|
|
145
|
+
export const FunctionRuntime = {
|
|
146
|
+
cloudfront_js_1_0: "cloudfront-js-1.0",
|
|
147
|
+
cloudfront_js_2_0: "cloudfront-js-2.0",
|
|
148
|
+
};
|
|
149
|
+
export const FunctionStage = {
|
|
150
|
+
DEVELOPMENT: "DEVELOPMENT",
|
|
151
|
+
LIVE: "LIVE",
|
|
152
|
+
};
|
|
141
153
|
export const ContinuousDeploymentPolicyType = {
|
|
142
154
|
SingleHeader: "SingleHeader",
|
|
143
155
|
SingleWeight: "SingleWeight",
|
|
@@ -157,14 +169,6 @@ export const DomainStatus = {
|
|
|
157
169
|
export const Format = {
|
|
158
170
|
URLEncoded: "URLEncoded",
|
|
159
171
|
};
|
|
160
|
-
export const FunctionRuntime = {
|
|
161
|
-
cloudfront_js_1_0: "cloudfront-js-1.0",
|
|
162
|
-
cloudfront_js_2_0: "cloudfront-js-2.0",
|
|
163
|
-
};
|
|
164
|
-
export const FunctionStage = {
|
|
165
|
-
DEVELOPMENT: "DEVELOPMENT",
|
|
166
|
-
LIVE: "LIVE",
|
|
167
|
-
};
|
|
168
172
|
export const ImportSourceType = {
|
|
169
173
|
S3: "S3",
|
|
170
174
|
};
|
|
@@ -219,6 +223,11 @@ export const ReferrerPolicyList = {
|
|
|
219
223
|
strict_origin_when_cross_origin: "strict-origin-when-cross-origin",
|
|
220
224
|
unsafe_url: "unsafe-url",
|
|
221
225
|
};
|
|
226
|
+
export const TrustStoreStatus = {
|
|
227
|
+
Active: "active",
|
|
228
|
+
Failed: "failed",
|
|
229
|
+
Pending: "pending",
|
|
230
|
+
};
|
|
222
231
|
export const ManagedCertificateStatus = {
|
|
223
232
|
Expired: "expired",
|
|
224
233
|
Failed: "failed",
|
package/dist-es/models/errors.js
CHANGED
|
@@ -1147,6 +1147,20 @@ export class TooManyCloudFrontOriginAccessIdentities extends __BaseException {
|
|
|
1147
1147
|
this.Message = opts.Message;
|
|
1148
1148
|
}
|
|
1149
1149
|
}
|
|
1150
|
+
export class EntitySizeLimitExceeded extends __BaseException {
|
|
1151
|
+
name = "EntitySizeLimitExceeded";
|
|
1152
|
+
$fault = "client";
|
|
1153
|
+
Message;
|
|
1154
|
+
constructor(opts) {
|
|
1155
|
+
super({
|
|
1156
|
+
name: "EntitySizeLimitExceeded",
|
|
1157
|
+
$fault: "client",
|
|
1158
|
+
...opts,
|
|
1159
|
+
});
|
|
1160
|
+
Object.setPrototypeOf(this, EntitySizeLimitExceeded.prototype);
|
|
1161
|
+
this.Message = opts.Message;
|
|
1162
|
+
}
|
|
1163
|
+
}
|
|
1150
1164
|
export class ContinuousDeploymentPolicyAlreadyExists extends __BaseException {
|
|
1151
1165
|
name = "ContinuousDeploymentPolicyAlreadyExists";
|
|
1152
1166
|
$fault = "client";
|
|
@@ -1525,20 +1539,6 @@ export class TooManyPublicKeysInKeyGroup extends __BaseException {
|
|
|
1525
1539
|
this.Message = opts.Message;
|
|
1526
1540
|
}
|
|
1527
1541
|
}
|
|
1528
|
-
export class EntitySizeLimitExceeded extends __BaseException {
|
|
1529
|
-
name = "EntitySizeLimitExceeded";
|
|
1530
|
-
$fault = "client";
|
|
1531
|
-
Message;
|
|
1532
|
-
constructor(opts) {
|
|
1533
|
-
super({
|
|
1534
|
-
name: "EntitySizeLimitExceeded",
|
|
1535
|
-
$fault: "client",
|
|
1536
|
-
...opts,
|
|
1537
|
-
});
|
|
1538
|
-
Object.setPrototypeOf(this, EntitySizeLimitExceeded.prototype);
|
|
1539
|
-
this.Message = opts.Message;
|
|
1540
|
-
}
|
|
1541
|
-
}
|
|
1542
1542
|
export class MonitoringSubscriptionAlreadyExists extends __BaseException {
|
|
1543
1543
|
name = "MonitoringSubscriptionAlreadyExists";
|
|
1544
1544
|
$fault = "client";
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { CloudFrontClient } from "../CloudFrontClient";
|
|
3
|
+
import { ListConnectionFunctionsCommand, } from "../commands/ListConnectionFunctionsCommand";
|
|
4
|
+
export const paginateListConnectionFunctions = createPaginator(CloudFrontClient, ListConnectionFunctionsCommand, "Marker", "NextMarker", "MaxItems");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { CloudFrontClient } from "../CloudFrontClient";
|
|
3
|
+
import { ListDistributionsByConnectionFunctionCommand, } from "../commands/ListDistributionsByConnectionFunctionCommand";
|
|
4
|
+
export const paginateListDistributionsByConnectionFunction = createPaginator(CloudFrontClient, ListDistributionsByConnectionFunctionCommand, "Marker", "DistributionList.NextMarker", "MaxItems");
|