@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.
Files changed (118) hide show
  1. package/README.md +120 -0
  2. package/dist-cjs/index.js +1018 -69
  3. package/dist-es/CloudFront.js +30 -0
  4. package/dist-es/commands/CreateConnectionFunctionCommand.js +16 -0
  5. package/dist-es/commands/CreateTrustStoreCommand.js +16 -0
  6. package/dist-es/commands/DeleteConnectionFunctionCommand.js +16 -0
  7. package/dist-es/commands/DeleteTrustStoreCommand.js +16 -0
  8. package/dist-es/commands/DescribeConnectionFunctionCommand.js +16 -0
  9. package/dist-es/commands/GetConnectionFunctionCommand.js +16 -0
  10. package/dist-es/commands/GetTrustStoreCommand.js +16 -0
  11. package/dist-es/commands/ListConnectionFunctionsCommand.js +16 -0
  12. package/dist-es/commands/ListDistributionsByConnectionFunctionCommand.js +16 -0
  13. package/dist-es/commands/ListDistributionsByTrustStoreCommand.js +16 -0
  14. package/dist-es/commands/ListTrustStoresCommand.js +16 -0
  15. package/dist-es/commands/PublishConnectionFunctionCommand.js +16 -0
  16. package/dist-es/commands/TestConnectionFunctionCommand.js +16 -0
  17. package/dist-es/commands/UpdateConnectionFunctionCommand.js +16 -0
  18. package/dist-es/commands/UpdateTrustStoreCommand.js +16 -0
  19. package/dist-es/commands/index.js +18 -3
  20. package/dist-es/models/enums.js +31 -8
  21. package/dist-es/models/errors.js +14 -14
  22. package/dist-es/pagination/ListConnectionFunctionsPaginator.js +4 -0
  23. package/dist-es/pagination/ListDistributionsByConnectionFunctionPaginator.js +4 -0
  24. package/dist-es/pagination/ListDistributionsByTrustStorePaginator.js +4 -0
  25. package/dist-es/pagination/ListTrustStoresPaginator.js +4 -0
  26. package/dist-es/pagination/index.js +4 -0
  27. package/dist-es/schemas/schemas_0.js +735 -34
  28. package/dist-types/CloudFront.d.ts +107 -0
  29. package/dist-types/CloudFrontClient.d.ts +17 -2
  30. package/dist-types/commands/CopyDistributionCommand.d.ts +11 -0
  31. package/dist-types/commands/CreateAnycastIpListCommand.d.ts +19 -0
  32. package/dist-types/commands/CreateConnectionFunctionCommand.d.ts +138 -0
  33. package/dist-types/commands/CreateDistributionCommand.d.ts +22 -0
  34. package/dist-types/commands/CreateDistributionWithTagsCommand.d.ts +22 -0
  35. package/dist-types/commands/CreateTrustStoreCommand.d.ts +117 -0
  36. package/dist-types/commands/DeleteConnectionFunctionCommand.d.ts +94 -0
  37. package/dist-types/commands/DeleteTrustStoreCommand.d.ts +91 -0
  38. package/dist-types/commands/DescribeConnectionFunctionCommand.d.ts +108 -0
  39. package/dist-types/commands/GetAnycastIpListCommand.d.ts +11 -0
  40. package/dist-types/commands/GetConnectionFunctionCommand.d.ts +93 -0
  41. package/dist-types/commands/GetDistributionCommand.d.ts +11 -0
  42. package/dist-types/commands/GetDistributionConfigCommand.d.ts +11 -0
  43. package/dist-types/commands/GetManagedCertificateDetailsCommand.d.ts +2 -1
  44. package/dist-types/commands/GetMonitoringSubscriptionCommand.d.ts +1 -1
  45. package/dist-types/commands/GetOriginAccessControlCommand.d.ts +1 -1
  46. package/dist-types/commands/GetOriginAccessControlConfigCommand.d.ts +1 -1
  47. package/dist-types/commands/GetOriginRequestPolicyCommand.d.ts +1 -1
  48. package/dist-types/commands/GetOriginRequestPolicyConfigCommand.d.ts +1 -1
  49. package/dist-types/commands/GetPublicKeyCommand.d.ts +1 -1
  50. package/dist-types/commands/GetPublicKeyConfigCommand.d.ts +1 -1
  51. package/dist-types/commands/GetRealtimeLogConfigCommand.d.ts +1 -1
  52. package/dist-types/commands/GetTrustStoreCommand.d.ts +92 -0
  53. package/dist-types/commands/ListAnycastIpListsCommand.d.ts +11 -0
  54. package/dist-types/commands/ListConnectionFunctionsCommand.d.ts +108 -0
  55. package/dist-types/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +11 -0
  56. package/dist-types/commands/ListDistributionsByConnectionFunctionCommand.d.ts +412 -0
  57. package/dist-types/commands/ListDistributionsByConnectionModeCommand.d.ts +11 -0
  58. package/dist-types/commands/ListDistributionsByRealtimeLogConfigCommand.d.ts +11 -0
  59. package/dist-types/commands/ListDistributionsByTrustStoreCommand.d.ts +412 -0
  60. package/dist-types/commands/ListDistributionsByWebACLIdCommand.d.ts +11 -0
  61. package/dist-types/commands/ListDistributionsCommand.d.ts +11 -0
  62. package/dist-types/commands/ListTrustStoresCommand.d.ts +96 -0
  63. package/dist-types/commands/PublishConnectionFunctionCommand.d.ts +113 -0
  64. package/dist-types/commands/TestConnectionFunctionCommand.d.ts +123 -0
  65. package/dist-types/commands/UpdateAnycastIpListCommand.d.ts +11 -0
  66. package/dist-types/commands/UpdateConnectionFunctionCommand.d.ts +130 -0
  67. package/dist-types/commands/UpdateDistributionCommand.d.ts +22 -0
  68. package/dist-types/commands/UpdateDistributionWithStagingConfigCommand.d.ts +11 -0
  69. package/dist-types/commands/UpdateTrustStoreCommand.d.ts +107 -0
  70. package/dist-types/commands/index.d.ts +18 -3
  71. package/dist-types/models/enums.d.ts +71 -24
  72. package/dist-types/models/errors.d.ts +13 -13
  73. package/dist-types/models/models_0.d.ts +498 -314
  74. package/dist-types/models/models_1.d.ts +627 -3
  75. package/dist-types/pagination/ListConnectionFunctionsPaginator.d.ts +7 -0
  76. package/dist-types/pagination/ListDistributionsByConnectionFunctionPaginator.d.ts +7 -0
  77. package/dist-types/pagination/ListDistributionsByTrustStorePaginator.d.ts +7 -0
  78. package/dist-types/pagination/ListTrustStoresPaginator.d.ts +7 -0
  79. package/dist-types/pagination/index.d.ts +4 -0
  80. package/dist-types/schemas/schemas_0.d.ts +57 -0
  81. package/dist-types/ts3.4/CloudFront.d.ts +263 -0
  82. package/dist-types/ts3.4/CloudFrontClient.d.ts +90 -0
  83. package/dist-types/ts3.4/commands/CreateConnectionFunctionCommand.d.ts +51 -0
  84. package/dist-types/ts3.4/commands/CreateTrustStoreCommand.d.ts +50 -0
  85. package/dist-types/ts3.4/commands/DeleteConnectionFunctionCommand.d.ts +47 -0
  86. package/dist-types/ts3.4/commands/DeleteTrustStoreCommand.d.ts +45 -0
  87. package/dist-types/ts3.4/commands/DescribeConnectionFunctionCommand.d.ts +51 -0
  88. package/dist-types/ts3.4/commands/GetConnectionFunctionCommand.d.ts +58 -0
  89. package/dist-types/ts3.4/commands/GetManagedCertificateDetailsCommand.d.ts +2 -4
  90. package/dist-types/ts3.4/commands/GetMonitoringSubscriptionCommand.d.ts +1 -1
  91. package/dist-types/ts3.4/commands/GetOriginAccessControlCommand.d.ts +1 -1
  92. package/dist-types/ts3.4/commands/GetOriginAccessControlConfigCommand.d.ts +1 -1
  93. package/dist-types/ts3.4/commands/GetOriginRequestPolicyCommand.d.ts +1 -1
  94. package/dist-types/ts3.4/commands/GetOriginRequestPolicyConfigCommand.d.ts +1 -1
  95. package/dist-types/ts3.4/commands/GetPublicKeyCommand.d.ts +1 -1
  96. package/dist-types/ts3.4/commands/GetPublicKeyConfigCommand.d.ts +1 -1
  97. package/dist-types/ts3.4/commands/GetRealtimeLogConfigCommand.d.ts +1 -1
  98. package/dist-types/ts3.4/commands/GetTrustStoreCommand.d.ts +47 -0
  99. package/dist-types/ts3.4/commands/ListConnectionFunctionsCommand.d.ts +51 -0
  100. package/dist-types/ts3.4/commands/ListDistributionsByConnectionFunctionCommand.d.ts +51 -0
  101. package/dist-types/ts3.4/commands/ListDistributionsByTrustStoreCommand.d.ts +51 -0
  102. package/dist-types/ts3.4/commands/ListTrustStoresCommand.d.ts +50 -0
  103. package/dist-types/ts3.4/commands/PublishConnectionFunctionCommand.d.ts +51 -0
  104. package/dist-types/ts3.4/commands/TestConnectionFunctionCommand.d.ts +51 -0
  105. package/dist-types/ts3.4/commands/UpdateConnectionFunctionCommand.d.ts +51 -0
  106. package/dist-types/ts3.4/commands/UpdateTrustStoreCommand.d.ts +50 -0
  107. package/dist-types/ts3.4/commands/index.d.ts +18 -3
  108. package/dist-types/ts3.4/models/enums.d.ts +40 -11
  109. package/dist-types/ts3.4/models/errors.d.ts +8 -8
  110. package/dist-types/ts3.4/models/models_0.d.ts +131 -82
  111. package/dist-types/ts3.4/models/models_1.d.ts +172 -0
  112. package/dist-types/ts3.4/pagination/ListConnectionFunctionsPaginator.d.ts +11 -0
  113. package/dist-types/ts3.4/pagination/ListDistributionsByConnectionFunctionPaginator.d.ts +11 -0
  114. package/dist-types/ts3.4/pagination/ListDistributionsByTrustStorePaginator.d.ts +11 -0
  115. package/dist-types/ts3.4/pagination/ListTrustStoresPaginator.d.ts +11 -0
  116. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  117. package/dist-types/ts3.4/schemas/schemas_0.d.ts +57 -0
  118. package/package.json +2 -2
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>