@aws-sdk/client-cloudfront 3.936.0 → 3.939.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +120 -0
- package/dist-cjs/index.js +1018 -69
- 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 +31 -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 +735 -34
- 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/CreateAnycastIpListCommand.d.ts +19 -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/GetAnycastIpListCommand.d.ts +11 -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/GetRealtimeLogConfigCommand.d.ts +1 -1
- package/dist-types/commands/GetTrustStoreCommand.d.ts +92 -0
- package/dist-types/commands/ListAnycastIpListsCommand.d.ts +11 -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/UpdateAnycastIpListCommand.d.ts +11 -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 +71 -24
- package/dist-types/models/errors.d.ts +13 -13
- package/dist-types/models/models_0.d.ts +498 -314
- package/dist-types/models/models_1.d.ts +627 -3
- 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 +57 -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/GetRealtimeLogConfigCommand.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 +40 -11
- package/dist-types/ts3.4/models/errors.d.ts +8 -8
- package/dist-types/ts3.4/models/models_0.d.ts +131 -82
- package/dist-types/ts3.4/models/models_1.d.ts +172 -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 +57 -0
- package/package.json +2 -2
|
@@ -28,6 +28,10 @@ import {
|
|
|
28
28
|
CreateCloudFrontOriginAccessIdentityCommandInput,
|
|
29
29
|
CreateCloudFrontOriginAccessIdentityCommandOutput,
|
|
30
30
|
} from "./commands/CreateCloudFrontOriginAccessIdentityCommand";
|
|
31
|
+
import {
|
|
32
|
+
CreateConnectionFunctionCommandInput,
|
|
33
|
+
CreateConnectionFunctionCommandOutput,
|
|
34
|
+
} from "./commands/CreateConnectionFunctionCommand";
|
|
31
35
|
import {
|
|
32
36
|
CreateConnectionGroupCommandInput,
|
|
33
37
|
CreateConnectionGroupCommandOutput,
|
|
@@ -108,6 +112,10 @@ import {
|
|
|
108
112
|
CreateStreamingDistributionWithTagsCommandInput,
|
|
109
113
|
CreateStreamingDistributionWithTagsCommandOutput,
|
|
110
114
|
} from "./commands/CreateStreamingDistributionWithTagsCommand";
|
|
115
|
+
import {
|
|
116
|
+
CreateTrustStoreCommandInput,
|
|
117
|
+
CreateTrustStoreCommandOutput,
|
|
118
|
+
} from "./commands/CreateTrustStoreCommand";
|
|
111
119
|
import {
|
|
112
120
|
CreateVpcOriginCommandInput,
|
|
113
121
|
CreateVpcOriginCommandOutput,
|
|
@@ -124,6 +132,10 @@ import {
|
|
|
124
132
|
DeleteCloudFrontOriginAccessIdentityCommandInput,
|
|
125
133
|
DeleteCloudFrontOriginAccessIdentityCommandOutput,
|
|
126
134
|
} from "./commands/DeleteCloudFrontOriginAccessIdentityCommand";
|
|
135
|
+
import {
|
|
136
|
+
DeleteConnectionFunctionCommandInput,
|
|
137
|
+
DeleteConnectionFunctionCommandOutput,
|
|
138
|
+
} from "./commands/DeleteConnectionFunctionCommand";
|
|
127
139
|
import {
|
|
128
140
|
DeleteConnectionGroupCommandInput,
|
|
129
141
|
DeleteConnectionGroupCommandOutput,
|
|
@@ -192,10 +204,18 @@ import {
|
|
|
192
204
|
DeleteStreamingDistributionCommandInput,
|
|
193
205
|
DeleteStreamingDistributionCommandOutput,
|
|
194
206
|
} from "./commands/DeleteStreamingDistributionCommand";
|
|
207
|
+
import {
|
|
208
|
+
DeleteTrustStoreCommandInput,
|
|
209
|
+
DeleteTrustStoreCommandOutput,
|
|
210
|
+
} from "./commands/DeleteTrustStoreCommand";
|
|
195
211
|
import {
|
|
196
212
|
DeleteVpcOriginCommandInput,
|
|
197
213
|
DeleteVpcOriginCommandOutput,
|
|
198
214
|
} from "./commands/DeleteVpcOriginCommand";
|
|
215
|
+
import {
|
|
216
|
+
DescribeConnectionFunctionCommandInput,
|
|
217
|
+
DescribeConnectionFunctionCommandOutput,
|
|
218
|
+
} from "./commands/DescribeConnectionFunctionCommand";
|
|
199
219
|
import {
|
|
200
220
|
DescribeFunctionCommandInput,
|
|
201
221
|
DescribeFunctionCommandOutput,
|
|
@@ -232,6 +252,10 @@ import {
|
|
|
232
252
|
GetCloudFrontOriginAccessIdentityConfigCommandInput,
|
|
233
253
|
GetCloudFrontOriginAccessIdentityConfigCommandOutput,
|
|
234
254
|
} from "./commands/GetCloudFrontOriginAccessIdentityConfigCommand";
|
|
255
|
+
import {
|
|
256
|
+
GetConnectionFunctionCommandInput,
|
|
257
|
+
GetConnectionFunctionCommandOutput,
|
|
258
|
+
} from "./commands/GetConnectionFunctionCommand";
|
|
235
259
|
import {
|
|
236
260
|
GetConnectionGroupByRoutingEndpointCommandInput,
|
|
237
261
|
GetConnectionGroupByRoutingEndpointCommandOutput,
|
|
@@ -356,6 +380,10 @@ import {
|
|
|
356
380
|
GetStreamingDistributionConfigCommandInput,
|
|
357
381
|
GetStreamingDistributionConfigCommandOutput,
|
|
358
382
|
} from "./commands/GetStreamingDistributionConfigCommand";
|
|
383
|
+
import {
|
|
384
|
+
GetTrustStoreCommandInput,
|
|
385
|
+
GetTrustStoreCommandOutput,
|
|
386
|
+
} from "./commands/GetTrustStoreCommand";
|
|
359
387
|
import {
|
|
360
388
|
GetVpcOriginCommandInput,
|
|
361
389
|
GetVpcOriginCommandOutput,
|
|
@@ -376,6 +404,10 @@ import {
|
|
|
376
404
|
ListConflictingAliasesCommandInput,
|
|
377
405
|
ListConflictingAliasesCommandOutput,
|
|
378
406
|
} from "./commands/ListConflictingAliasesCommand";
|
|
407
|
+
import {
|
|
408
|
+
ListConnectionFunctionsCommandInput,
|
|
409
|
+
ListConnectionFunctionsCommandOutput,
|
|
410
|
+
} from "./commands/ListConnectionFunctionsCommand";
|
|
379
411
|
import {
|
|
380
412
|
ListConnectionGroupsCommandInput,
|
|
381
413
|
ListConnectionGroupsCommandOutput,
|
|
@@ -392,6 +424,10 @@ import {
|
|
|
392
424
|
ListDistributionsByCachePolicyIdCommandInput,
|
|
393
425
|
ListDistributionsByCachePolicyIdCommandOutput,
|
|
394
426
|
} from "./commands/ListDistributionsByCachePolicyIdCommand";
|
|
427
|
+
import {
|
|
428
|
+
ListDistributionsByConnectionFunctionCommandInput,
|
|
429
|
+
ListDistributionsByConnectionFunctionCommandOutput,
|
|
430
|
+
} from "./commands/ListDistributionsByConnectionFunctionCommand";
|
|
395
431
|
import {
|
|
396
432
|
ListDistributionsByConnectionModeCommandInput,
|
|
397
433
|
ListDistributionsByConnectionModeCommandOutput,
|
|
@@ -416,6 +452,10 @@ import {
|
|
|
416
452
|
ListDistributionsByResponseHeadersPolicyIdCommandInput,
|
|
417
453
|
ListDistributionsByResponseHeadersPolicyIdCommandOutput,
|
|
418
454
|
} from "./commands/ListDistributionsByResponseHeadersPolicyIdCommand";
|
|
455
|
+
import {
|
|
456
|
+
ListDistributionsByTrustStoreCommandInput,
|
|
457
|
+
ListDistributionsByTrustStoreCommandOutput,
|
|
458
|
+
} from "./commands/ListDistributionsByTrustStoreCommand";
|
|
419
459
|
import {
|
|
420
460
|
ListDistributionsByVpcOriginIdCommandInput,
|
|
421
461
|
ListDistributionsByVpcOriginIdCommandOutput,
|
|
@@ -496,10 +536,18 @@ import {
|
|
|
496
536
|
ListTagsForResourceCommandInput,
|
|
497
537
|
ListTagsForResourceCommandOutput,
|
|
498
538
|
} from "./commands/ListTagsForResourceCommand";
|
|
539
|
+
import {
|
|
540
|
+
ListTrustStoresCommandInput,
|
|
541
|
+
ListTrustStoresCommandOutput,
|
|
542
|
+
} from "./commands/ListTrustStoresCommand";
|
|
499
543
|
import {
|
|
500
544
|
ListVpcOriginsCommandInput,
|
|
501
545
|
ListVpcOriginsCommandOutput,
|
|
502
546
|
} from "./commands/ListVpcOriginsCommand";
|
|
547
|
+
import {
|
|
548
|
+
PublishConnectionFunctionCommandInput,
|
|
549
|
+
PublishConnectionFunctionCommandOutput,
|
|
550
|
+
} from "./commands/PublishConnectionFunctionCommand";
|
|
503
551
|
import {
|
|
504
552
|
PublishFunctionCommandInput,
|
|
505
553
|
PublishFunctionCommandOutput,
|
|
@@ -512,6 +560,10 @@ import {
|
|
|
512
560
|
TagResourceCommandInput,
|
|
513
561
|
TagResourceCommandOutput,
|
|
514
562
|
} from "./commands/TagResourceCommand";
|
|
563
|
+
import {
|
|
564
|
+
TestConnectionFunctionCommandInput,
|
|
565
|
+
TestConnectionFunctionCommandOutput,
|
|
566
|
+
} from "./commands/TestConnectionFunctionCommand";
|
|
515
567
|
import {
|
|
516
568
|
TestFunctionCommandInput,
|
|
517
569
|
TestFunctionCommandOutput,
|
|
@@ -532,6 +584,10 @@ import {
|
|
|
532
584
|
UpdateCloudFrontOriginAccessIdentityCommandInput,
|
|
533
585
|
UpdateCloudFrontOriginAccessIdentityCommandOutput,
|
|
534
586
|
} from "./commands/UpdateCloudFrontOriginAccessIdentityCommand";
|
|
587
|
+
import {
|
|
588
|
+
UpdateConnectionFunctionCommandInput,
|
|
589
|
+
UpdateConnectionFunctionCommandOutput,
|
|
590
|
+
} from "./commands/UpdateConnectionFunctionCommand";
|
|
535
591
|
import {
|
|
536
592
|
UpdateConnectionGroupCommandInput,
|
|
537
593
|
UpdateConnectionGroupCommandOutput,
|
|
@@ -600,6 +656,10 @@ import {
|
|
|
600
656
|
UpdateStreamingDistributionCommandInput,
|
|
601
657
|
UpdateStreamingDistributionCommandOutput,
|
|
602
658
|
} from "./commands/UpdateStreamingDistributionCommand";
|
|
659
|
+
import {
|
|
660
|
+
UpdateTrustStoreCommandInput,
|
|
661
|
+
UpdateTrustStoreCommandOutput,
|
|
662
|
+
} from "./commands/UpdateTrustStoreCommand";
|
|
603
663
|
import {
|
|
604
664
|
UpdateVpcOriginCommandInput,
|
|
605
665
|
UpdateVpcOriginCommandOutput,
|
|
@@ -712,6 +772,19 @@ export interface CloudFront {
|
|
|
712
772
|
data?: CreateCloudFrontOriginAccessIdentityCommandOutput
|
|
713
773
|
) => void
|
|
714
774
|
): void;
|
|
775
|
+
createConnectionFunction(
|
|
776
|
+
args: CreateConnectionFunctionCommandInput,
|
|
777
|
+
options?: __HttpHandlerOptions
|
|
778
|
+
): Promise<CreateConnectionFunctionCommandOutput>;
|
|
779
|
+
createConnectionFunction(
|
|
780
|
+
args: CreateConnectionFunctionCommandInput,
|
|
781
|
+
cb: (err: any, data?: CreateConnectionFunctionCommandOutput) => void
|
|
782
|
+
): void;
|
|
783
|
+
createConnectionFunction(
|
|
784
|
+
args: CreateConnectionFunctionCommandInput,
|
|
785
|
+
options: __HttpHandlerOptions,
|
|
786
|
+
cb: (err: any, data?: CreateConnectionFunctionCommandOutput) => void
|
|
787
|
+
): void;
|
|
715
788
|
createConnectionGroup(
|
|
716
789
|
args: CreateConnectionGroupCommandInput,
|
|
717
790
|
options?: __HttpHandlerOptions
|
|
@@ -990,6 +1063,19 @@ export interface CloudFront {
|
|
|
990
1063
|
data?: CreateStreamingDistributionWithTagsCommandOutput
|
|
991
1064
|
) => void
|
|
992
1065
|
): void;
|
|
1066
|
+
createTrustStore(
|
|
1067
|
+
args: CreateTrustStoreCommandInput,
|
|
1068
|
+
options?: __HttpHandlerOptions
|
|
1069
|
+
): Promise<CreateTrustStoreCommandOutput>;
|
|
1070
|
+
createTrustStore(
|
|
1071
|
+
args: CreateTrustStoreCommandInput,
|
|
1072
|
+
cb: (err: any, data?: CreateTrustStoreCommandOutput) => void
|
|
1073
|
+
): void;
|
|
1074
|
+
createTrustStore(
|
|
1075
|
+
args: CreateTrustStoreCommandInput,
|
|
1076
|
+
options: __HttpHandlerOptions,
|
|
1077
|
+
cb: (err: any, data?: CreateTrustStoreCommandOutput) => void
|
|
1078
|
+
): void;
|
|
993
1079
|
createVpcOrigin(
|
|
994
1080
|
args: CreateVpcOriginCommandInput,
|
|
995
1081
|
options?: __HttpHandlerOptions
|
|
@@ -1048,6 +1134,19 @@ export interface CloudFront {
|
|
|
1048
1134
|
data?: DeleteCloudFrontOriginAccessIdentityCommandOutput
|
|
1049
1135
|
) => void
|
|
1050
1136
|
): void;
|
|
1137
|
+
deleteConnectionFunction(
|
|
1138
|
+
args: DeleteConnectionFunctionCommandInput,
|
|
1139
|
+
options?: __HttpHandlerOptions
|
|
1140
|
+
): Promise<DeleteConnectionFunctionCommandOutput>;
|
|
1141
|
+
deleteConnectionFunction(
|
|
1142
|
+
args: DeleteConnectionFunctionCommandInput,
|
|
1143
|
+
cb: (err: any, data?: DeleteConnectionFunctionCommandOutput) => void
|
|
1144
|
+
): void;
|
|
1145
|
+
deleteConnectionFunction(
|
|
1146
|
+
args: DeleteConnectionFunctionCommandInput,
|
|
1147
|
+
options: __HttpHandlerOptions,
|
|
1148
|
+
cb: (err: any, data?: DeleteConnectionFunctionCommandOutput) => void
|
|
1149
|
+
): void;
|
|
1051
1150
|
deleteConnectionGroup(
|
|
1052
1151
|
args: DeleteConnectionGroupCommandInput,
|
|
1053
1152
|
options?: __HttpHandlerOptions
|
|
@@ -1276,6 +1375,19 @@ export interface CloudFront {
|
|
|
1276
1375
|
options: __HttpHandlerOptions,
|
|
1277
1376
|
cb: (err: any, data?: DeleteStreamingDistributionCommandOutput) => void
|
|
1278
1377
|
): void;
|
|
1378
|
+
deleteTrustStore(
|
|
1379
|
+
args: DeleteTrustStoreCommandInput,
|
|
1380
|
+
options?: __HttpHandlerOptions
|
|
1381
|
+
): Promise<DeleteTrustStoreCommandOutput>;
|
|
1382
|
+
deleteTrustStore(
|
|
1383
|
+
args: DeleteTrustStoreCommandInput,
|
|
1384
|
+
cb: (err: any, data?: DeleteTrustStoreCommandOutput) => void
|
|
1385
|
+
): void;
|
|
1386
|
+
deleteTrustStore(
|
|
1387
|
+
args: DeleteTrustStoreCommandInput,
|
|
1388
|
+
options: __HttpHandlerOptions,
|
|
1389
|
+
cb: (err: any, data?: DeleteTrustStoreCommandOutput) => void
|
|
1390
|
+
): void;
|
|
1279
1391
|
deleteVpcOrigin(
|
|
1280
1392
|
args: DeleteVpcOriginCommandInput,
|
|
1281
1393
|
options?: __HttpHandlerOptions
|
|
@@ -1289,6 +1401,19 @@ export interface CloudFront {
|
|
|
1289
1401
|
options: __HttpHandlerOptions,
|
|
1290
1402
|
cb: (err: any, data?: DeleteVpcOriginCommandOutput) => void
|
|
1291
1403
|
): void;
|
|
1404
|
+
describeConnectionFunction(
|
|
1405
|
+
args: DescribeConnectionFunctionCommandInput,
|
|
1406
|
+
options?: __HttpHandlerOptions
|
|
1407
|
+
): Promise<DescribeConnectionFunctionCommandOutput>;
|
|
1408
|
+
describeConnectionFunction(
|
|
1409
|
+
args: DescribeConnectionFunctionCommandInput,
|
|
1410
|
+
cb: (err: any, data?: DescribeConnectionFunctionCommandOutput) => void
|
|
1411
|
+
): void;
|
|
1412
|
+
describeConnectionFunction(
|
|
1413
|
+
args: DescribeConnectionFunctionCommandInput,
|
|
1414
|
+
options: __HttpHandlerOptions,
|
|
1415
|
+
cb: (err: any, data?: DescribeConnectionFunctionCommandOutput) => void
|
|
1416
|
+
): void;
|
|
1292
1417
|
describeFunction(
|
|
1293
1418
|
args: DescribeFunctionCommandInput,
|
|
1294
1419
|
options?: __HttpHandlerOptions
|
|
@@ -1424,6 +1549,19 @@ export interface CloudFront {
|
|
|
1424
1549
|
data?: GetCloudFrontOriginAccessIdentityConfigCommandOutput
|
|
1425
1550
|
) => void
|
|
1426
1551
|
): void;
|
|
1552
|
+
getConnectionFunction(
|
|
1553
|
+
args: GetConnectionFunctionCommandInput,
|
|
1554
|
+
options?: __HttpHandlerOptions
|
|
1555
|
+
): Promise<GetConnectionFunctionCommandOutput>;
|
|
1556
|
+
getConnectionFunction(
|
|
1557
|
+
args: GetConnectionFunctionCommandInput,
|
|
1558
|
+
cb: (err: any, data?: GetConnectionFunctionCommandOutput) => void
|
|
1559
|
+
): void;
|
|
1560
|
+
getConnectionFunction(
|
|
1561
|
+
args: GetConnectionFunctionCommandInput,
|
|
1562
|
+
options: __HttpHandlerOptions,
|
|
1563
|
+
cb: (err: any, data?: GetConnectionFunctionCommandOutput) => void
|
|
1564
|
+
): void;
|
|
1427
1565
|
getConnectionGroup(
|
|
1428
1566
|
args: GetConnectionGroupCommandInput,
|
|
1429
1567
|
options?: __HttpHandlerOptions
|
|
@@ -1852,6 +1990,19 @@ export interface CloudFront {
|
|
|
1852
1990
|
options: __HttpHandlerOptions,
|
|
1853
1991
|
cb: (err: any, data?: GetStreamingDistributionConfigCommandOutput) => void
|
|
1854
1992
|
): void;
|
|
1993
|
+
getTrustStore(
|
|
1994
|
+
args: GetTrustStoreCommandInput,
|
|
1995
|
+
options?: __HttpHandlerOptions
|
|
1996
|
+
): Promise<GetTrustStoreCommandOutput>;
|
|
1997
|
+
getTrustStore(
|
|
1998
|
+
args: GetTrustStoreCommandInput,
|
|
1999
|
+
cb: (err: any, data?: GetTrustStoreCommandOutput) => void
|
|
2000
|
+
): void;
|
|
2001
|
+
getTrustStore(
|
|
2002
|
+
args: GetTrustStoreCommandInput,
|
|
2003
|
+
options: __HttpHandlerOptions,
|
|
2004
|
+
cb: (err: any, data?: GetTrustStoreCommandOutput) => void
|
|
2005
|
+
): void;
|
|
1855
2006
|
getVpcOrigin(
|
|
1856
2007
|
args: GetVpcOriginCommandInput,
|
|
1857
2008
|
options?: __HttpHandlerOptions
|
|
@@ -1926,6 +2077,20 @@ export interface CloudFront {
|
|
|
1926
2077
|
options: __HttpHandlerOptions,
|
|
1927
2078
|
cb: (err: any, data?: ListConflictingAliasesCommandOutput) => void
|
|
1928
2079
|
): void;
|
|
2080
|
+
listConnectionFunctions(): Promise<ListConnectionFunctionsCommandOutput>;
|
|
2081
|
+
listConnectionFunctions(
|
|
2082
|
+
args: ListConnectionFunctionsCommandInput,
|
|
2083
|
+
options?: __HttpHandlerOptions
|
|
2084
|
+
): Promise<ListConnectionFunctionsCommandOutput>;
|
|
2085
|
+
listConnectionFunctions(
|
|
2086
|
+
args: ListConnectionFunctionsCommandInput,
|
|
2087
|
+
cb: (err: any, data?: ListConnectionFunctionsCommandOutput) => void
|
|
2088
|
+
): void;
|
|
2089
|
+
listConnectionFunctions(
|
|
2090
|
+
args: ListConnectionFunctionsCommandInput,
|
|
2091
|
+
options: __HttpHandlerOptions,
|
|
2092
|
+
cb: (err: any, data?: ListConnectionFunctionsCommandOutput) => void
|
|
2093
|
+
): void;
|
|
1929
2094
|
listConnectionGroups(): Promise<ListConnectionGroupsCommandOutput>;
|
|
1930
2095
|
listConnectionGroups(
|
|
1931
2096
|
args: ListConnectionGroupsCommandInput,
|
|
@@ -2000,6 +2165,25 @@ export interface CloudFront {
|
|
|
2000
2165
|
options: __HttpHandlerOptions,
|
|
2001
2166
|
cb: (err: any, data?: ListDistributionsByCachePolicyIdCommandOutput) => void
|
|
2002
2167
|
): void;
|
|
2168
|
+
listDistributionsByConnectionFunction(
|
|
2169
|
+
args: ListDistributionsByConnectionFunctionCommandInput,
|
|
2170
|
+
options?: __HttpHandlerOptions
|
|
2171
|
+
): Promise<ListDistributionsByConnectionFunctionCommandOutput>;
|
|
2172
|
+
listDistributionsByConnectionFunction(
|
|
2173
|
+
args: ListDistributionsByConnectionFunctionCommandInput,
|
|
2174
|
+
cb: (
|
|
2175
|
+
err: any,
|
|
2176
|
+
data?: ListDistributionsByConnectionFunctionCommandOutput
|
|
2177
|
+
) => void
|
|
2178
|
+
): void;
|
|
2179
|
+
listDistributionsByConnectionFunction(
|
|
2180
|
+
args: ListDistributionsByConnectionFunctionCommandInput,
|
|
2181
|
+
options: __HttpHandlerOptions,
|
|
2182
|
+
cb: (
|
|
2183
|
+
err: any,
|
|
2184
|
+
data?: ListDistributionsByConnectionFunctionCommandOutput
|
|
2185
|
+
) => void
|
|
2186
|
+
): void;
|
|
2003
2187
|
listDistributionsByConnectionMode(
|
|
2004
2188
|
args: ListDistributionsByConnectionModeCommandInput,
|
|
2005
2189
|
options?: __HttpHandlerOptions
|
|
@@ -2103,6 +2287,19 @@ export interface CloudFront {
|
|
|
2103
2287
|
data?: ListDistributionsByResponseHeadersPolicyIdCommandOutput
|
|
2104
2288
|
) => void
|
|
2105
2289
|
): void;
|
|
2290
|
+
listDistributionsByTrustStore(
|
|
2291
|
+
args: ListDistributionsByTrustStoreCommandInput,
|
|
2292
|
+
options?: __HttpHandlerOptions
|
|
2293
|
+
): Promise<ListDistributionsByTrustStoreCommandOutput>;
|
|
2294
|
+
listDistributionsByTrustStore(
|
|
2295
|
+
args: ListDistributionsByTrustStoreCommandInput,
|
|
2296
|
+
cb: (err: any, data?: ListDistributionsByTrustStoreCommandOutput) => void
|
|
2297
|
+
): void;
|
|
2298
|
+
listDistributionsByTrustStore(
|
|
2299
|
+
args: ListDistributionsByTrustStoreCommandInput,
|
|
2300
|
+
options: __HttpHandlerOptions,
|
|
2301
|
+
cb: (err: any, data?: ListDistributionsByTrustStoreCommandOutput) => void
|
|
2302
|
+
): void;
|
|
2106
2303
|
listDistributionsByVpcOriginId(
|
|
2107
2304
|
args: ListDistributionsByVpcOriginIdCommandInput,
|
|
2108
2305
|
options?: __HttpHandlerOptions
|
|
@@ -2375,6 +2572,20 @@ export interface CloudFront {
|
|
|
2375
2572
|
options: __HttpHandlerOptions,
|
|
2376
2573
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
2377
2574
|
): void;
|
|
2575
|
+
listTrustStores(): Promise<ListTrustStoresCommandOutput>;
|
|
2576
|
+
listTrustStores(
|
|
2577
|
+
args: ListTrustStoresCommandInput,
|
|
2578
|
+
options?: __HttpHandlerOptions
|
|
2579
|
+
): Promise<ListTrustStoresCommandOutput>;
|
|
2580
|
+
listTrustStores(
|
|
2581
|
+
args: ListTrustStoresCommandInput,
|
|
2582
|
+
cb: (err: any, data?: ListTrustStoresCommandOutput) => void
|
|
2583
|
+
): void;
|
|
2584
|
+
listTrustStores(
|
|
2585
|
+
args: ListTrustStoresCommandInput,
|
|
2586
|
+
options: __HttpHandlerOptions,
|
|
2587
|
+
cb: (err: any, data?: ListTrustStoresCommandOutput) => void
|
|
2588
|
+
): void;
|
|
2378
2589
|
listVpcOrigins(): Promise<ListVpcOriginsCommandOutput>;
|
|
2379
2590
|
listVpcOrigins(
|
|
2380
2591
|
args: ListVpcOriginsCommandInput,
|
|
@@ -2389,6 +2600,19 @@ export interface CloudFront {
|
|
|
2389
2600
|
options: __HttpHandlerOptions,
|
|
2390
2601
|
cb: (err: any, data?: ListVpcOriginsCommandOutput) => void
|
|
2391
2602
|
): void;
|
|
2603
|
+
publishConnectionFunction(
|
|
2604
|
+
args: PublishConnectionFunctionCommandInput,
|
|
2605
|
+
options?: __HttpHandlerOptions
|
|
2606
|
+
): Promise<PublishConnectionFunctionCommandOutput>;
|
|
2607
|
+
publishConnectionFunction(
|
|
2608
|
+
args: PublishConnectionFunctionCommandInput,
|
|
2609
|
+
cb: (err: any, data?: PublishConnectionFunctionCommandOutput) => void
|
|
2610
|
+
): void;
|
|
2611
|
+
publishConnectionFunction(
|
|
2612
|
+
args: PublishConnectionFunctionCommandInput,
|
|
2613
|
+
options: __HttpHandlerOptions,
|
|
2614
|
+
cb: (err: any, data?: PublishConnectionFunctionCommandOutput) => void
|
|
2615
|
+
): void;
|
|
2392
2616
|
publishFunction(
|
|
2393
2617
|
args: PublishFunctionCommandInput,
|
|
2394
2618
|
options?: __HttpHandlerOptions
|
|
@@ -2428,6 +2652,19 @@ export interface CloudFront {
|
|
|
2428
2652
|
options: __HttpHandlerOptions,
|
|
2429
2653
|
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
2430
2654
|
): void;
|
|
2655
|
+
testConnectionFunction(
|
|
2656
|
+
args: TestConnectionFunctionCommandInput,
|
|
2657
|
+
options?: __HttpHandlerOptions
|
|
2658
|
+
): Promise<TestConnectionFunctionCommandOutput>;
|
|
2659
|
+
testConnectionFunction(
|
|
2660
|
+
args: TestConnectionFunctionCommandInput,
|
|
2661
|
+
cb: (err: any, data?: TestConnectionFunctionCommandOutput) => void
|
|
2662
|
+
): void;
|
|
2663
|
+
testConnectionFunction(
|
|
2664
|
+
args: TestConnectionFunctionCommandInput,
|
|
2665
|
+
options: __HttpHandlerOptions,
|
|
2666
|
+
cb: (err: any, data?: TestConnectionFunctionCommandOutput) => void
|
|
2667
|
+
): void;
|
|
2431
2668
|
testFunction(
|
|
2432
2669
|
args: TestFunctionCommandInput,
|
|
2433
2670
|
options?: __HttpHandlerOptions
|
|
@@ -2499,6 +2736,19 @@ export interface CloudFront {
|
|
|
2499
2736
|
data?: UpdateCloudFrontOriginAccessIdentityCommandOutput
|
|
2500
2737
|
) => void
|
|
2501
2738
|
): void;
|
|
2739
|
+
updateConnectionFunction(
|
|
2740
|
+
args: UpdateConnectionFunctionCommandInput,
|
|
2741
|
+
options?: __HttpHandlerOptions
|
|
2742
|
+
): Promise<UpdateConnectionFunctionCommandOutput>;
|
|
2743
|
+
updateConnectionFunction(
|
|
2744
|
+
args: UpdateConnectionFunctionCommandInput,
|
|
2745
|
+
cb: (err: any, data?: UpdateConnectionFunctionCommandOutput) => void
|
|
2746
|
+
): void;
|
|
2747
|
+
updateConnectionFunction(
|
|
2748
|
+
args: UpdateConnectionFunctionCommandInput,
|
|
2749
|
+
options: __HttpHandlerOptions,
|
|
2750
|
+
cb: (err: any, data?: UpdateConnectionFunctionCommandOutput) => void
|
|
2751
|
+
): void;
|
|
2502
2752
|
updateConnectionGroup(
|
|
2503
2753
|
args: UpdateConnectionGroupCommandInput,
|
|
2504
2754
|
options?: __HttpHandlerOptions
|
|
@@ -2733,6 +2983,19 @@ export interface CloudFront {
|
|
|
2733
2983
|
options: __HttpHandlerOptions,
|
|
2734
2984
|
cb: (err: any, data?: UpdateStreamingDistributionCommandOutput) => void
|
|
2735
2985
|
): void;
|
|
2986
|
+
updateTrustStore(
|
|
2987
|
+
args: UpdateTrustStoreCommandInput,
|
|
2988
|
+
options?: __HttpHandlerOptions
|
|
2989
|
+
): Promise<UpdateTrustStoreCommandOutput>;
|
|
2990
|
+
updateTrustStore(
|
|
2991
|
+
args: UpdateTrustStoreCommandInput,
|
|
2992
|
+
cb: (err: any, data?: UpdateTrustStoreCommandOutput) => void
|
|
2993
|
+
): void;
|
|
2994
|
+
updateTrustStore(
|
|
2995
|
+
args: UpdateTrustStoreCommandInput,
|
|
2996
|
+
options: __HttpHandlerOptions,
|
|
2997
|
+
cb: (err: any, data?: UpdateTrustStoreCommandOutput) => void
|
|
2998
|
+
): void;
|
|
2736
2999
|
updateVpcOrigin(
|
|
2737
3000
|
args: UpdateVpcOriginCommandInput,
|
|
2738
3001
|
options?: __HttpHandlerOptions
|