@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/README.md
CHANGED
|
@@ -258,6 +258,14 @@ CreateCloudFrontOriginAccessIdentity
|
|
|
258
258
|
|
|
259
259
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/CreateCloudFrontOriginAccessIdentityCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/CreateCloudFrontOriginAccessIdentityCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/CreateCloudFrontOriginAccessIdentityCommandOutput/)
|
|
260
260
|
|
|
261
|
+
</details>
|
|
262
|
+
<details>
|
|
263
|
+
<summary>
|
|
264
|
+
CreateConnectionFunction
|
|
265
|
+
</summary>
|
|
266
|
+
|
|
267
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/CreateConnectionFunctionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/CreateConnectionFunctionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/CreateConnectionFunctionCommandOutput/)
|
|
268
|
+
|
|
261
269
|
</details>
|
|
262
270
|
<details>
|
|
263
271
|
<summary>
|
|
@@ -418,6 +426,14 @@ CreateStreamingDistributionWithTags
|
|
|
418
426
|
|
|
419
427
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/CreateStreamingDistributionWithTagsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/CreateStreamingDistributionWithTagsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/CreateStreamingDistributionWithTagsCommandOutput/)
|
|
420
428
|
|
|
429
|
+
</details>
|
|
430
|
+
<details>
|
|
431
|
+
<summary>
|
|
432
|
+
CreateTrustStore
|
|
433
|
+
</summary>
|
|
434
|
+
|
|
435
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/CreateTrustStoreCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/CreateTrustStoreCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/CreateTrustStoreCommandOutput/)
|
|
436
|
+
|
|
421
437
|
</details>
|
|
422
438
|
<details>
|
|
423
439
|
<summary>
|
|
@@ -450,6 +466,14 @@ DeleteCloudFrontOriginAccessIdentity
|
|
|
450
466
|
|
|
451
467
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/DeleteCloudFrontOriginAccessIdentityCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/DeleteCloudFrontOriginAccessIdentityCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/DeleteCloudFrontOriginAccessIdentityCommandOutput/)
|
|
452
468
|
|
|
469
|
+
</details>
|
|
470
|
+
<details>
|
|
471
|
+
<summary>
|
|
472
|
+
DeleteConnectionFunction
|
|
473
|
+
</summary>
|
|
474
|
+
|
|
475
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/DeleteConnectionFunctionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/DeleteConnectionFunctionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/DeleteConnectionFunctionCommandOutput/)
|
|
476
|
+
|
|
453
477
|
</details>
|
|
454
478
|
<details>
|
|
455
479
|
<summary>
|
|
@@ -586,6 +610,14 @@ DeleteStreamingDistribution
|
|
|
586
610
|
|
|
587
611
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/DeleteStreamingDistributionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/DeleteStreamingDistributionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/DeleteStreamingDistributionCommandOutput/)
|
|
588
612
|
|
|
613
|
+
</details>
|
|
614
|
+
<details>
|
|
615
|
+
<summary>
|
|
616
|
+
DeleteTrustStore
|
|
617
|
+
</summary>
|
|
618
|
+
|
|
619
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/DeleteTrustStoreCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/DeleteTrustStoreCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/DeleteTrustStoreCommandOutput/)
|
|
620
|
+
|
|
589
621
|
</details>
|
|
590
622
|
<details>
|
|
591
623
|
<summary>
|
|
@@ -594,6 +626,14 @@ DeleteVpcOrigin
|
|
|
594
626
|
|
|
595
627
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/DeleteVpcOriginCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/DeleteVpcOriginCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/DeleteVpcOriginCommandOutput/)
|
|
596
628
|
|
|
629
|
+
</details>
|
|
630
|
+
<details>
|
|
631
|
+
<summary>
|
|
632
|
+
DescribeConnectionFunction
|
|
633
|
+
</summary>
|
|
634
|
+
|
|
635
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/DescribeConnectionFunctionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/DescribeConnectionFunctionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/DescribeConnectionFunctionCommandOutput/)
|
|
636
|
+
|
|
597
637
|
</details>
|
|
598
638
|
<details>
|
|
599
639
|
<summary>
|
|
@@ -666,6 +706,14 @@ GetCloudFrontOriginAccessIdentityConfig
|
|
|
666
706
|
|
|
667
707
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/GetCloudFrontOriginAccessIdentityConfigCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/GetCloudFrontOriginAccessIdentityConfigCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/GetCloudFrontOriginAccessIdentityConfigCommandOutput/)
|
|
668
708
|
|
|
709
|
+
</details>
|
|
710
|
+
<details>
|
|
711
|
+
<summary>
|
|
712
|
+
GetConnectionFunction
|
|
713
|
+
</summary>
|
|
714
|
+
|
|
715
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/GetConnectionFunctionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/GetConnectionFunctionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/GetConnectionFunctionCommandOutput/)
|
|
716
|
+
|
|
669
717
|
</details>
|
|
670
718
|
<details>
|
|
671
719
|
<summary>
|
|
@@ -914,6 +962,14 @@ GetStreamingDistributionConfig
|
|
|
914
962
|
|
|
915
963
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/GetStreamingDistributionConfigCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/GetStreamingDistributionConfigCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/GetStreamingDistributionConfigCommandOutput/)
|
|
916
964
|
|
|
965
|
+
</details>
|
|
966
|
+
<details>
|
|
967
|
+
<summary>
|
|
968
|
+
GetTrustStore
|
|
969
|
+
</summary>
|
|
970
|
+
|
|
971
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/GetTrustStoreCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/GetTrustStoreCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/GetTrustStoreCommandOutput/)
|
|
972
|
+
|
|
917
973
|
</details>
|
|
918
974
|
<details>
|
|
919
975
|
<summary>
|
|
@@ -954,6 +1010,14 @@ ListConflictingAliases
|
|
|
954
1010
|
|
|
955
1011
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/ListConflictingAliasesCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/ListConflictingAliasesCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/ListConflictingAliasesCommandOutput/)
|
|
956
1012
|
|
|
1013
|
+
</details>
|
|
1014
|
+
<details>
|
|
1015
|
+
<summary>
|
|
1016
|
+
ListConnectionFunctions
|
|
1017
|
+
</summary>
|
|
1018
|
+
|
|
1019
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/ListConnectionFunctionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/ListConnectionFunctionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/ListConnectionFunctionsCommandOutput/)
|
|
1020
|
+
|
|
957
1021
|
</details>
|
|
958
1022
|
<details>
|
|
959
1023
|
<summary>
|
|
@@ -994,6 +1058,14 @@ ListDistributionsByCachePolicyId
|
|
|
994
1058
|
|
|
995
1059
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/ListDistributionsByCachePolicyIdCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/ListDistributionsByCachePolicyIdCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/ListDistributionsByCachePolicyIdCommandOutput/)
|
|
996
1060
|
|
|
1061
|
+
</details>
|
|
1062
|
+
<details>
|
|
1063
|
+
<summary>
|
|
1064
|
+
ListDistributionsByConnectionFunction
|
|
1065
|
+
</summary>
|
|
1066
|
+
|
|
1067
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/ListDistributionsByConnectionFunctionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/ListDistributionsByConnectionFunctionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/ListDistributionsByConnectionFunctionCommandOutput/)
|
|
1068
|
+
|
|
997
1069
|
</details>
|
|
998
1070
|
<details>
|
|
999
1071
|
<summary>
|
|
@@ -1042,6 +1114,14 @@ ListDistributionsByResponseHeadersPolicyId
|
|
|
1042
1114
|
|
|
1043
1115
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/ListDistributionsByResponseHeadersPolicyIdCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/ListDistributionsByResponseHeadersPolicyIdCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/ListDistributionsByResponseHeadersPolicyIdCommandOutput/)
|
|
1044
1116
|
|
|
1117
|
+
</details>
|
|
1118
|
+
<details>
|
|
1119
|
+
<summary>
|
|
1120
|
+
ListDistributionsByTrustStore
|
|
1121
|
+
</summary>
|
|
1122
|
+
|
|
1123
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/ListDistributionsByTrustStoreCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/ListDistributionsByTrustStoreCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/ListDistributionsByTrustStoreCommandOutput/)
|
|
1124
|
+
|
|
1045
1125
|
</details>
|
|
1046
1126
|
<details>
|
|
1047
1127
|
<summary>
|
|
@@ -1194,6 +1274,14 @@ ListTagsForResource
|
|
|
1194
1274
|
|
|
1195
1275
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/ListTagsForResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/ListTagsForResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/ListTagsForResourceCommandOutput/)
|
|
1196
1276
|
|
|
1277
|
+
</details>
|
|
1278
|
+
<details>
|
|
1279
|
+
<summary>
|
|
1280
|
+
ListTrustStores
|
|
1281
|
+
</summary>
|
|
1282
|
+
|
|
1283
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/ListTrustStoresCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/ListTrustStoresCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/ListTrustStoresCommandOutput/)
|
|
1284
|
+
|
|
1197
1285
|
</details>
|
|
1198
1286
|
<details>
|
|
1199
1287
|
<summary>
|
|
@@ -1202,6 +1290,14 @@ ListVpcOrigins
|
|
|
1202
1290
|
|
|
1203
1291
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/ListVpcOriginsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/ListVpcOriginsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/ListVpcOriginsCommandOutput/)
|
|
1204
1292
|
|
|
1293
|
+
</details>
|
|
1294
|
+
<details>
|
|
1295
|
+
<summary>
|
|
1296
|
+
PublishConnectionFunction
|
|
1297
|
+
</summary>
|
|
1298
|
+
|
|
1299
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/PublishConnectionFunctionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/PublishConnectionFunctionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/PublishConnectionFunctionCommandOutput/)
|
|
1300
|
+
|
|
1205
1301
|
</details>
|
|
1206
1302
|
<details>
|
|
1207
1303
|
<summary>
|
|
@@ -1226,6 +1322,14 @@ TagResource
|
|
|
1226
1322
|
|
|
1227
1323
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/TagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/TagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/TagResourceCommandOutput/)
|
|
1228
1324
|
|
|
1325
|
+
</details>
|
|
1326
|
+
<details>
|
|
1327
|
+
<summary>
|
|
1328
|
+
TestConnectionFunction
|
|
1329
|
+
</summary>
|
|
1330
|
+
|
|
1331
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/TestConnectionFunctionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/TestConnectionFunctionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/TestConnectionFunctionCommandOutput/)
|
|
1332
|
+
|
|
1229
1333
|
</details>
|
|
1230
1334
|
<details>
|
|
1231
1335
|
<summary>
|
|
@@ -1266,6 +1370,14 @@ UpdateCloudFrontOriginAccessIdentity
|
|
|
1266
1370
|
|
|
1267
1371
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/UpdateCloudFrontOriginAccessIdentityCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/UpdateCloudFrontOriginAccessIdentityCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/UpdateCloudFrontOriginAccessIdentityCommandOutput/)
|
|
1268
1372
|
|
|
1373
|
+
</details>
|
|
1374
|
+
<details>
|
|
1375
|
+
<summary>
|
|
1376
|
+
UpdateConnectionFunction
|
|
1377
|
+
</summary>
|
|
1378
|
+
|
|
1379
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/UpdateConnectionFunctionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/UpdateConnectionFunctionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/UpdateConnectionFunctionCommandOutput/)
|
|
1380
|
+
|
|
1269
1381
|
</details>
|
|
1270
1382
|
<details>
|
|
1271
1383
|
<summary>
|
|
@@ -1402,6 +1514,14 @@ UpdateStreamingDistribution
|
|
|
1402
1514
|
|
|
1403
1515
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/UpdateStreamingDistributionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/UpdateStreamingDistributionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/UpdateStreamingDistributionCommandOutput/)
|
|
1404
1516
|
|
|
1517
|
+
</details>
|
|
1518
|
+
<details>
|
|
1519
|
+
<summary>
|
|
1520
|
+
UpdateTrustStore
|
|
1521
|
+
</summary>
|
|
1522
|
+
|
|
1523
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/cloudfront/command/UpdateTrustStoreCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/UpdateTrustStoreCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-cloudfront/Interface/UpdateTrustStoreCommandOutput/)
|
|
1524
|
+
|
|
1405
1525
|
</details>
|
|
1406
1526
|
<details>
|
|
1407
1527
|
<summary>
|