@aws-sdk/client-cloudfront 3.937.0 → 3.939.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (112) hide show
  1. package/README.md +120 -0
  2. package/dist-cjs/index.js +977 -63
  3. package/dist-es/CloudFront.js +30 -0
  4. package/dist-es/commands/CreateConnectionFunctionCommand.js +16 -0
  5. package/dist-es/commands/CreateTrustStoreCommand.js +16 -0
  6. package/dist-es/commands/DeleteConnectionFunctionCommand.js +16 -0
  7. package/dist-es/commands/DeleteTrustStoreCommand.js +16 -0
  8. package/dist-es/commands/DescribeConnectionFunctionCommand.js +16 -0
  9. package/dist-es/commands/GetConnectionFunctionCommand.js +16 -0
  10. package/dist-es/commands/GetTrustStoreCommand.js +16 -0
  11. package/dist-es/commands/ListConnectionFunctionsCommand.js +16 -0
  12. package/dist-es/commands/ListDistributionsByConnectionFunctionCommand.js +16 -0
  13. package/dist-es/commands/ListDistributionsByTrustStoreCommand.js +16 -0
  14. package/dist-es/commands/ListTrustStoresCommand.js +16 -0
  15. package/dist-es/commands/PublishConnectionFunctionCommand.js +16 -0
  16. package/dist-es/commands/TestConnectionFunctionCommand.js +16 -0
  17. package/dist-es/commands/UpdateConnectionFunctionCommand.js +16 -0
  18. package/dist-es/commands/UpdateTrustStoreCommand.js +16 -0
  19. package/dist-es/commands/index.js +18 -3
  20. package/dist-es/models/enums.js +17 -8
  21. package/dist-es/models/errors.js +14 -14
  22. package/dist-es/pagination/ListConnectionFunctionsPaginator.js +4 -0
  23. package/dist-es/pagination/ListDistributionsByConnectionFunctionPaginator.js +4 -0
  24. package/dist-es/pagination/ListDistributionsByTrustStorePaginator.js +4 -0
  25. package/dist-es/pagination/ListTrustStoresPaginator.js +4 -0
  26. package/dist-es/pagination/index.js +4 -0
  27. package/dist-es/schemas/schemas_0.js +708 -27
  28. package/dist-types/CloudFront.d.ts +107 -0
  29. package/dist-types/CloudFrontClient.d.ts +17 -2
  30. package/dist-types/commands/CopyDistributionCommand.d.ts +11 -0
  31. package/dist-types/commands/CreateConnectionFunctionCommand.d.ts +138 -0
  32. package/dist-types/commands/CreateDistributionCommand.d.ts +22 -0
  33. package/dist-types/commands/CreateDistributionWithTagsCommand.d.ts +22 -0
  34. package/dist-types/commands/CreateTrustStoreCommand.d.ts +117 -0
  35. package/dist-types/commands/DeleteConnectionFunctionCommand.d.ts +94 -0
  36. package/dist-types/commands/DeleteTrustStoreCommand.d.ts +91 -0
  37. package/dist-types/commands/DescribeConnectionFunctionCommand.d.ts +108 -0
  38. package/dist-types/commands/GetConnectionFunctionCommand.d.ts +93 -0
  39. package/dist-types/commands/GetDistributionCommand.d.ts +11 -0
  40. package/dist-types/commands/GetDistributionConfigCommand.d.ts +11 -0
  41. package/dist-types/commands/GetManagedCertificateDetailsCommand.d.ts +2 -1
  42. package/dist-types/commands/GetMonitoringSubscriptionCommand.d.ts +1 -1
  43. package/dist-types/commands/GetOriginAccessControlCommand.d.ts +1 -1
  44. package/dist-types/commands/GetOriginAccessControlConfigCommand.d.ts +1 -1
  45. package/dist-types/commands/GetOriginRequestPolicyCommand.d.ts +1 -1
  46. package/dist-types/commands/GetOriginRequestPolicyConfigCommand.d.ts +1 -1
  47. package/dist-types/commands/GetPublicKeyCommand.d.ts +1 -1
  48. package/dist-types/commands/GetPublicKeyConfigCommand.d.ts +1 -1
  49. package/dist-types/commands/GetTrustStoreCommand.d.ts +92 -0
  50. package/dist-types/commands/ListConnectionFunctionsCommand.d.ts +108 -0
  51. package/dist-types/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +11 -0
  52. package/dist-types/commands/ListDistributionsByConnectionFunctionCommand.d.ts +412 -0
  53. package/dist-types/commands/ListDistributionsByConnectionModeCommand.d.ts +11 -0
  54. package/dist-types/commands/ListDistributionsByRealtimeLogConfigCommand.d.ts +11 -0
  55. package/dist-types/commands/ListDistributionsByTrustStoreCommand.d.ts +412 -0
  56. package/dist-types/commands/ListDistributionsByWebACLIdCommand.d.ts +11 -0
  57. package/dist-types/commands/ListDistributionsCommand.d.ts +11 -0
  58. package/dist-types/commands/ListTrustStoresCommand.d.ts +96 -0
  59. package/dist-types/commands/PublishConnectionFunctionCommand.d.ts +113 -0
  60. package/dist-types/commands/TestConnectionFunctionCommand.d.ts +123 -0
  61. package/dist-types/commands/UpdateConnectionFunctionCommand.d.ts +130 -0
  62. package/dist-types/commands/UpdateDistributionCommand.d.ts +22 -0
  63. package/dist-types/commands/UpdateDistributionWithStagingConfigCommand.d.ts +11 -0
  64. package/dist-types/commands/UpdateTrustStoreCommand.d.ts +107 -0
  65. package/dist-types/commands/index.d.ts +18 -3
  66. package/dist-types/models/enums.d.ts +49 -24
  67. package/dist-types/models/errors.d.ts +13 -13
  68. package/dist-types/models/models_0.d.ts +440 -288
  69. package/dist-types/models/models_1.d.ts +601 -2
  70. package/dist-types/pagination/ListConnectionFunctionsPaginator.d.ts +7 -0
  71. package/dist-types/pagination/ListDistributionsByConnectionFunctionPaginator.d.ts +7 -0
  72. package/dist-types/pagination/ListDistributionsByTrustStorePaginator.d.ts +7 -0
  73. package/dist-types/pagination/ListTrustStoresPaginator.d.ts +7 -0
  74. package/dist-types/pagination/index.d.ts +4 -0
  75. package/dist-types/schemas/schemas_0.d.ts +54 -0
  76. package/dist-types/ts3.4/CloudFront.d.ts +263 -0
  77. package/dist-types/ts3.4/CloudFrontClient.d.ts +90 -0
  78. package/dist-types/ts3.4/commands/CreateConnectionFunctionCommand.d.ts +51 -0
  79. package/dist-types/ts3.4/commands/CreateTrustStoreCommand.d.ts +50 -0
  80. package/dist-types/ts3.4/commands/DeleteConnectionFunctionCommand.d.ts +47 -0
  81. package/dist-types/ts3.4/commands/DeleteTrustStoreCommand.d.ts +45 -0
  82. package/dist-types/ts3.4/commands/DescribeConnectionFunctionCommand.d.ts +51 -0
  83. package/dist-types/ts3.4/commands/GetConnectionFunctionCommand.d.ts +58 -0
  84. package/dist-types/ts3.4/commands/GetManagedCertificateDetailsCommand.d.ts +2 -4
  85. package/dist-types/ts3.4/commands/GetMonitoringSubscriptionCommand.d.ts +1 -1
  86. package/dist-types/ts3.4/commands/GetOriginAccessControlCommand.d.ts +1 -1
  87. package/dist-types/ts3.4/commands/GetOriginAccessControlConfigCommand.d.ts +1 -1
  88. package/dist-types/ts3.4/commands/GetOriginRequestPolicyCommand.d.ts +1 -1
  89. package/dist-types/ts3.4/commands/GetOriginRequestPolicyConfigCommand.d.ts +1 -1
  90. package/dist-types/ts3.4/commands/GetPublicKeyCommand.d.ts +1 -1
  91. package/dist-types/ts3.4/commands/GetPublicKeyConfigCommand.d.ts +1 -1
  92. package/dist-types/ts3.4/commands/GetTrustStoreCommand.d.ts +47 -0
  93. package/dist-types/ts3.4/commands/ListConnectionFunctionsCommand.d.ts +51 -0
  94. package/dist-types/ts3.4/commands/ListDistributionsByConnectionFunctionCommand.d.ts +51 -0
  95. package/dist-types/ts3.4/commands/ListDistributionsByTrustStoreCommand.d.ts +51 -0
  96. package/dist-types/ts3.4/commands/ListTrustStoresCommand.d.ts +50 -0
  97. package/dist-types/ts3.4/commands/PublishConnectionFunctionCommand.d.ts +51 -0
  98. package/dist-types/ts3.4/commands/TestConnectionFunctionCommand.d.ts +51 -0
  99. package/dist-types/ts3.4/commands/UpdateConnectionFunctionCommand.d.ts +51 -0
  100. package/dist-types/ts3.4/commands/UpdateTrustStoreCommand.d.ts +50 -0
  101. package/dist-types/ts3.4/commands/index.d.ts +18 -3
  102. package/dist-types/ts3.4/models/enums.d.ts +24 -11
  103. package/dist-types/ts3.4/models/errors.d.ts +8 -8
  104. package/dist-types/ts3.4/models/models_0.d.ts +117 -75
  105. package/dist-types/ts3.4/models/models_1.d.ts +165 -0
  106. package/dist-types/ts3.4/pagination/ListConnectionFunctionsPaginator.d.ts +11 -0
  107. package/dist-types/ts3.4/pagination/ListDistributionsByConnectionFunctionPaginator.d.ts +11 -0
  108. package/dist-types/ts3.4/pagination/ListDistributionsByTrustStorePaginator.d.ts +11 -0
  109. package/dist-types/ts3.4/pagination/ListTrustStoresPaginator.d.ts +11 -0
  110. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  111. package/dist-types/ts3.4/schemas/schemas_0.d.ts +54 -0
  112. package/package.json +2 -2
@@ -76,6 +76,10 @@ import {
76
76
  CreateCloudFrontOriginAccessIdentityCommandInput,
77
77
  CreateCloudFrontOriginAccessIdentityCommandOutput,
78
78
  } from "./commands/CreateCloudFrontOriginAccessIdentityCommand";
79
+ import {
80
+ CreateConnectionFunctionCommandInput,
81
+ CreateConnectionFunctionCommandOutput,
82
+ } from "./commands/CreateConnectionFunctionCommand";
79
83
  import {
80
84
  CreateConnectionGroupCommandInput,
81
85
  CreateConnectionGroupCommandOutput,
@@ -156,6 +160,10 @@ import {
156
160
  CreateStreamingDistributionWithTagsCommandInput,
157
161
  CreateStreamingDistributionWithTagsCommandOutput,
158
162
  } from "./commands/CreateStreamingDistributionWithTagsCommand";
163
+ import {
164
+ CreateTrustStoreCommandInput,
165
+ CreateTrustStoreCommandOutput,
166
+ } from "./commands/CreateTrustStoreCommand";
159
167
  import {
160
168
  CreateVpcOriginCommandInput,
161
169
  CreateVpcOriginCommandOutput,
@@ -172,6 +180,10 @@ import {
172
180
  DeleteCloudFrontOriginAccessIdentityCommandInput,
173
181
  DeleteCloudFrontOriginAccessIdentityCommandOutput,
174
182
  } from "./commands/DeleteCloudFrontOriginAccessIdentityCommand";
183
+ import {
184
+ DeleteConnectionFunctionCommandInput,
185
+ DeleteConnectionFunctionCommandOutput,
186
+ } from "./commands/DeleteConnectionFunctionCommand";
175
187
  import {
176
188
  DeleteConnectionGroupCommandInput,
177
189
  DeleteConnectionGroupCommandOutput,
@@ -240,10 +252,18 @@ import {
240
252
  DeleteStreamingDistributionCommandInput,
241
253
  DeleteStreamingDistributionCommandOutput,
242
254
  } from "./commands/DeleteStreamingDistributionCommand";
255
+ import {
256
+ DeleteTrustStoreCommandInput,
257
+ DeleteTrustStoreCommandOutput,
258
+ } from "./commands/DeleteTrustStoreCommand";
243
259
  import {
244
260
  DeleteVpcOriginCommandInput,
245
261
  DeleteVpcOriginCommandOutput,
246
262
  } from "./commands/DeleteVpcOriginCommand";
263
+ import {
264
+ DescribeConnectionFunctionCommandInput,
265
+ DescribeConnectionFunctionCommandOutput,
266
+ } from "./commands/DescribeConnectionFunctionCommand";
247
267
  import {
248
268
  DescribeFunctionCommandInput,
249
269
  DescribeFunctionCommandOutput,
@@ -280,6 +300,10 @@ import {
280
300
  GetCloudFrontOriginAccessIdentityConfigCommandInput,
281
301
  GetCloudFrontOriginAccessIdentityConfigCommandOutput,
282
302
  } from "./commands/GetCloudFrontOriginAccessIdentityConfigCommand";
303
+ import {
304
+ GetConnectionFunctionCommandInput,
305
+ GetConnectionFunctionCommandOutput,
306
+ } from "./commands/GetConnectionFunctionCommand";
283
307
  import {
284
308
  GetConnectionGroupByRoutingEndpointCommandInput,
285
309
  GetConnectionGroupByRoutingEndpointCommandOutput,
@@ -404,6 +428,10 @@ import {
404
428
  GetStreamingDistributionConfigCommandInput,
405
429
  GetStreamingDistributionConfigCommandOutput,
406
430
  } from "./commands/GetStreamingDistributionConfigCommand";
431
+ import {
432
+ GetTrustStoreCommandInput,
433
+ GetTrustStoreCommandOutput,
434
+ } from "./commands/GetTrustStoreCommand";
407
435
  import {
408
436
  GetVpcOriginCommandInput,
409
437
  GetVpcOriginCommandOutput,
@@ -424,6 +452,10 @@ import {
424
452
  ListConflictingAliasesCommandInput,
425
453
  ListConflictingAliasesCommandOutput,
426
454
  } from "./commands/ListConflictingAliasesCommand";
455
+ import {
456
+ ListConnectionFunctionsCommandInput,
457
+ ListConnectionFunctionsCommandOutput,
458
+ } from "./commands/ListConnectionFunctionsCommand";
427
459
  import {
428
460
  ListConnectionGroupsCommandInput,
429
461
  ListConnectionGroupsCommandOutput,
@@ -440,6 +472,10 @@ import {
440
472
  ListDistributionsByCachePolicyIdCommandInput,
441
473
  ListDistributionsByCachePolicyIdCommandOutput,
442
474
  } from "./commands/ListDistributionsByCachePolicyIdCommand";
475
+ import {
476
+ ListDistributionsByConnectionFunctionCommandInput,
477
+ ListDistributionsByConnectionFunctionCommandOutput,
478
+ } from "./commands/ListDistributionsByConnectionFunctionCommand";
443
479
  import {
444
480
  ListDistributionsByConnectionModeCommandInput,
445
481
  ListDistributionsByConnectionModeCommandOutput,
@@ -464,6 +500,10 @@ import {
464
500
  ListDistributionsByResponseHeadersPolicyIdCommandInput,
465
501
  ListDistributionsByResponseHeadersPolicyIdCommandOutput,
466
502
  } from "./commands/ListDistributionsByResponseHeadersPolicyIdCommand";
503
+ import {
504
+ ListDistributionsByTrustStoreCommandInput,
505
+ ListDistributionsByTrustStoreCommandOutput,
506
+ } from "./commands/ListDistributionsByTrustStoreCommand";
467
507
  import {
468
508
  ListDistributionsByVpcOriginIdCommandInput,
469
509
  ListDistributionsByVpcOriginIdCommandOutput,
@@ -544,10 +584,18 @@ import {
544
584
  ListTagsForResourceCommandInput,
545
585
  ListTagsForResourceCommandOutput,
546
586
  } from "./commands/ListTagsForResourceCommand";
587
+ import {
588
+ ListTrustStoresCommandInput,
589
+ ListTrustStoresCommandOutput,
590
+ } from "./commands/ListTrustStoresCommand";
547
591
  import {
548
592
  ListVpcOriginsCommandInput,
549
593
  ListVpcOriginsCommandOutput,
550
594
  } from "./commands/ListVpcOriginsCommand";
595
+ import {
596
+ PublishConnectionFunctionCommandInput,
597
+ PublishConnectionFunctionCommandOutput,
598
+ } from "./commands/PublishConnectionFunctionCommand";
551
599
  import {
552
600
  PublishFunctionCommandInput,
553
601
  PublishFunctionCommandOutput,
@@ -560,6 +608,10 @@ import {
560
608
  TagResourceCommandInput,
561
609
  TagResourceCommandOutput,
562
610
  } from "./commands/TagResourceCommand";
611
+ import {
612
+ TestConnectionFunctionCommandInput,
613
+ TestConnectionFunctionCommandOutput,
614
+ } from "./commands/TestConnectionFunctionCommand";
563
615
  import {
564
616
  TestFunctionCommandInput,
565
617
  TestFunctionCommandOutput,
@@ -580,6 +632,10 @@ import {
580
632
  UpdateCloudFrontOriginAccessIdentityCommandInput,
581
633
  UpdateCloudFrontOriginAccessIdentityCommandOutput,
582
634
  } from "./commands/UpdateCloudFrontOriginAccessIdentityCommand";
635
+ import {
636
+ UpdateConnectionFunctionCommandInput,
637
+ UpdateConnectionFunctionCommandOutput,
638
+ } from "./commands/UpdateConnectionFunctionCommand";
583
639
  import {
584
640
  UpdateConnectionGroupCommandInput,
585
641
  UpdateConnectionGroupCommandOutput,
@@ -648,6 +704,10 @@ import {
648
704
  UpdateStreamingDistributionCommandInput,
649
705
  UpdateStreamingDistributionCommandOutput,
650
706
  } from "./commands/UpdateStreamingDistributionCommand";
707
+ import {
708
+ UpdateTrustStoreCommandInput,
709
+ UpdateTrustStoreCommandOutput,
710
+ } from "./commands/UpdateTrustStoreCommand";
651
711
  import {
652
712
  UpdateVpcOriginCommandInput,
653
713
  UpdateVpcOriginCommandOutput,
@@ -671,6 +731,7 @@ export type ServiceInputTypes =
671
731
  | CreateAnycastIpListCommandInput
672
732
  | CreateCachePolicyCommandInput
673
733
  | CreateCloudFrontOriginAccessIdentityCommandInput
734
+ | CreateConnectionFunctionCommandInput
674
735
  | CreateConnectionGroupCommandInput
675
736
  | CreateContinuousDeploymentPolicyCommandInput
676
737
  | CreateDistributionCommandInput
@@ -691,10 +752,12 @@ export type ServiceInputTypes =
691
752
  | CreateResponseHeadersPolicyCommandInput
692
753
  | CreateStreamingDistributionCommandInput
693
754
  | CreateStreamingDistributionWithTagsCommandInput
755
+ | CreateTrustStoreCommandInput
694
756
  | CreateVpcOriginCommandInput
695
757
  | DeleteAnycastIpListCommandInput
696
758
  | DeleteCachePolicyCommandInput
697
759
  | DeleteCloudFrontOriginAccessIdentityCommandInput
760
+ | DeleteConnectionFunctionCommandInput
698
761
  | DeleteConnectionGroupCommandInput
699
762
  | DeleteContinuousDeploymentPolicyCommandInput
700
763
  | DeleteDistributionCommandInput
@@ -712,7 +775,9 @@ export type ServiceInputTypes =
712
775
  | DeleteResourcePolicyCommandInput
713
776
  | DeleteResponseHeadersPolicyCommandInput
714
777
  | DeleteStreamingDistributionCommandInput
778
+ | DeleteTrustStoreCommandInput
715
779
  | DeleteVpcOriginCommandInput
780
+ | DescribeConnectionFunctionCommandInput
716
781
  | DescribeFunctionCommandInput
717
782
  | DescribeKeyValueStoreCommandInput
718
783
  | DisassociateDistributionTenantWebACLCommandInput
@@ -722,6 +787,7 @@ export type ServiceInputTypes =
722
787
  | GetCachePolicyConfigCommandInput
723
788
  | GetCloudFrontOriginAccessIdentityCommandInput
724
789
  | GetCloudFrontOriginAccessIdentityConfigCommandInput
790
+ | GetConnectionFunctionCommandInput
725
791
  | GetConnectionGroupByRoutingEndpointCommandInput
726
792
  | GetConnectionGroupCommandInput
727
793
  | GetContinuousDeploymentPolicyCommandInput
@@ -753,23 +819,27 @@ export type ServiceInputTypes =
753
819
  | GetResponseHeadersPolicyConfigCommandInput
754
820
  | GetStreamingDistributionCommandInput
755
821
  | GetStreamingDistributionConfigCommandInput
822
+ | GetTrustStoreCommandInput
756
823
  | GetVpcOriginCommandInput
757
824
  | ListAnycastIpListsCommandInput
758
825
  | ListCachePoliciesCommandInput
759
826
  | ListCloudFrontOriginAccessIdentitiesCommandInput
760
827
  | ListConflictingAliasesCommandInput
828
+ | ListConnectionFunctionsCommandInput
761
829
  | ListConnectionGroupsCommandInput
762
830
  | ListContinuousDeploymentPoliciesCommandInput
763
831
  | ListDistributionTenantsByCustomizationCommandInput
764
832
  | ListDistributionTenantsCommandInput
765
833
  | ListDistributionsByAnycastIpListIdCommandInput
766
834
  | ListDistributionsByCachePolicyIdCommandInput
835
+ | ListDistributionsByConnectionFunctionCommandInput
767
836
  | ListDistributionsByConnectionModeCommandInput
768
837
  | ListDistributionsByKeyGroupCommandInput
769
838
  | ListDistributionsByOriginRequestPolicyIdCommandInput
770
839
  | ListDistributionsByOwnedResourceCommandInput
771
840
  | ListDistributionsByRealtimeLogConfigCommandInput
772
841
  | ListDistributionsByResponseHeadersPolicyIdCommandInput
842
+ | ListDistributionsByTrustStoreCommandInput
773
843
  | ListDistributionsByVpcOriginIdCommandInput
774
844
  | ListDistributionsByWebACLIdCommandInput
775
845
  | ListDistributionsCommandInput
@@ -788,15 +858,19 @@ export type ServiceInputTypes =
788
858
  | ListResponseHeadersPoliciesCommandInput
789
859
  | ListStreamingDistributionsCommandInput
790
860
  | ListTagsForResourceCommandInput
861
+ | ListTrustStoresCommandInput
791
862
  | ListVpcOriginsCommandInput
863
+ | PublishConnectionFunctionCommandInput
792
864
  | PublishFunctionCommandInput
793
865
  | PutResourcePolicyCommandInput
794
866
  | TagResourceCommandInput
867
+ | TestConnectionFunctionCommandInput
795
868
  | TestFunctionCommandInput
796
869
  | UntagResourceCommandInput
797
870
  | UpdateAnycastIpListCommandInput
798
871
  | UpdateCachePolicyCommandInput
799
872
  | UpdateCloudFrontOriginAccessIdentityCommandInput
873
+ | UpdateConnectionFunctionCommandInput
800
874
  | UpdateConnectionGroupCommandInput
801
875
  | UpdateContinuousDeploymentPolicyCommandInput
802
876
  | UpdateDistributionCommandInput
@@ -814,6 +888,7 @@ export type ServiceInputTypes =
814
888
  | UpdateRealtimeLogConfigCommandInput
815
889
  | UpdateResponseHeadersPolicyCommandInput
816
890
  | UpdateStreamingDistributionCommandInput
891
+ | UpdateTrustStoreCommandInput
817
892
  | UpdateVpcOriginCommandInput
818
893
  | VerifyDnsConfigurationCommandInput;
819
894
  export type ServiceOutputTypes =
@@ -824,6 +899,7 @@ export type ServiceOutputTypes =
824
899
  | CreateAnycastIpListCommandOutput
825
900
  | CreateCachePolicyCommandOutput
826
901
  | CreateCloudFrontOriginAccessIdentityCommandOutput
902
+ | CreateConnectionFunctionCommandOutput
827
903
  | CreateConnectionGroupCommandOutput
828
904
  | CreateContinuousDeploymentPolicyCommandOutput
829
905
  | CreateDistributionCommandOutput
@@ -844,10 +920,12 @@ export type ServiceOutputTypes =
844
920
  | CreateResponseHeadersPolicyCommandOutput
845
921
  | CreateStreamingDistributionCommandOutput
846
922
  | CreateStreamingDistributionWithTagsCommandOutput
923
+ | CreateTrustStoreCommandOutput
847
924
  | CreateVpcOriginCommandOutput
848
925
  | DeleteAnycastIpListCommandOutput
849
926
  | DeleteCachePolicyCommandOutput
850
927
  | DeleteCloudFrontOriginAccessIdentityCommandOutput
928
+ | DeleteConnectionFunctionCommandOutput
851
929
  | DeleteConnectionGroupCommandOutput
852
930
  | DeleteContinuousDeploymentPolicyCommandOutput
853
931
  | DeleteDistributionCommandOutput
@@ -865,7 +943,9 @@ export type ServiceOutputTypes =
865
943
  | DeleteResourcePolicyCommandOutput
866
944
  | DeleteResponseHeadersPolicyCommandOutput
867
945
  | DeleteStreamingDistributionCommandOutput
946
+ | DeleteTrustStoreCommandOutput
868
947
  | DeleteVpcOriginCommandOutput
948
+ | DescribeConnectionFunctionCommandOutput
869
949
  | DescribeFunctionCommandOutput
870
950
  | DescribeKeyValueStoreCommandOutput
871
951
  | DisassociateDistributionTenantWebACLCommandOutput
@@ -875,6 +955,7 @@ export type ServiceOutputTypes =
875
955
  | GetCachePolicyConfigCommandOutput
876
956
  | GetCloudFrontOriginAccessIdentityCommandOutput
877
957
  | GetCloudFrontOriginAccessIdentityConfigCommandOutput
958
+ | GetConnectionFunctionCommandOutput
878
959
  | GetConnectionGroupByRoutingEndpointCommandOutput
879
960
  | GetConnectionGroupCommandOutput
880
961
  | GetContinuousDeploymentPolicyCommandOutput
@@ -906,23 +987,27 @@ export type ServiceOutputTypes =
906
987
  | GetResponseHeadersPolicyConfigCommandOutput
907
988
  | GetStreamingDistributionCommandOutput
908
989
  | GetStreamingDistributionConfigCommandOutput
990
+ | GetTrustStoreCommandOutput
909
991
  | GetVpcOriginCommandOutput
910
992
  | ListAnycastIpListsCommandOutput
911
993
  | ListCachePoliciesCommandOutput
912
994
  | ListCloudFrontOriginAccessIdentitiesCommandOutput
913
995
  | ListConflictingAliasesCommandOutput
996
+ | ListConnectionFunctionsCommandOutput
914
997
  | ListConnectionGroupsCommandOutput
915
998
  | ListContinuousDeploymentPoliciesCommandOutput
916
999
  | ListDistributionTenantsByCustomizationCommandOutput
917
1000
  | ListDistributionTenantsCommandOutput
918
1001
  | ListDistributionsByAnycastIpListIdCommandOutput
919
1002
  | ListDistributionsByCachePolicyIdCommandOutput
1003
+ | ListDistributionsByConnectionFunctionCommandOutput
920
1004
  | ListDistributionsByConnectionModeCommandOutput
921
1005
  | ListDistributionsByKeyGroupCommandOutput
922
1006
  | ListDistributionsByOriginRequestPolicyIdCommandOutput
923
1007
  | ListDistributionsByOwnedResourceCommandOutput
924
1008
  | ListDistributionsByRealtimeLogConfigCommandOutput
925
1009
  | ListDistributionsByResponseHeadersPolicyIdCommandOutput
1010
+ | ListDistributionsByTrustStoreCommandOutput
926
1011
  | ListDistributionsByVpcOriginIdCommandOutput
927
1012
  | ListDistributionsByWebACLIdCommandOutput
928
1013
  | ListDistributionsCommandOutput
@@ -941,15 +1026,19 @@ export type ServiceOutputTypes =
941
1026
  | ListResponseHeadersPoliciesCommandOutput
942
1027
  | ListStreamingDistributionsCommandOutput
943
1028
  | ListTagsForResourceCommandOutput
1029
+ | ListTrustStoresCommandOutput
944
1030
  | ListVpcOriginsCommandOutput
1031
+ | PublishConnectionFunctionCommandOutput
945
1032
  | PublishFunctionCommandOutput
946
1033
  | PutResourcePolicyCommandOutput
947
1034
  | TagResourceCommandOutput
1035
+ | TestConnectionFunctionCommandOutput
948
1036
  | TestFunctionCommandOutput
949
1037
  | UntagResourceCommandOutput
950
1038
  | UpdateAnycastIpListCommandOutput
951
1039
  | UpdateCachePolicyCommandOutput
952
1040
  | UpdateCloudFrontOriginAccessIdentityCommandOutput
1041
+ | UpdateConnectionFunctionCommandOutput
953
1042
  | UpdateConnectionGroupCommandOutput
954
1043
  | UpdateContinuousDeploymentPolicyCommandOutput
955
1044
  | UpdateDistributionCommandOutput
@@ -967,6 +1056,7 @@ export type ServiceOutputTypes =
967
1056
  | UpdateRealtimeLogConfigCommandOutput
968
1057
  | UpdateResponseHeadersPolicyCommandOutput
969
1058
  | UpdateStreamingDistributionCommandOutput
1059
+ | UpdateTrustStoreCommandOutput
970
1060
  | UpdateVpcOriginCommandOutput
971
1061
  | VerifyDnsConfigurationCommandOutput;
972
1062
  export interface ClientDefaults
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CloudFrontClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CloudFrontClient";
8
+ import {
9
+ CreateConnectionFunctionRequest,
10
+ CreateConnectionFunctionResult,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateConnectionFunctionCommandInput
15
+ extends CreateConnectionFunctionRequest {}
16
+ export interface CreateConnectionFunctionCommandOutput
17
+ extends CreateConnectionFunctionResult,
18
+ __MetadataBearer {}
19
+ declare const CreateConnectionFunctionCommand_base: {
20
+ new (
21
+ input: CreateConnectionFunctionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateConnectionFunctionCommandInput,
24
+ CreateConnectionFunctionCommandOutput,
25
+ CloudFrontClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateConnectionFunctionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateConnectionFunctionCommandInput,
33
+ CreateConnectionFunctionCommandOutput,
34
+ CloudFrontClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateConnectionFunctionCommand extends CreateConnectionFunctionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateConnectionFunctionRequest;
44
+ output: CreateConnectionFunctionResult;
45
+ };
46
+ sdk: {
47
+ input: CreateConnectionFunctionCommandInput;
48
+ output: CreateConnectionFunctionCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CloudFrontClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CloudFrontClient";
8
+ import {
9
+ CreateTrustStoreRequest,
10
+ CreateTrustStoreResult,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateTrustStoreCommandInput extends CreateTrustStoreRequest {}
15
+ export interface CreateTrustStoreCommandOutput
16
+ extends CreateTrustStoreResult,
17
+ __MetadataBearer {}
18
+ declare const CreateTrustStoreCommand_base: {
19
+ new (
20
+ input: CreateTrustStoreCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateTrustStoreCommandInput,
23
+ CreateTrustStoreCommandOutput,
24
+ CloudFrontClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: CreateTrustStoreCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateTrustStoreCommandInput,
32
+ CreateTrustStoreCommandOutput,
33
+ CloudFrontClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateTrustStoreCommand extends CreateTrustStoreCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CreateTrustStoreRequest;
43
+ output: CreateTrustStoreResult;
44
+ };
45
+ sdk: {
46
+ input: CreateTrustStoreCommandInput;
47
+ output: CreateTrustStoreCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CloudFrontClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CloudFrontClient";
8
+ import { DeleteConnectionFunctionRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteConnectionFunctionCommandInput
12
+ extends DeleteConnectionFunctionRequest {}
13
+ export interface DeleteConnectionFunctionCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const DeleteConnectionFunctionCommand_base: {
16
+ new (
17
+ input: DeleteConnectionFunctionCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ DeleteConnectionFunctionCommandInput,
20
+ DeleteConnectionFunctionCommandOutput,
21
+ CloudFrontClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: DeleteConnectionFunctionCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ DeleteConnectionFunctionCommandInput,
29
+ DeleteConnectionFunctionCommandOutput,
30
+ CloudFrontClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class DeleteConnectionFunctionCommand extends DeleteConnectionFunctionCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: DeleteConnectionFunctionRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: DeleteConnectionFunctionCommandInput;
44
+ output: DeleteConnectionFunctionCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,45 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CloudFrontClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CloudFrontClient";
8
+ import { DeleteTrustStoreRequest } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteTrustStoreCommandInput extends DeleteTrustStoreRequest {}
12
+ export interface DeleteTrustStoreCommandOutput extends __MetadataBearer {}
13
+ declare const DeleteTrustStoreCommand_base: {
14
+ new (
15
+ input: DeleteTrustStoreCommandInput
16
+ ): import("@smithy/smithy-client").CommandImpl<
17
+ DeleteTrustStoreCommandInput,
18
+ DeleteTrustStoreCommandOutput,
19
+ CloudFrontClientResolvedConfig,
20
+ ServiceInputTypes,
21
+ ServiceOutputTypes
22
+ >;
23
+ new (
24
+ input: DeleteTrustStoreCommandInput
25
+ ): import("@smithy/smithy-client").CommandImpl<
26
+ DeleteTrustStoreCommandInput,
27
+ DeleteTrustStoreCommandOutput,
28
+ CloudFrontClientResolvedConfig,
29
+ ServiceInputTypes,
30
+ ServiceOutputTypes
31
+ >;
32
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
+ };
34
+ export declare class DeleteTrustStoreCommand extends DeleteTrustStoreCommand_base {
35
+ protected static __types: {
36
+ api: {
37
+ input: DeleteTrustStoreRequest;
38
+ output: {};
39
+ };
40
+ sdk: {
41
+ input: DeleteTrustStoreCommandInput;
42
+ output: DeleteTrustStoreCommandOutput;
43
+ };
44
+ };
45
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CloudFrontClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CloudFrontClient";
8
+ import {
9
+ DescribeConnectionFunctionRequest,
10
+ DescribeConnectionFunctionResult,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DescribeConnectionFunctionCommandInput
15
+ extends DescribeConnectionFunctionRequest {}
16
+ export interface DescribeConnectionFunctionCommandOutput
17
+ extends DescribeConnectionFunctionResult,
18
+ __MetadataBearer {}
19
+ declare const DescribeConnectionFunctionCommand_base: {
20
+ new (
21
+ input: DescribeConnectionFunctionCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DescribeConnectionFunctionCommandInput,
24
+ DescribeConnectionFunctionCommandOutput,
25
+ CloudFrontClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DescribeConnectionFunctionCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DescribeConnectionFunctionCommandInput,
33
+ DescribeConnectionFunctionCommandOutput,
34
+ CloudFrontClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DescribeConnectionFunctionCommand extends DescribeConnectionFunctionCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DescribeConnectionFunctionRequest;
44
+ output: DescribeConnectionFunctionResult;
45
+ };
46
+ sdk: {
47
+ input: DescribeConnectionFunctionCommandInput;
48
+ output: DescribeConnectionFunctionCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,58 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { Uint8ArrayBlobAdapter } from "@smithy/util-stream";
4
+ import {
5
+ CloudFrontClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../CloudFrontClient";
9
+ import {
10
+ GetConnectionFunctionRequest,
11
+ GetConnectionFunctionResult,
12
+ } from "../models/models_0";
13
+ export { __MetadataBearer };
14
+ export { $Command };
15
+ export interface GetConnectionFunctionCommandInput
16
+ extends GetConnectionFunctionRequest {}
17
+ export type GetConnectionFunctionCommandOutputType = Pick<
18
+ GetConnectionFunctionResult,
19
+ Exclude<keyof GetConnectionFunctionResult, "ConnectionFunctionCode">
20
+ > & {
21
+ ConnectionFunctionCode?: Uint8ArrayBlobAdapter;
22
+ };
23
+ export interface GetConnectionFunctionCommandOutput
24
+ extends GetConnectionFunctionCommandOutputType,
25
+ __MetadataBearer {}
26
+ declare const GetConnectionFunctionCommand_base: {
27
+ new (
28
+ input: GetConnectionFunctionCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ GetConnectionFunctionCommandInput,
31
+ GetConnectionFunctionCommandOutput,
32
+ CloudFrontClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
36
+ new (
37
+ input: GetConnectionFunctionCommandInput
38
+ ): import("@smithy/smithy-client").CommandImpl<
39
+ GetConnectionFunctionCommandInput,
40
+ GetConnectionFunctionCommandOutput,
41
+ CloudFrontClientResolvedConfig,
42
+ ServiceInputTypes,
43
+ ServiceOutputTypes
44
+ >;
45
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
46
+ };
47
+ export declare class GetConnectionFunctionCommand extends GetConnectionFunctionCommand_base {
48
+ protected static __types: {
49
+ api: {
50
+ input: GetConnectionFunctionRequest;
51
+ output: GetConnectionFunctionResult;
52
+ };
53
+ sdk: {
54
+ input: GetConnectionFunctionCommandInput;
55
+ output: GetConnectionFunctionCommandOutput;
56
+ };
57
+ };
58
+ }
@@ -5,10 +5,8 @@ import {
5
5
  ServiceInputTypes,
6
6
  ServiceOutputTypes,
7
7
  } from "../CloudFrontClient";
8
- import {
9
- GetManagedCertificateDetailsRequest,
10
- GetManagedCertificateDetailsResult,
11
- } from "../models/models_0";
8
+ import { GetManagedCertificateDetailsRequest } from "../models/models_0";
9
+ import { GetManagedCertificateDetailsResult } from "../models/models_1";
12
10
  export { __MetadataBearer };
13
11
  export { $Command };
14
12
  export interface GetManagedCertificateDetailsCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  GetMonitoringSubscriptionRequest,
10
10
  GetMonitoringSubscriptionResult,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface GetMonitoringSubscriptionCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  GetOriginAccessControlRequest,
10
10
  GetOriginAccessControlResult,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface GetOriginAccessControlCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  GetOriginAccessControlConfigRequest,
10
10
  GetOriginAccessControlConfigResult,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface GetOriginAccessControlConfigCommandInput