@aws-sdk/client-cloudfront 3.797.0 → 3.799.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 (204) hide show
  1. package/README.md +200 -0
  2. package/dist-cjs/index.js +2696 -655
  3. package/dist-cjs/runtimeConfig.js +1 -0
  4. package/dist-es/CloudFront.js +50 -0
  5. package/dist-es/commands/AssociateDistributionTenantWebACLCommand.js +22 -0
  6. package/dist-es/commands/AssociateDistributionWebACLCommand.js +22 -0
  7. package/dist-es/commands/CreateConnectionGroupCommand.js +22 -0
  8. package/dist-es/commands/CreateDistributionTenantCommand.js +22 -0
  9. package/dist-es/commands/CreateInvalidationForDistributionTenantCommand.js +22 -0
  10. package/dist-es/commands/DeleteConnectionGroupCommand.js +22 -0
  11. package/dist-es/commands/DeleteDistributionTenantCommand.js +22 -0
  12. package/dist-es/commands/DisassociateDistributionTenantWebACLCommand.js +22 -0
  13. package/dist-es/commands/DisassociateDistributionWebACLCommand.js +22 -0
  14. package/dist-es/commands/GetConnectionGroupByRoutingEndpointCommand.js +22 -0
  15. package/dist-es/commands/GetConnectionGroupCommand.js +22 -0
  16. package/dist-es/commands/GetDistributionTenantByDomainCommand.js +22 -0
  17. package/dist-es/commands/GetDistributionTenantCommand.js +22 -0
  18. package/dist-es/commands/GetInvalidationForDistributionTenantCommand.js +22 -0
  19. package/dist-es/commands/GetManagedCertificateDetailsCommand.js +22 -0
  20. package/dist-es/commands/ListConnectionGroupsCommand.js +22 -0
  21. package/dist-es/commands/ListDistributionTenantsByCustomizationCommand.js +22 -0
  22. package/dist-es/commands/ListDistributionTenantsCommand.js +22 -0
  23. package/dist-es/commands/ListDistributionsByConnectionModeCommand.js +23 -0
  24. package/dist-es/commands/ListDomainConflictsCommand.js +22 -0
  25. package/dist-es/commands/ListInvalidationsForDistributionTenantCommand.js +22 -0
  26. package/dist-es/commands/TestFunctionCommand.js +1 -1
  27. package/dist-es/commands/UpdateConnectionGroupCommand.js +22 -0
  28. package/dist-es/commands/UpdateDistributionCommand.js +1 -1
  29. package/dist-es/commands/UpdateDistributionTenantCommand.js +22 -0
  30. package/dist-es/commands/UpdateDistributionWithStagingConfigCommand.js +1 -1
  31. package/dist-es/commands/UpdateDomainAssociationCommand.js +22 -0
  32. package/dist-es/commands/UpdateFunctionCommand.js +1 -1
  33. package/dist-es/commands/VerifyDnsConfigurationCommand.js +22 -0
  34. package/dist-es/commands/index.js +26 -1
  35. package/dist-es/models/index.js +1 -0
  36. package/dist-es/models/models_0.js +77 -201
  37. package/dist-es/models/models_1.js +203 -58
  38. package/dist-es/models/models_2.js +52 -0
  39. package/dist-es/pagination/ListConnectionGroupsPaginator.js +4 -0
  40. package/dist-es/pagination/ListDistributionTenantsByCustomizationPaginator.js +4 -0
  41. package/dist-es/pagination/ListDistributionTenantsPaginator.js +4 -0
  42. package/dist-es/pagination/ListDistributionsByConnectionModePaginator.js +4 -0
  43. package/dist-es/pagination/ListDomainConflictsPaginator.js +4 -0
  44. package/dist-es/pagination/ListInvalidationsForDistributionTenantPaginator.js +4 -0
  45. package/dist-es/pagination/index.js +6 -0
  46. package/dist-es/protocols/Aws_restXml.js +1907 -460
  47. package/dist-es/runtimeConfig.js +2 -1
  48. package/dist-es/waiters/index.js +1 -0
  49. package/dist-es/waiters/waitForInvalidationForDistributionTenantCompleted.js +31 -0
  50. package/dist-types/CloudFront.d.ts +178 -0
  51. package/dist-types/CloudFrontClient.d.ts +27 -2
  52. package/dist-types/commands/AssociateDistributionTenantWebACLCommand.d.ts +92 -0
  53. package/dist-types/commands/AssociateDistributionWebACLCommand.d.ts +92 -0
  54. package/dist-types/commands/CopyDistributionCommand.d.ts +16 -1
  55. package/dist-types/commands/CreateConnectionGroupCommand.d.ts +123 -0
  56. package/dist-types/commands/CreateDistributionCommand.d.ts +35 -2
  57. package/dist-types/commands/CreateDistributionTenantCommand.d.ts +185 -0
  58. package/dist-types/commands/CreateDistributionWithTagsCommand.d.ts +32 -2
  59. package/dist-types/commands/CreateInvalidationForDistributionTenantCommand.d.ts +119 -0
  60. package/dist-types/commands/CreateOriginRequestPolicyCommand.d.ts +1 -1
  61. package/dist-types/commands/CreatePublicKeyCommand.d.ts +1 -1
  62. package/dist-types/commands/CreateRealtimeLogConfigCommand.d.ts +1 -1
  63. package/dist-types/commands/CreateStreamingDistributionCommand.d.ts +2 -2
  64. package/dist-types/commands/CreateStreamingDistributionWithTagsCommand.d.ts +2 -2
  65. package/dist-types/commands/DeleteConnectionGroupCommand.d.ts +90 -0
  66. package/dist-types/commands/DeleteDistributionCommand.d.ts +3 -0
  67. package/dist-types/commands/DeleteDistributionTenantCommand.d.ts +88 -0
  68. package/dist-types/commands/DisassociateDistributionTenantWebACLCommand.d.ts +90 -0
  69. package/dist-types/commands/DisassociateDistributionWebACLCommand.d.ts +90 -0
  70. package/dist-types/commands/GetConnectionGroupByRoutingEndpointCommand.d.ts +99 -0
  71. package/dist-types/commands/GetConnectionGroupCommand.d.ts +99 -0
  72. package/dist-types/commands/GetDistributionCommand.d.ts +16 -1
  73. package/dist-types/commands/GetDistributionConfigCommand.d.ts +16 -1
  74. package/dist-types/commands/GetDistributionTenantByDomainCommand.d.ts +124 -0
  75. package/dist-types/commands/GetDistributionTenantCommand.d.ts +124 -0
  76. package/dist-types/commands/GetInvalidationForDistributionTenantCommand.d.ts +95 -0
  77. package/dist-types/commands/GetManagedCertificateDetailsCommand.d.ts +89 -0
  78. package/dist-types/commands/GetStreamingDistributionCommand.d.ts +1 -1
  79. package/dist-types/commands/GetStreamingDistributionConfigCommand.d.ts +1 -1
  80. package/dist-types/commands/ListConnectionGroupsCommand.d.ts +100 -0
  81. package/dist-types/commands/ListDistributionTenantsByCustomizationCommand.d.ts +120 -0
  82. package/dist-types/commands/ListDistributionTenantsCommand.d.ts +121 -0
  83. package/dist-types/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +3 -1
  84. package/dist-types/commands/ListDistributionsByConnectionModeCommand.d.ts +392 -0
  85. package/dist-types/commands/ListDistributionsByRealtimeLogConfigCommand.d.ts +3 -1
  86. package/dist-types/commands/ListDistributionsByWebACLIdCommand.d.ts +3 -1
  87. package/dist-types/commands/ListDistributionsCommand.d.ts +3 -1
  88. package/dist-types/commands/ListDomainConflictsCommand.d.ts +96 -0
  89. package/dist-types/commands/ListInvalidationsForDistributionTenantCommand.d.ts +96 -0
  90. package/dist-types/commands/ListStreamingDistributionsCommand.d.ts +3 -2
  91. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  92. package/dist-types/commands/ListVpcOriginsCommand.d.ts +1 -1
  93. package/dist-types/commands/PublishFunctionCommand.d.ts +1 -1
  94. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  95. package/dist-types/commands/TestFunctionCommand.d.ts +1 -1
  96. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  97. package/dist-types/commands/UpdateCachePolicyCommand.d.ts +1 -1
  98. package/dist-types/commands/UpdateCloudFrontOriginAccessIdentityCommand.d.ts +1 -1
  99. package/dist-types/commands/UpdateConnectionGroupCommand.d.ts +123 -0
  100. package/dist-types/commands/UpdateContinuousDeploymentPolicyCommand.d.ts +1 -1
  101. package/dist-types/commands/UpdateDistributionCommand.d.ts +33 -3
  102. package/dist-types/commands/UpdateDistributionTenantCommand.d.ts +182 -0
  103. package/dist-types/commands/UpdateDistributionWithStagingConfigCommand.d.ts +17 -2
  104. package/dist-types/commands/UpdateDomainAssociationCommand.d.ts +98 -0
  105. package/dist-types/commands/UpdateFieldLevelEncryptionConfigCommand.d.ts +1 -1
  106. package/dist-types/commands/UpdateFieldLevelEncryptionProfileCommand.d.ts +1 -1
  107. package/dist-types/commands/UpdateFunctionCommand.d.ts +1 -1
  108. package/dist-types/commands/UpdateKeyGroupCommand.d.ts +1 -1
  109. package/dist-types/commands/UpdateKeyValueStoreCommand.d.ts +1 -1
  110. package/dist-types/commands/UpdateOriginAccessControlCommand.d.ts +1 -1
  111. package/dist-types/commands/UpdateOriginRequestPolicyCommand.d.ts +1 -1
  112. package/dist-types/commands/UpdatePublicKeyCommand.d.ts +1 -1
  113. package/dist-types/commands/UpdateRealtimeLogConfigCommand.d.ts +1 -1
  114. package/dist-types/commands/UpdateResponseHeadersPolicyCommand.d.ts +1 -1
  115. package/dist-types/commands/UpdateStreamingDistributionCommand.d.ts +3 -3
  116. package/dist-types/commands/UpdateVpcOriginCommand.d.ts +1 -1
  117. package/dist-types/commands/VerifyDnsConfigurationCommand.d.ts +88 -0
  118. package/dist-types/commands/index.d.ts +26 -1
  119. package/dist-types/models/index.d.ts +1 -0
  120. package/dist-types/models/models_0.d.ts +830 -869
  121. package/dist-types/models/models_1.d.ts +2571 -2123
  122. package/dist-types/models/models_2.d.ts +1244 -0
  123. package/dist-types/pagination/ListConnectionGroupsPaginator.d.ts +7 -0
  124. package/dist-types/pagination/ListDistributionTenantsByCustomizationPaginator.d.ts +7 -0
  125. package/dist-types/pagination/ListDistributionTenantsPaginator.d.ts +7 -0
  126. package/dist-types/pagination/ListDistributionsByConnectionModePaginator.d.ts +7 -0
  127. package/dist-types/pagination/ListDomainConflictsPaginator.d.ts +7 -0
  128. package/dist-types/pagination/ListInvalidationsForDistributionTenantPaginator.d.ts +7 -0
  129. package/dist-types/pagination/index.d.ts +6 -0
  130. package/dist-types/protocols/Aws_restXml.d.ts +225 -0
  131. package/dist-types/runtimeConfig.d.ts +1 -1
  132. package/dist-types/ts3.4/CloudFront.d.ts +476 -0
  133. package/dist-types/ts3.4/CloudFrontClient.d.ts +152 -2
  134. package/dist-types/ts3.4/commands/AssociateDistributionTenantWebACLCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/AssociateDistributionWebACLCommand.d.ts +51 -0
  136. package/dist-types/ts3.4/commands/CreateConnectionGroupCommand.d.ts +51 -0
  137. package/dist-types/ts3.4/commands/CreateDistributionTenantCommand.d.ts +51 -0
  138. package/dist-types/ts3.4/commands/CreateInvalidationForDistributionTenantCommand.d.ts +51 -0
  139. package/dist-types/ts3.4/commands/CreateOriginRequestPolicyCommand.d.ts +1 -1
  140. package/dist-types/ts3.4/commands/CreatePublicKeyCommand.d.ts +1 -1
  141. package/dist-types/ts3.4/commands/CreateRealtimeLogConfigCommand.d.ts +1 -1
  142. package/dist-types/ts3.4/commands/DeleteConnectionGroupCommand.d.ts +46 -0
  143. package/dist-types/ts3.4/commands/DeleteDistributionTenantCommand.d.ts +47 -0
  144. package/dist-types/ts3.4/commands/DisassociateDistributionTenantWebACLCommand.d.ts +51 -0
  145. package/dist-types/ts3.4/commands/DisassociateDistributionWebACLCommand.d.ts +51 -0
  146. package/dist-types/ts3.4/commands/GetConnectionGroupByRoutingEndpointCommand.d.ts +51 -0
  147. package/dist-types/ts3.4/commands/GetConnectionGroupCommand.d.ts +51 -0
  148. package/dist-types/ts3.4/commands/GetDistributionTenantByDomainCommand.d.ts +51 -0
  149. package/dist-types/ts3.4/commands/GetDistributionTenantCommand.d.ts +51 -0
  150. package/dist-types/ts3.4/commands/GetInvalidationForDistributionTenantCommand.d.ts +51 -0
  151. package/dist-types/ts3.4/commands/GetManagedCertificateDetailsCommand.d.ts +51 -0
  152. package/dist-types/ts3.4/commands/ListConnectionGroupsCommand.d.ts +51 -0
  153. package/dist-types/ts3.4/commands/ListDistributionTenantsByCustomizationCommand.d.ts +51 -0
  154. package/dist-types/ts3.4/commands/ListDistributionTenantsCommand.d.ts +51 -0
  155. package/dist-types/ts3.4/commands/ListDistributionsByConnectionModeCommand.d.ts +51 -0
  156. package/dist-types/ts3.4/commands/ListDomainConflictsCommand.d.ts +51 -0
  157. package/dist-types/ts3.4/commands/ListInvalidationsForDistributionTenantCommand.d.ts +51 -0
  158. package/dist-types/ts3.4/commands/ListStreamingDistributionsCommand.d.ts +2 -4
  159. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  160. package/dist-types/ts3.4/commands/ListVpcOriginsCommand.d.ts +1 -1
  161. package/dist-types/ts3.4/commands/PublishFunctionCommand.d.ts +1 -1
  162. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  163. package/dist-types/ts3.4/commands/TestFunctionCommand.d.ts +1 -1
  164. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  165. package/dist-types/ts3.4/commands/UpdateCachePolicyCommand.d.ts +1 -1
  166. package/dist-types/ts3.4/commands/UpdateCloudFrontOriginAccessIdentityCommand.d.ts +1 -1
  167. package/dist-types/ts3.4/commands/UpdateConnectionGroupCommand.d.ts +51 -0
  168. package/dist-types/ts3.4/commands/UpdateContinuousDeploymentPolicyCommand.d.ts +1 -1
  169. package/dist-types/ts3.4/commands/UpdateDistributionCommand.d.ts +1 -1
  170. package/dist-types/ts3.4/commands/UpdateDistributionTenantCommand.d.ts +51 -0
  171. package/dist-types/ts3.4/commands/UpdateDistributionWithStagingConfigCommand.d.ts +1 -1
  172. package/dist-types/ts3.4/commands/UpdateDomainAssociationCommand.d.ts +51 -0
  173. package/dist-types/ts3.4/commands/UpdateFieldLevelEncryptionConfigCommand.d.ts +1 -1
  174. package/dist-types/ts3.4/commands/UpdateFieldLevelEncryptionProfileCommand.d.ts +1 -1
  175. package/dist-types/ts3.4/commands/UpdateFunctionCommand.d.ts +1 -1
  176. package/dist-types/ts3.4/commands/UpdateKeyGroupCommand.d.ts +1 -1
  177. package/dist-types/ts3.4/commands/UpdateKeyValueStoreCommand.d.ts +1 -1
  178. package/dist-types/ts3.4/commands/UpdateOriginAccessControlCommand.d.ts +1 -1
  179. package/dist-types/ts3.4/commands/UpdateOriginRequestPolicyCommand.d.ts +1 -1
  180. package/dist-types/ts3.4/commands/UpdatePublicKeyCommand.d.ts +1 -1
  181. package/dist-types/ts3.4/commands/UpdateRealtimeLogConfigCommand.d.ts +1 -1
  182. package/dist-types/ts3.4/commands/UpdateResponseHeadersPolicyCommand.d.ts +1 -1
  183. package/dist-types/ts3.4/commands/UpdateStreamingDistributionCommand.d.ts +1 -1
  184. package/dist-types/ts3.4/commands/UpdateVpcOriginCommand.d.ts +1 -1
  185. package/dist-types/ts3.4/commands/VerifyDnsConfigurationCommand.d.ts +51 -0
  186. package/dist-types/ts3.4/commands/index.d.ts +26 -1
  187. package/dist-types/ts3.4/models/index.d.ts +1 -0
  188. package/dist-types/ts3.4/models/models_0.d.ts +190 -214
  189. package/dist-types/ts3.4/models/models_1.d.ts +413 -275
  190. package/dist-types/ts3.4/models/models_2.d.ts +363 -0
  191. package/dist-types/ts3.4/pagination/ListConnectionGroupsPaginator.d.ts +11 -0
  192. package/dist-types/ts3.4/pagination/ListDistributionTenantsByCustomizationPaginator.d.ts +11 -0
  193. package/dist-types/ts3.4/pagination/ListDistributionTenantsPaginator.d.ts +11 -0
  194. package/dist-types/ts3.4/pagination/ListDistributionsByConnectionModePaginator.d.ts +11 -0
  195. package/dist-types/ts3.4/pagination/ListDomainConflictsPaginator.d.ts +11 -0
  196. package/dist-types/ts3.4/pagination/ListInvalidationsForDistributionTenantPaginator.d.ts +11 -0
  197. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  198. package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +300 -0
  199. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -4
  200. package/dist-types/ts3.4/waiters/index.d.ts +1 -0
  201. package/dist-types/ts3.4/waiters/waitForInvalidationForDistributionTenantCompleted.d.ts +11 -0
  202. package/dist-types/waiters/index.d.ts +1 -0
  203. package/dist-types/waiters/waitForInvalidationForDistributionTenantCompleted.d.ts +14 -0
  204. package/package.json +11 -11
@@ -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
+ CreateInvalidationForDistributionTenantRequest,
10
+ CreateInvalidationForDistributionTenantResult,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateInvalidationForDistributionTenantCommandInput
15
+ extends CreateInvalidationForDistributionTenantRequest {}
16
+ export interface CreateInvalidationForDistributionTenantCommandOutput
17
+ extends CreateInvalidationForDistributionTenantResult,
18
+ __MetadataBearer {}
19
+ declare const CreateInvalidationForDistributionTenantCommand_base: {
20
+ new (
21
+ input: CreateInvalidationForDistributionTenantCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateInvalidationForDistributionTenantCommandInput,
24
+ CreateInvalidationForDistributionTenantCommandOutput,
25
+ CloudFrontClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: CreateInvalidationForDistributionTenantCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateInvalidationForDistributionTenantCommandInput,
33
+ CreateInvalidationForDistributionTenantCommandOutput,
34
+ CloudFrontClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateInvalidationForDistributionTenantCommand extends CreateInvalidationForDistributionTenantCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateInvalidationForDistributionTenantRequest;
44
+ output: CreateInvalidationForDistributionTenantResult;
45
+ };
46
+ sdk: {
47
+ input: CreateInvalidationForDistributionTenantCommandInput;
48
+ output: CreateInvalidationForDistributionTenantCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  CreateOriginRequestPolicyRequest,
10
10
  CreateOriginRequestPolicyResult,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface CreateOriginRequestPolicyCommandInput
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  CreatePublicKeyRequest,
10
10
  CreatePublicKeyResult,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface CreatePublicKeyCommandInput extends CreatePublicKeyRequest {}
@@ -8,7 +8,7 @@ import {
8
8
  import {
9
9
  CreateRealtimeLogConfigRequest,
10
10
  CreateRealtimeLogConfigResult,
11
- } from "../models/models_0";
11
+ } from "../models/models_1";
12
12
  export { __MetadataBearer };
13
13
  export { $Command };
14
14
  export interface CreateRealtimeLogConfigCommandInput
@@ -0,0 +1,46 @@
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 { DeleteConnectionGroupRequest } from "../models/models_1";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteConnectionGroupCommandInput
12
+ extends DeleteConnectionGroupRequest {}
13
+ export interface DeleteConnectionGroupCommandOutput extends __MetadataBearer {}
14
+ declare const DeleteConnectionGroupCommand_base: {
15
+ new (
16
+ input: DeleteConnectionGroupCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ DeleteConnectionGroupCommandInput,
19
+ DeleteConnectionGroupCommandOutput,
20
+ CloudFrontClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ __0_0: DeleteConnectionGroupCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ DeleteConnectionGroupCommandInput,
28
+ DeleteConnectionGroupCommandOutput,
29
+ CloudFrontClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class DeleteConnectionGroupCommand extends DeleteConnectionGroupCommand_base {
36
+ protected static __types: {
37
+ api: {
38
+ input: DeleteConnectionGroupRequest;
39
+ output: {};
40
+ };
41
+ sdk: {
42
+ input: DeleteConnectionGroupCommandInput;
43
+ output: DeleteConnectionGroupCommandOutput;
44
+ };
45
+ };
46
+ }
@@ -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 { DeleteDistributionTenantRequest } from "../models/models_1";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteDistributionTenantCommandInput
12
+ extends DeleteDistributionTenantRequest {}
13
+ export interface DeleteDistributionTenantCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const DeleteDistributionTenantCommand_base: {
16
+ new (
17
+ input: DeleteDistributionTenantCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ DeleteDistributionTenantCommandInput,
20
+ DeleteDistributionTenantCommandOutput,
21
+ CloudFrontClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: DeleteDistributionTenantCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ DeleteDistributionTenantCommandInput,
29
+ DeleteDistributionTenantCommandOutput,
30
+ CloudFrontClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class DeleteDistributionTenantCommand extends DeleteDistributionTenantCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: DeleteDistributionTenantRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: DeleteDistributionTenantCommandInput;
44
+ output: DeleteDistributionTenantCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -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
+ DisassociateDistributionTenantWebACLRequest,
10
+ DisassociateDistributionTenantWebACLResult,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DisassociateDistributionTenantWebACLCommandInput
15
+ extends DisassociateDistributionTenantWebACLRequest {}
16
+ export interface DisassociateDistributionTenantWebACLCommandOutput
17
+ extends DisassociateDistributionTenantWebACLResult,
18
+ __MetadataBearer {}
19
+ declare const DisassociateDistributionTenantWebACLCommand_base: {
20
+ new (
21
+ input: DisassociateDistributionTenantWebACLCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DisassociateDistributionTenantWebACLCommandInput,
24
+ DisassociateDistributionTenantWebACLCommandOutput,
25
+ CloudFrontClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DisassociateDistributionTenantWebACLCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DisassociateDistributionTenantWebACLCommandInput,
33
+ DisassociateDistributionTenantWebACLCommandOutput,
34
+ CloudFrontClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DisassociateDistributionTenantWebACLCommand extends DisassociateDistributionTenantWebACLCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DisassociateDistributionTenantWebACLRequest;
44
+ output: DisassociateDistributionTenantWebACLResult;
45
+ };
46
+ sdk: {
47
+ input: DisassociateDistributionTenantWebACLCommandInput;
48
+ output: DisassociateDistributionTenantWebACLCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -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
+ DisassociateDistributionWebACLRequest,
10
+ DisassociateDistributionWebACLResult,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DisassociateDistributionWebACLCommandInput
15
+ extends DisassociateDistributionWebACLRequest {}
16
+ export interface DisassociateDistributionWebACLCommandOutput
17
+ extends DisassociateDistributionWebACLResult,
18
+ __MetadataBearer {}
19
+ declare const DisassociateDistributionWebACLCommand_base: {
20
+ new (
21
+ input: DisassociateDistributionWebACLCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DisassociateDistributionWebACLCommandInput,
24
+ DisassociateDistributionWebACLCommandOutput,
25
+ CloudFrontClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: DisassociateDistributionWebACLCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DisassociateDistributionWebACLCommandInput,
33
+ DisassociateDistributionWebACLCommandOutput,
34
+ CloudFrontClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DisassociateDistributionWebACLCommand extends DisassociateDistributionWebACLCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DisassociateDistributionWebACLRequest;
44
+ output: DisassociateDistributionWebACLResult;
45
+ };
46
+ sdk: {
47
+ input: DisassociateDistributionWebACLCommandInput;
48
+ output: DisassociateDistributionWebACLCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -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
+ GetConnectionGroupByRoutingEndpointRequest,
10
+ GetConnectionGroupByRoutingEndpointResult,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetConnectionGroupByRoutingEndpointCommandInput
15
+ extends GetConnectionGroupByRoutingEndpointRequest {}
16
+ export interface GetConnectionGroupByRoutingEndpointCommandOutput
17
+ extends GetConnectionGroupByRoutingEndpointResult,
18
+ __MetadataBearer {}
19
+ declare const GetConnectionGroupByRoutingEndpointCommand_base: {
20
+ new (
21
+ input: GetConnectionGroupByRoutingEndpointCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetConnectionGroupByRoutingEndpointCommandInput,
24
+ GetConnectionGroupByRoutingEndpointCommandOutput,
25
+ CloudFrontClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetConnectionGroupByRoutingEndpointCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetConnectionGroupByRoutingEndpointCommandInput,
33
+ GetConnectionGroupByRoutingEndpointCommandOutput,
34
+ CloudFrontClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetConnectionGroupByRoutingEndpointCommand extends GetConnectionGroupByRoutingEndpointCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetConnectionGroupByRoutingEndpointRequest;
44
+ output: GetConnectionGroupByRoutingEndpointResult;
45
+ };
46
+ sdk: {
47
+ input: GetConnectionGroupByRoutingEndpointCommandInput;
48
+ output: GetConnectionGroupByRoutingEndpointCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -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
+ GetConnectionGroupRequest,
10
+ GetConnectionGroupResult,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetConnectionGroupCommandInput
15
+ extends GetConnectionGroupRequest {}
16
+ export interface GetConnectionGroupCommandOutput
17
+ extends GetConnectionGroupResult,
18
+ __MetadataBearer {}
19
+ declare const GetConnectionGroupCommand_base: {
20
+ new (
21
+ input: GetConnectionGroupCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetConnectionGroupCommandInput,
24
+ GetConnectionGroupCommandOutput,
25
+ CloudFrontClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetConnectionGroupCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetConnectionGroupCommandInput,
33
+ GetConnectionGroupCommandOutput,
34
+ CloudFrontClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetConnectionGroupCommand extends GetConnectionGroupCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetConnectionGroupRequest;
44
+ output: GetConnectionGroupResult;
45
+ };
46
+ sdk: {
47
+ input: GetConnectionGroupCommandInput;
48
+ output: GetConnectionGroupCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -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
+ GetDistributionTenantByDomainRequest,
10
+ GetDistributionTenantByDomainResult,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetDistributionTenantByDomainCommandInput
15
+ extends GetDistributionTenantByDomainRequest {}
16
+ export interface GetDistributionTenantByDomainCommandOutput
17
+ extends GetDistributionTenantByDomainResult,
18
+ __MetadataBearer {}
19
+ declare const GetDistributionTenantByDomainCommand_base: {
20
+ new (
21
+ input: GetDistributionTenantByDomainCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetDistributionTenantByDomainCommandInput,
24
+ GetDistributionTenantByDomainCommandOutput,
25
+ CloudFrontClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetDistributionTenantByDomainCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetDistributionTenantByDomainCommandInput,
33
+ GetDistributionTenantByDomainCommandOutput,
34
+ CloudFrontClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetDistributionTenantByDomainCommand extends GetDistributionTenantByDomainCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetDistributionTenantByDomainRequest;
44
+ output: GetDistributionTenantByDomainResult;
45
+ };
46
+ sdk: {
47
+ input: GetDistributionTenantByDomainCommandInput;
48
+ output: GetDistributionTenantByDomainCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -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
+ GetDistributionTenantRequest,
10
+ GetDistributionTenantResult,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetDistributionTenantCommandInput
15
+ extends GetDistributionTenantRequest {}
16
+ export interface GetDistributionTenantCommandOutput
17
+ extends GetDistributionTenantResult,
18
+ __MetadataBearer {}
19
+ declare const GetDistributionTenantCommand_base: {
20
+ new (
21
+ input: GetDistributionTenantCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetDistributionTenantCommandInput,
24
+ GetDistributionTenantCommandOutput,
25
+ CloudFrontClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetDistributionTenantCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetDistributionTenantCommandInput,
33
+ GetDistributionTenantCommandOutput,
34
+ CloudFrontClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetDistributionTenantCommand extends GetDistributionTenantCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetDistributionTenantRequest;
44
+ output: GetDistributionTenantResult;
45
+ };
46
+ sdk: {
47
+ input: GetDistributionTenantCommandInput;
48
+ output: GetDistributionTenantCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -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
+ GetInvalidationForDistributionTenantRequest,
10
+ GetInvalidationForDistributionTenantResult,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetInvalidationForDistributionTenantCommandInput
15
+ extends GetInvalidationForDistributionTenantRequest {}
16
+ export interface GetInvalidationForDistributionTenantCommandOutput
17
+ extends GetInvalidationForDistributionTenantResult,
18
+ __MetadataBearer {}
19
+ declare const GetInvalidationForDistributionTenantCommand_base: {
20
+ new (
21
+ input: GetInvalidationForDistributionTenantCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetInvalidationForDistributionTenantCommandInput,
24
+ GetInvalidationForDistributionTenantCommandOutput,
25
+ CloudFrontClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetInvalidationForDistributionTenantCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetInvalidationForDistributionTenantCommandInput,
33
+ GetInvalidationForDistributionTenantCommandOutput,
34
+ CloudFrontClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetInvalidationForDistributionTenantCommand extends GetInvalidationForDistributionTenantCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetInvalidationForDistributionTenantRequest;
44
+ output: GetInvalidationForDistributionTenantResult;
45
+ };
46
+ sdk: {
47
+ input: GetInvalidationForDistributionTenantCommandInput;
48
+ output: GetInvalidationForDistributionTenantCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -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
+ GetManagedCertificateDetailsRequest,
10
+ GetManagedCertificateDetailsResult,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetManagedCertificateDetailsCommandInput
15
+ extends GetManagedCertificateDetailsRequest {}
16
+ export interface GetManagedCertificateDetailsCommandOutput
17
+ extends GetManagedCertificateDetailsResult,
18
+ __MetadataBearer {}
19
+ declare const GetManagedCertificateDetailsCommand_base: {
20
+ new (
21
+ input: GetManagedCertificateDetailsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetManagedCertificateDetailsCommandInput,
24
+ GetManagedCertificateDetailsCommandOutput,
25
+ CloudFrontClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetManagedCertificateDetailsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetManagedCertificateDetailsCommandInput,
33
+ GetManagedCertificateDetailsCommandOutput,
34
+ CloudFrontClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetManagedCertificateDetailsCommand extends GetManagedCertificateDetailsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetManagedCertificateDetailsRequest;
44
+ output: GetManagedCertificateDetailsResult;
45
+ };
46
+ sdk: {
47
+ input: GetManagedCertificateDetailsCommandInput;
48
+ output: GetManagedCertificateDetailsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -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
+ ListConnectionGroupsRequest,
10
+ ListConnectionGroupsResult,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListConnectionGroupsCommandInput
15
+ extends ListConnectionGroupsRequest {}
16
+ export interface ListConnectionGroupsCommandOutput
17
+ extends ListConnectionGroupsResult,
18
+ __MetadataBearer {}
19
+ declare const ListConnectionGroupsCommand_base: {
20
+ new (
21
+ input: ListConnectionGroupsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListConnectionGroupsCommandInput,
24
+ ListConnectionGroupsCommandOutput,
25
+ CloudFrontClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListConnectionGroupsCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListConnectionGroupsCommandInput,
33
+ ListConnectionGroupsCommandOutput,
34
+ CloudFrontClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListConnectionGroupsCommand extends ListConnectionGroupsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListConnectionGroupsRequest;
44
+ output: ListConnectionGroupsResult;
45
+ };
46
+ sdk: {
47
+ input: ListConnectionGroupsCommandInput;
48
+ output: ListConnectionGroupsCommandOutput;
49
+ };
50
+ };
51
+ }