@aws-sdk/client-acm 3.1076.0 → 3.1078.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 (192) hide show
  1. package/README.md +161 -7
  2. package/dist-cjs/index.js +1058 -262
  3. package/dist-es/ACM.js +60 -0
  4. package/dist-es/commandBuilder.js +11 -0
  5. package/dist-es/commands/AddTagsToCertificateCommand.js +2 -14
  6. package/dist-es/commands/CreateAcmeDomainValidationCommand.js +4 -0
  7. package/dist-es/commands/CreateAcmeEndpointCommand.js +4 -0
  8. package/dist-es/commands/CreateAcmeExternalAccountBindingCommand.js +4 -0
  9. package/dist-es/commands/DeleteAcmeDomainValidationCommand.js +4 -0
  10. package/dist-es/commands/DeleteAcmeEndpointCommand.js +4 -0
  11. package/dist-es/commands/DeleteAcmeExternalAccountBindingCommand.js +4 -0
  12. package/dist-es/commands/DeleteCertificateCommand.js +2 -14
  13. package/dist-es/commands/DescribeAcmeAccountCommand.js +4 -0
  14. package/dist-es/commands/DescribeAcmeDomainValidationCommand.js +4 -0
  15. package/dist-es/commands/DescribeAcmeEndpointCommand.js +4 -0
  16. package/dist-es/commands/DescribeAcmeExternalAccountBindingCommand.js +4 -0
  17. package/dist-es/commands/DescribeCertificateCommand.js +2 -14
  18. package/dist-es/commands/ExportCertificateCommand.js +2 -14
  19. package/dist-es/commands/GetAccountConfigurationCommand.js +2 -14
  20. package/dist-es/commands/GetAcmeExternalAccountBindingCredentialsCommand.js +4 -0
  21. package/dist-es/commands/GetCertificateCommand.js +2 -14
  22. package/dist-es/commands/ImportCertificateCommand.js +2 -14
  23. package/dist-es/commands/ListAcmeAccountsCommand.js +4 -0
  24. package/dist-es/commands/ListAcmeDomainValidationsCommand.js +4 -0
  25. package/dist-es/commands/ListAcmeEndpointsCommand.js +4 -0
  26. package/dist-es/commands/ListAcmeExternalAccountBindingsCommand.js +4 -0
  27. package/dist-es/commands/ListCertificatesCommand.js +2 -14
  28. package/dist-es/commands/ListTagsForCertificateCommand.js +2 -14
  29. package/dist-es/commands/ListTagsForResourceCommand.js +4 -0
  30. package/dist-es/commands/PutAccountConfigurationCommand.js +2 -14
  31. package/dist-es/commands/RemoveTagsFromCertificateCommand.js +2 -14
  32. package/dist-es/commands/RenewCertificateCommand.js +2 -14
  33. package/dist-es/commands/RequestCertificateCommand.js +2 -14
  34. package/dist-es/commands/ResendValidationEmailCommand.js +2 -14
  35. package/dist-es/commands/RevokeAcmeAccountCommand.js +4 -0
  36. package/dist-es/commands/RevokeAcmeExternalAccountBindingCommand.js +4 -0
  37. package/dist-es/commands/RevokeCertificateCommand.js +2 -14
  38. package/dist-es/commands/SearchCertificatesCommand.js +2 -14
  39. package/dist-es/commands/TagResourceCommand.js +4 -0
  40. package/dist-es/commands/UntagResourceCommand.js +4 -0
  41. package/dist-es/commands/UpdateAcmeDomainValidationCommand.js +4 -0
  42. package/dist-es/commands/UpdateAcmeEndpointCommand.js +4 -0
  43. package/dist-es/commands/UpdateCertificateOptionsCommand.js +2 -14
  44. package/dist-es/commands/index.js +22 -0
  45. package/dist-es/endpoint/EndpointParameters.js +4 -1
  46. package/dist-es/endpoint/bdd.js +27 -35
  47. package/dist-es/endpoint/endpointResolver.js +1 -1
  48. package/dist-es/index.js +1 -0
  49. package/dist-es/models/enums.js +60 -0
  50. package/dist-es/models/errors.js +37 -12
  51. package/dist-es/pagination/ListAcmeAccountsPaginator.js +4 -0
  52. package/dist-es/pagination/ListAcmeDomainValidationsPaginator.js +4 -0
  53. package/dist-es/pagination/ListAcmeEndpointsPaginator.js +4 -0
  54. package/dist-es/pagination/ListAcmeExternalAccountBindingsPaginator.js +4 -0
  55. package/dist-es/pagination/index.js +4 -0
  56. package/dist-es/runtimeConfig.browser.js +0 -2
  57. package/dist-es/runtimeConfig.js +1 -2
  58. package/dist-es/runtimeConfig.native.js +0 -2
  59. package/dist-es/runtimeConfig.shared.js +2 -0
  60. package/dist-es/schemas/schemas_0.js +512 -39
  61. package/dist-es/waiters/index.js +4 -0
  62. package/dist-es/waiters/waitForAcmeDomainValidationDeleted.js +34 -0
  63. package/dist-es/waiters/waitForAcmeDomainValidationValidated.js +49 -0
  64. package/dist-es/waiters/waitForAcmeEndpointActive.js +49 -0
  65. package/dist-es/waiters/waitForAcmeEndpointDeleted.js +34 -0
  66. package/dist-types/ACM.d.ts +208 -0
  67. package/dist-types/ACMClient.d.ts +24 -2
  68. package/dist-types/commandBuilder.d.ts +22 -0
  69. package/dist-types/commands/AddTagsToCertificateCommand.d.ts +7 -9
  70. package/dist-types/commands/CreateAcmeDomainValidationCommand.d.ts +110 -0
  71. package/dist-types/commands/CreateAcmeEndpointCommand.d.ts +110 -0
  72. package/dist-types/commands/CreateAcmeExternalAccountBindingCommand.d.ts +113 -0
  73. package/dist-types/commands/DeleteAcmeDomainValidationCommand.d.ts +84 -0
  74. package/dist-types/commands/DeleteAcmeEndpointCommand.d.ts +84 -0
  75. package/dist-types/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +81 -0
  76. package/dist-types/commands/DeleteCertificateCommand.d.ts +7 -9
  77. package/dist-types/commands/DescribeAcmeAccountCommand.d.ts +96 -0
  78. package/dist-types/commands/DescribeAcmeDomainValidationCommand.d.ts +113 -0
  79. package/dist-types/commands/DescribeAcmeEndpointCommand.d.ts +108 -0
  80. package/dist-types/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +95 -0
  81. package/dist-types/commands/DescribeCertificateCommand.d.ts +9 -8
  82. package/dist-types/commands/ExportCertificateCommand.d.ts +6 -8
  83. package/dist-types/commands/GetAccountConfigurationCommand.d.ts +3 -8
  84. package/dist-types/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +87 -0
  85. package/dist-types/commands/GetCertificateCommand.d.ts +6 -8
  86. package/dist-types/commands/ImportCertificateCommand.d.ts +6 -8
  87. package/dist-types/commands/ListAcmeAccountsCommand.d.ts +100 -0
  88. package/dist-types/commands/ListAcmeDomainValidationsCommand.d.ts +118 -0
  89. package/dist-types/commands/ListAcmeEndpointsCommand.d.ts +109 -0
  90. package/dist-types/commands/ListAcmeExternalAccountBindingsCommand.d.ts +100 -0
  91. package/dist-types/commands/ListCertificatesCommand.d.ts +8 -9
  92. package/dist-types/commands/ListTagsForCertificateCommand.d.ts +7 -9
  93. package/dist-types/commands/ListTagsForResourceCommand.d.ts +82 -0
  94. package/dist-types/commands/PutAccountConfigurationCommand.d.ts +3 -8
  95. package/dist-types/commands/RemoveTagsFromCertificateCommand.d.ts +7 -9
  96. package/dist-types/commands/RenewCertificateCommand.d.ts +6 -8
  97. package/dist-types/commands/RequestCertificateCommand.d.ts +3 -8
  98. package/dist-types/commands/ResendValidationEmailCommand.d.ts +6 -8
  99. package/dist-types/commands/RevokeAcmeAccountCommand.d.ts +88 -0
  100. package/dist-types/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +87 -0
  101. package/dist-types/commands/RevokeCertificateCommand.d.ts +6 -8
  102. package/dist-types/commands/SearchCertificatesCommand.d.ts +13 -9
  103. package/dist-types/commands/TagResourceCommand.d.ts +84 -0
  104. package/dist-types/commands/UntagResourceCommand.d.ts +78 -0
  105. package/dist-types/commands/UpdateAcmeDomainValidationCommand.d.ts +97 -0
  106. package/dist-types/commands/UpdateAcmeEndpointCommand.d.ts +96 -0
  107. package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +6 -8
  108. package/dist-types/commands/index.d.ts +22 -0
  109. package/dist-types/endpoint/EndpointParameters.d.ts +14 -5
  110. package/dist-types/index.d.ts +1 -0
  111. package/dist-types/models/enums.d.ts +148 -0
  112. package/dist-types/models/errors.d.ts +37 -12
  113. package/dist-types/models/models_0.d.ts +1284 -67
  114. package/dist-types/pagination/ListAcmeAccountsPaginator.d.ts +7 -0
  115. package/dist-types/pagination/ListAcmeDomainValidationsPaginator.d.ts +7 -0
  116. package/dist-types/pagination/ListAcmeEndpointsPaginator.d.ts +7 -0
  117. package/dist-types/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +7 -0
  118. package/dist-types/pagination/index.d.ts +4 -0
  119. package/dist-types/runtimeConfig.browser.d.ts +5 -1
  120. package/dist-types/runtimeConfig.d.ts +5 -1
  121. package/dist-types/runtimeConfig.native.d.ts +5 -1
  122. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  123. package/dist-types/schemas/schemas_0.d.ts +76 -0
  124. package/dist-types/ts3.4/ACM.d.ts +452 -0
  125. package/dist-types/ts3.4/ACMClient.d.ts +132 -0
  126. package/dist-types/ts3.4/commandBuilder.d.ts +47 -0
  127. package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +7 -16
  128. package/dist-types/ts3.4/commands/CreateAcmeDomainValidationCommand.d.ts +44 -0
  129. package/dist-types/ts3.4/commands/CreateAcmeEndpointCommand.d.ts +44 -0
  130. package/dist-types/ts3.4/commands/CreateAcmeExternalAccountBindingCommand.d.ts +44 -0
  131. package/dist-types/ts3.4/commands/DeleteAcmeDomainValidationCommand.d.ts +40 -0
  132. package/dist-types/ts3.4/commands/DeleteAcmeEndpointCommand.d.ts +39 -0
  133. package/dist-types/ts3.4/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +40 -0
  134. package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +7 -16
  135. package/dist-types/ts3.4/commands/DescribeAcmeAccountCommand.d.ts +44 -0
  136. package/dist-types/ts3.4/commands/DescribeAcmeDomainValidationCommand.d.ts +44 -0
  137. package/dist-types/ts3.4/commands/DescribeAcmeEndpointCommand.d.ts +44 -0
  138. package/dist-types/ts3.4/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +44 -0
  139. package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +7 -16
  140. package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +7 -16
  141. package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +7 -16
  142. package/dist-types/ts3.4/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +44 -0
  143. package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +7 -16
  144. package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +7 -16
  145. package/dist-types/ts3.4/commands/ListAcmeAccountsCommand.d.ts +43 -0
  146. package/dist-types/ts3.4/commands/ListAcmeDomainValidationsCommand.d.ts +44 -0
  147. package/dist-types/ts3.4/commands/ListAcmeEndpointsCommand.d.ts +44 -0
  148. package/dist-types/ts3.4/commands/ListAcmeExternalAccountBindingsCommand.d.ts +44 -0
  149. package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +7 -16
  150. package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +7 -16
  151. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +44 -0
  152. package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +7 -16
  153. package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +7 -16
  154. package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +7 -16
  155. package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +7 -16
  156. package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +7 -16
  157. package/dist-types/ts3.4/commands/RevokeAcmeAccountCommand.d.ts +39 -0
  158. package/dist-types/ts3.4/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +40 -0
  159. package/dist-types/ts3.4/commands/RevokeCertificateCommand.d.ts +7 -16
  160. package/dist-types/ts3.4/commands/SearchCertificatesCommand.d.ts +7 -16
  161. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +38 -0
  162. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
  163. package/dist-types/ts3.4/commands/UpdateAcmeDomainValidationCommand.d.ts +40 -0
  164. package/dist-types/ts3.4/commands/UpdateAcmeEndpointCommand.d.ts +39 -0
  165. package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.d.ts +7 -16
  166. package/dist-types/ts3.4/commands/index.d.ts +22 -0
  167. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +14 -5
  168. package/dist-types/ts3.4/index.d.ts +1 -0
  169. package/dist-types/ts3.4/models/enums.d.ts +80 -0
  170. package/dist-types/ts3.4/models/errors.d.ts +22 -7
  171. package/dist-types/ts3.4/models/models_0.d.ts +395 -5
  172. package/dist-types/ts3.4/pagination/ListAcmeAccountsPaginator.d.ts +11 -0
  173. package/dist-types/ts3.4/pagination/ListAcmeDomainValidationsPaginator.d.ts +11 -0
  174. package/dist-types/ts3.4/pagination/ListAcmeEndpointsPaginator.d.ts +11 -0
  175. package/dist-types/ts3.4/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +11 -0
  176. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  177. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -1
  178. package/dist-types/ts3.4/runtimeConfig.d.ts +11 -1
  179. package/dist-types/ts3.4/runtimeConfig.native.d.ts +11 -1
  180. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  181. package/dist-types/ts3.4/schemas/schemas_0.d.ts +76 -0
  182. package/dist-types/ts3.4/waiters/index.d.ts +4 -0
  183. package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationDeleted.d.ts +18 -0
  184. package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationValidated.d.ts +17 -0
  185. package/dist-types/ts3.4/waiters/waitForAcmeEndpointActive.d.ts +17 -0
  186. package/dist-types/ts3.4/waiters/waitForAcmeEndpointDeleted.d.ts +18 -0
  187. package/dist-types/waiters/index.d.ts +4 -0
  188. package/dist-types/waiters/waitForAcmeDomainValidationDeleted.d.ts +16 -0
  189. package/dist-types/waiters/waitForAcmeDomainValidationValidated.d.ts +15 -0
  190. package/dist-types/waiters/waitForAcmeEndpointActive.d.ts +15 -0
  191. package/dist-types/waiters/waitForAcmeEndpointDeleted.d.ts +16 -0
  192. package/package.json +8 -10
@@ -0,0 +1,82 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link ListTagsForResourceCommand}.
11
+ */
12
+ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link ListTagsForResourceCommand}.
18
+ */
19
+ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
20
+ }
21
+ declare const ListTagsForResourceCommand_base: {
22
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Lists the tags associated with an ACM resource.</p> <note> <p>Use this action for all ACM resource types except the <code>certificate</code> resource type. For certificate resources, use <a>ListTagsForCertificate</a> instead.</p> </note> <p>To add one or more tags, use the <a>TagResource</a> action. To remove one or more tags, use the <a>UntagResource</a> action.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { ACMClient, ListTagsForResourceCommand } from "@aws-sdk/client-acm"; // ES Modules import
32
+ * // const { ACMClient, ListTagsForResourceCommand } = require("@aws-sdk/client-acm"); // CommonJS import
33
+ * // import type { ACMClientConfig } from "@aws-sdk/client-acm";
34
+ * const config = {}; // type is ACMClientConfig
35
+ * const client = new ACMClient(config);
36
+ * const input = { // ListTagsForResourceRequest
37
+ * ResourceArn: "STRING_VALUE", // required
38
+ * };
39
+ * const command = new ListTagsForResourceCommand(input);
40
+ * const response = await client.send(command);
41
+ * // { // ListTagsForResourceResponse
42
+ * // Tags: [ // TagList
43
+ * // { // Tag
44
+ * // Key: "STRING_VALUE", // required
45
+ * // Value: "STRING_VALUE",
46
+ * // },
47
+ * // ],
48
+ * // };
49
+ *
50
+ * ```
51
+ *
52
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
53
+ * @returns {@link ListTagsForResourceCommandOutput}
54
+ * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
55
+ * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
56
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
57
+ *
58
+ * @throws {@link ResourceNotFoundException} (client fault)
59
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
60
+ *
61
+ * @throws {@link ValidationException} (client fault)
62
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
63
+ *
64
+ * @throws {@link ACMServiceException}
65
+ * <p>Base exception class for all service exceptions from ACM service.</p>
66
+ *
67
+ *
68
+ * @public
69
+ */
70
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
71
+ /** @internal type navigation helper, not in runtime. */
72
+ protected static __types: {
73
+ api: {
74
+ input: ListTagsForResourceRequest;
75
+ output: ListTagsForResourceResponse;
76
+ };
77
+ sdk: {
78
+ input: ListTagsForResourceCommandInput;
79
+ output: ListTagsForResourceCommandOutput;
80
+ };
81
+ };
82
+ }
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
2
  import type { PutAccountConfigurationRequest } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface PutAccountConfigurationCommandInput extends PutAccountConfigura
22
19
  export interface PutAccountConfigurationCommandOutput extends __MetadataBearer {
23
20
  }
24
21
  declare const PutAccountConfigurationCommand_base: {
25
- new (input: PutAccountConfigurationCommandInput): import("@smithy/core/client").CommandImpl<PutAccountConfigurationCommandInput, PutAccountConfigurationCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: PutAccountConfigurationCommandInput): import("@smithy/core/client").CommandImpl<PutAccountConfigurationCommandInput, PutAccountConfigurationCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: PutAccountConfigurationCommandInput): import("@smithy/core/client").CommandImpl<PutAccountConfigurationCommandInput, PutAccountConfigurationCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: PutAccountConfigurationCommandInput): import("@smithy/core/client").CommandImpl<PutAccountConfigurationCommandInput, PutAccountConfigurationCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Adds or modifies account-level configurations in ACM. </p> <p>The supported configuration option is <code>DaysBeforeExpiry</code>. This option specifies the number of days prior to certificate expiration when ACM starts generating <code>EventBridge</code> events. ACM sends one event per day per certificate until the certificate expires. By default, accounts receive events starting 45 days before certificate expiration.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
2
  import type { RemoveTagsFromCertificateRequest } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,14 +19,12 @@ export interface RemoveTagsFromCertificateCommandInput extends RemoveTagsFromCer
22
19
  export interface RemoveTagsFromCertificateCommandOutput extends __MetadataBearer {
23
20
  }
24
21
  declare const RemoveTagsFromCertificateCommand_base: {
25
- new (input: RemoveTagsFromCertificateCommandInput): import("@smithy/core/client").CommandImpl<RemoveTagsFromCertificateCommandInput, RemoveTagsFromCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: RemoveTagsFromCertificateCommandInput): import("@smithy/core/client").CommandImpl<RemoveTagsFromCertificateCommandInput, RemoveTagsFromCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: RemoveTagsFromCertificateCommandInput): import("@smithy/core/client").CommandImpl<RemoveTagsFromCertificateCommandInput, RemoveTagsFromCertificateCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: RemoveTagsFromCertificateCommandInput): import("@smithy/core/client").CommandImpl<RemoveTagsFromCertificateCommandInput, RemoveTagsFromCertificateCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
- * <p>Remove one or more tags from an ACM certificate. A tag consists of a key-value pair. If you do not specify the value portion of the tag when calling this function, the tag will be removed regardless of value. If you specify a value, the tag is removed only if it is associated with the specified value. </p> <p>To add tags to a certificate, use the <a>AddTagsToCertificate</a> action. To view all of the tags that have been applied to a specific ACM certificate, use the <a>ListTagsForCertificate</a> action. </p>
27
+ * <p>Remove one or more tags from an ACM certificate. A tag consists of a key-value pair. If you do not specify the value portion of the tag when calling this function, the tag will be removed regardless of value. If you specify a value, the tag is removed only if it is associated with the specified value. </p> <note> <p>This action applies only to the <code>certificate</code> resource type. For all other ACM resource types, use <a>UntagResource</a> instead.</p> </note> <p>To add tags to a certificate, use the <a>AddTagsToCertificate</a> action. To view all of the tags that have been applied to a specific ACM certificate, use the <a>ListTagsForCertificate</a> action. </p>
33
28
  * @example
34
29
  * Use a bare-bones client and the command you need to make an API call.
35
30
  * ```javascript
@@ -77,6 +72,9 @@ declare const RemoveTagsFromCertificateCommand_base: {
77
72
  * @throws {@link ThrottlingException} (client fault)
78
73
  * <p>The request was denied because it exceeded a quota.</p>
79
74
  *
75
+ * @throws {@link ValidationException} (client fault)
76
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
77
+ *
80
78
  * @throws {@link ACMServiceException}
81
79
  * <p>Base exception class for all service exceptions from ACM service.</p>
82
80
  *
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
2
  import type { RenewCertificateRequest } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface RenewCertificateCommandInput extends RenewCertificateRequest {
22
19
  export interface RenewCertificateCommandOutput extends __MetadataBearer {
23
20
  }
24
21
  declare const RenewCertificateCommand_base: {
25
- new (input: RenewCertificateCommandInput): import("@smithy/core/client").CommandImpl<RenewCertificateCommandInput, RenewCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: RenewCertificateCommandInput): import("@smithy/core/client").CommandImpl<RenewCertificateCommandInput, RenewCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: RenewCertificateCommandInput): import("@smithy/core/client").CommandImpl<RenewCertificateCommandInput, RenewCertificateCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: RenewCertificateCommandInput): import("@smithy/core/client").CommandImpl<RenewCertificateCommandInput, RenewCertificateCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Renews an <a href="https://docs.aws.amazon.com/acm/latest/userguide/managed-renewal.html">eligible ACM certificate</a>. In order to renew your Amazon Web Services Private CA certificates with ACM, you must first <a href="https://docs.aws.amazon.com/privateca/latest/userguide/assign-permissions.html#PcaPermissions">grant the ACM service principal permission to do so</a>. For more information, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/managed-renewal.html">Testing Managed Renewal</a> in the ACM User Guide.</p>
@@ -62,6 +57,9 @@ declare const RenewCertificateCommand_base: {
62
57
  * @throws {@link ResourceNotFoundException} (client fault)
63
58
  * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
64
59
  *
60
+ * @throws {@link ValidationException} (client fault)
61
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
62
+ *
65
63
  * @throws {@link ACMServiceException}
66
64
  * <p>Base exception class for all service exceptions from ACM service.</p>
67
65
  *
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
2
  import type { RequestCertificateRequest, RequestCertificateResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface RequestCertificateCommandInput extends RequestCertificateReques
22
19
  export interface RequestCertificateCommandOutput extends RequestCertificateResponse, __MetadataBearer {
23
20
  }
24
21
  declare const RequestCertificateCommand_base: {
25
- new (input: RequestCertificateCommandInput): import("@smithy/core/client").CommandImpl<RequestCertificateCommandInput, RequestCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: RequestCertificateCommandInput): import("@smithy/core/client").CommandImpl<RequestCertificateCommandInput, RequestCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: RequestCertificateCommandInput): import("@smithy/core/client").CommandImpl<RequestCertificateCommandInput, RequestCertificateCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: RequestCertificateCommandInput): import("@smithy/core/client").CommandImpl<RequestCertificateCommandInput, RequestCertificateCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Requests an ACM certificate for use with other Amazon Web Services services. To request an ACM certificate, you must specify a fully qualified domain name (FQDN) in the <code>DomainName</code> parameter. You can also specify additional FQDNs in the <code>SubjectAlternativeNames</code> parameter. </p> <p>If you are requesting a private certificate, domain validation is not required. If you are requesting a public certificate, each domain name that you specify must be validated to verify that you own or control the domain. You can use <a href="https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-dns.html">DNS validation</a> or <a href="https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-email.html">email validation</a>. We recommend that you use DNS validation.</p> <note> <p>ACM behavior differs from the <a href="https://datatracker.ietf.org/doc/html/rfc6125#appendix-B.2">RFC 6125</a> specification of the certificate validation process. ACM first checks for a Subject Alternative Name, and, if it finds one, ignores the common name (CN).</p> </note> <p>After successful completion of the <code>RequestCertificate</code> action, there is a delay of several seconds before you can retrieve information about the new certificate.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
2
  import type { ResendValidationEmailRequest } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ResendValidationEmailCommandInput extends ResendValidationEmail
22
19
  export interface ResendValidationEmailCommandOutput extends __MetadataBearer {
23
20
  }
24
21
  declare const ResendValidationEmailCommand_base: {
25
- new (input: ResendValidationEmailCommandInput): import("@smithy/core/client").CommandImpl<ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ResendValidationEmailCommandInput): import("@smithy/core/client").CommandImpl<ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ResendValidationEmailCommandInput): import("@smithy/core/client").CommandImpl<ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ResendValidationEmailCommandInput): import("@smithy/core/client").CommandImpl<ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Resends the email that requests domain ownership validation. The domain owner or an authorized representative must approve the ACM certificate before it can be issued. The certificate can be approved by clicking a link in the mail to navigate to the Amazon certificate approval website and then clicking <b>I Approve</b>. However, the validation email can be blocked by spam filters. Therefore, if you do not receive the original mail, you can request that the mail be resent within 72 hours of requesting the ACM certificate. If more than 72 hours have elapsed since your original request or since your last attempt to resend validation mail, you must request a new certificate. For more information about setting up your contact email addresses, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/setup-email.html">Configure Email for your Domain</a>. </p>
@@ -67,6 +62,9 @@ declare const ResendValidationEmailCommand_base: {
67
62
  * @throws {@link ResourceNotFoundException} (client fault)
68
63
  * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
69
64
  *
65
+ * @throws {@link ValidationException} (client fault)
66
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
67
+ *
70
68
  * @throws {@link ACMServiceException}
71
69
  * <p>Base exception class for all service exceptions from ACM service.</p>
72
70
  *
@@ -0,0 +1,88 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { RevokeAcmeAccountRequest } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link RevokeAcmeAccountCommand}.
11
+ */
12
+ export interface RevokeAcmeAccountCommandInput extends RevokeAcmeAccountRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link RevokeAcmeAccountCommand}.
18
+ */
19
+ export interface RevokeAcmeAccountCommandOutput extends __MetadataBearer {
20
+ }
21
+ declare const RevokeAcmeAccountCommand_base: {
22
+ new (input: RevokeAcmeAccountCommandInput): import("@smithy/core/client").CommandImpl<RevokeAcmeAccountCommandInput, RevokeAcmeAccountCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: RevokeAcmeAccountCommandInput): import("@smithy/core/client").CommandImpl<RevokeAcmeAccountCommandInput, RevokeAcmeAccountCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Revokes an ACME account, preventing it from requesting or revoking certificates. This operation is irreversible.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { ACMClient, RevokeAcmeAccountCommand } from "@aws-sdk/client-acm"; // ES Modules import
32
+ * // const { ACMClient, RevokeAcmeAccountCommand } = require("@aws-sdk/client-acm"); // CommonJS import
33
+ * // import type { ACMClientConfig } from "@aws-sdk/client-acm";
34
+ * const config = {}; // type is ACMClientConfig
35
+ * const client = new ACMClient(config);
36
+ * const input = { // RevokeAcmeAccountRequest
37
+ * AcmeEndpointArn: "STRING_VALUE", // required
38
+ * AccountUrl: "STRING_VALUE", // required
39
+ * };
40
+ * const command = new RevokeAcmeAccountCommand(input);
41
+ * const response = await client.send(command);
42
+ * // {};
43
+ *
44
+ * ```
45
+ *
46
+ * @param RevokeAcmeAccountCommandInput - {@link RevokeAcmeAccountCommandInput}
47
+ * @returns {@link RevokeAcmeAccountCommandOutput}
48
+ * @see {@link RevokeAcmeAccountCommandInput} for command's `input` shape.
49
+ * @see {@link RevokeAcmeAccountCommandOutput} for command's `response` shape.
50
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
51
+ *
52
+ * @throws {@link AccessDeniedException} (client fault)
53
+ * <p>You do not have access required to perform this action.</p>
54
+ *
55
+ * @throws {@link ConflictException} (client fault)
56
+ * <p>You are trying to update a resource or configuration that is already being created or updated. Wait for the previous operation to finish and try again.</p>
57
+ *
58
+ * @throws {@link InternalServerException} (server fault)
59
+ * <p>The request processing has failed because of an unknown error, exception, or failure.</p>
60
+ *
61
+ * @throws {@link ResourceNotFoundException} (client fault)
62
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
63
+ *
64
+ * @throws {@link ThrottlingException} (client fault)
65
+ * <p>The request was denied because it exceeded a quota.</p>
66
+ *
67
+ * @throws {@link ValidationException} (client fault)
68
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
69
+ *
70
+ * @throws {@link ACMServiceException}
71
+ * <p>Base exception class for all service exceptions from ACM service.</p>
72
+ *
73
+ *
74
+ * @public
75
+ */
76
+ export declare class RevokeAcmeAccountCommand extends RevokeAcmeAccountCommand_base {
77
+ /** @internal type navigation helper, not in runtime. */
78
+ protected static __types: {
79
+ api: {
80
+ input: RevokeAcmeAccountRequest;
81
+ output: {};
82
+ };
83
+ sdk: {
84
+ input: RevokeAcmeAccountCommandInput;
85
+ output: RevokeAcmeAccountCommandOutput;
86
+ };
87
+ };
88
+ }
@@ -0,0 +1,87 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { RevokeAcmeExternalAccountBindingRequest } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link RevokeAcmeExternalAccountBindingCommand}.
11
+ */
12
+ export interface RevokeAcmeExternalAccountBindingCommandInput extends RevokeAcmeExternalAccountBindingRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link RevokeAcmeExternalAccountBindingCommand}.
18
+ */
19
+ export interface RevokeAcmeExternalAccountBindingCommandOutput extends __MetadataBearer {
20
+ }
21
+ declare const RevokeAcmeExternalAccountBindingCommand_base: {
22
+ new (input: RevokeAcmeExternalAccountBindingCommandInput): import("@smithy/core/client").CommandImpl<RevokeAcmeExternalAccountBindingCommandInput, RevokeAcmeExternalAccountBindingCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: RevokeAcmeExternalAccountBindingCommandInput): import("@smithy/core/client").CommandImpl<RevokeAcmeExternalAccountBindingCommandInput, RevokeAcmeExternalAccountBindingCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Revokes an external account binding, preventing new ACME accounts from being registered using this binding. Existing ACME accounts that were previously registered using the binding are not affected and must be revoked separately.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { ACMClient, RevokeAcmeExternalAccountBindingCommand } from "@aws-sdk/client-acm"; // ES Modules import
32
+ * // const { ACMClient, RevokeAcmeExternalAccountBindingCommand } = require("@aws-sdk/client-acm"); // CommonJS import
33
+ * // import type { ACMClientConfig } from "@aws-sdk/client-acm";
34
+ * const config = {}; // type is ACMClientConfig
35
+ * const client = new ACMClient(config);
36
+ * const input = { // RevokeAcmeExternalAccountBindingRequest
37
+ * AcmeExternalAccountBindingArn: "STRING_VALUE", // required
38
+ * };
39
+ * const command = new RevokeAcmeExternalAccountBindingCommand(input);
40
+ * const response = await client.send(command);
41
+ * // {};
42
+ *
43
+ * ```
44
+ *
45
+ * @param RevokeAcmeExternalAccountBindingCommandInput - {@link RevokeAcmeExternalAccountBindingCommandInput}
46
+ * @returns {@link RevokeAcmeExternalAccountBindingCommandOutput}
47
+ * @see {@link RevokeAcmeExternalAccountBindingCommandInput} for command's `input` shape.
48
+ * @see {@link RevokeAcmeExternalAccountBindingCommandOutput} for command's `response` shape.
49
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
50
+ *
51
+ * @throws {@link AccessDeniedException} (client fault)
52
+ * <p>You do not have access required to perform this action.</p>
53
+ *
54
+ * @throws {@link ConflictException} (client fault)
55
+ * <p>You are trying to update a resource or configuration that is already being created or updated. Wait for the previous operation to finish and try again.</p>
56
+ *
57
+ * @throws {@link InternalServerException} (server fault)
58
+ * <p>The request processing has failed because of an unknown error, exception, or failure.</p>
59
+ *
60
+ * @throws {@link ResourceNotFoundException} (client fault)
61
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
62
+ *
63
+ * @throws {@link ThrottlingException} (client fault)
64
+ * <p>The request was denied because it exceeded a quota.</p>
65
+ *
66
+ * @throws {@link ValidationException} (client fault)
67
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
68
+ *
69
+ * @throws {@link ACMServiceException}
70
+ * <p>Base exception class for all service exceptions from ACM service.</p>
71
+ *
72
+ *
73
+ * @public
74
+ */
75
+ export declare class RevokeAcmeExternalAccountBindingCommand extends RevokeAcmeExternalAccountBindingCommand_base {
76
+ /** @internal type navigation helper, not in runtime. */
77
+ protected static __types: {
78
+ api: {
79
+ input: RevokeAcmeExternalAccountBindingRequest;
80
+ output: {};
81
+ };
82
+ sdk: {
83
+ input: RevokeAcmeExternalAccountBindingCommandInput;
84
+ output: RevokeAcmeExternalAccountBindingCommandOutput;
85
+ };
86
+ };
87
+ }
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
2
  import type { RevokeCertificateRequest, RevokeCertificateResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface RevokeCertificateCommandInput extends RevokeCertificateRequest
22
19
  export interface RevokeCertificateCommandOutput extends RevokeCertificateResponse, __MetadataBearer {
23
20
  }
24
21
  declare const RevokeCertificateCommand_base: {
25
- new (input: RevokeCertificateCommandInput): import("@smithy/core/client").CommandImpl<RevokeCertificateCommandInput, RevokeCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: RevokeCertificateCommandInput): import("@smithy/core/client").CommandImpl<RevokeCertificateCommandInput, RevokeCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: RevokeCertificateCommandInput): import("@smithy/core/client").CommandImpl<RevokeCertificateCommandInput, RevokeCertificateCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: RevokeCertificateCommandInput): import("@smithy/core/client").CommandImpl<RevokeCertificateCommandInput, RevokeCertificateCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Revokes a public ACM certificate. You can only revoke certificates that have been previously exported.</p> <important> <p>Once a certificate is revoked, you cannot reuse the certificate. Revoking a certificate is permanent.</p> </important>
@@ -74,6 +69,9 @@ declare const RevokeCertificateCommand_base: {
74
69
  * @throws {@link ThrottlingException} (client fault)
75
70
  * <p>The request was denied because it exceeded a quota.</p>
76
71
  *
72
+ * @throws {@link ValidationException} (client fault)
73
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
74
+ *
77
75
  * @throws {@link ACMServiceException}
78
76
  * <p>Base exception class for all service exceptions from ACM service.</p>
79
77
  *
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
2
  import type { SearchCertificatesRequest, SearchCertificatesResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface SearchCertificatesCommandInput extends SearchCertificatesReques
22
19
  export interface SearchCertificatesCommandOutput extends SearchCertificatesResponse, __MetadataBearer {
23
20
  }
24
21
  declare const SearchCertificatesCommand_base: {
25
- new (input: SearchCertificatesCommandInput): import("@smithy/core/client").CommandImpl<SearchCertificatesCommandInput, SearchCertificatesCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [SearchCertificatesCommandInput]): import("@smithy/core/client").CommandImpl<SearchCertificatesCommandInput, SearchCertificatesCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: SearchCertificatesCommandInput): import("@smithy/core/client").CommandImpl<SearchCertificatesCommandInput, SearchCertificatesCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [SearchCertificatesCommandInput]): import("@smithy/core/client").CommandImpl<SearchCertificatesCommandInput, SearchCertificatesCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Retrieves a list of certificates matching search criteria. You can filter certificates by X.509 attributes and ACM specific properties like certificate status, type and renewal eligibility. This operation provides more flexible filtering than <a>ListCertificates</a> by supporting complex filter statements.</p>
@@ -86,6 +81,9 @@ declare const SearchCertificatesCommand_base: {
86
81
  * ExportOption: "ENABLED" || "DISABLED",
87
82
  * ManagedBy: "CLOUDFRONT",
88
83
  * ValidationMethod: "EMAIL" || "DNS" || "HTTP",
84
+ * CertificateKeyPairOrigin: "AWS_MANAGED" || "ACME" || "CUSTOMER_PROVIDED",
85
+ * AcmeEndpointArn: "STRING_VALUE",
86
+ * AcmeAccountId: "STRING_VALUE",
89
87
  * },
90
88
  * },
91
89
  * },
@@ -131,12 +129,15 @@ declare const SearchCertificatesCommand_base: {
131
129
  * ExportOption: "ENABLED" || "DISABLED",
132
130
  * ManagedBy: "CLOUDFRONT",
133
131
  * ValidationMethod: "EMAIL" || "DNS" || "HTTP",
132
+ * CertificateKeyPairOrigin: "AWS_MANAGED" || "ACME" || "CUSTOMER_PROVIDED",
133
+ * AcmeEndpointArn: "STRING_VALUE",
134
+ * AcmeAccountId: "STRING_VALUE",
134
135
  * },
135
136
  * },
136
137
  * },
137
138
  * MaxResults: Number("int"),
138
139
  * NextToken: "STRING_VALUE",
139
- * SortBy: "CREATED_AT" || "NOT_AFTER" || "STATUS" || "RENEWAL_STATUS" || "EXPORTED" || "IN_USE" || "NOT_BEFORE" || "KEY_ALGORITHM" || "TYPE" || "CERTIFICATE_ARN" || "COMMON_NAME" || "REVOKED_AT" || "RENEWAL_ELIGIBILITY" || "ISSUED_AT" || "MANAGED_BY" || "EXPORT_OPTION" || "VALIDATION_METHOD" || "IMPORTED_AT",
140
+ * SortBy: "CREATED_AT" || "NOT_AFTER" || "STATUS" || "RENEWAL_STATUS" || "EXPORTED" || "IN_USE" || "NOT_BEFORE" || "KEY_ALGORITHM" || "TYPE" || "CERTIFICATE_ARN" || "COMMON_NAME" || "REVOKED_AT" || "RENEWAL_ELIGIBILITY" || "ISSUED_AT" || "MANAGED_BY" || "EXPORT_OPTION" || "VALIDATION_METHOD" || "IMPORTED_AT" || "ACME_ENDPOINT_ARN" || "ACME_ACCOUNT_ID" || "CERTIFICATE_KEY_PAIR_ORIGIN",
140
141
  * SortOrder: "ASCENDING" || "DESCENDING",
141
142
  * };
142
143
  * const command = new SearchCertificatesCommand(input);
@@ -260,6 +261,9 @@ declare const SearchCertificatesCommand_base: {
260
261
  * // ExportOption: "ENABLED" || "DISABLED",
261
262
  * // ManagedBy: "CLOUDFRONT",
262
263
  * // ValidationMethod: "EMAIL" || "DNS" || "HTTP",
264
+ * // CertificateKeyPairOrigin: "AWS_MANAGED" || "ACME" || "CUSTOMER_PROVIDED",
265
+ * // AcmeEndpointArn: "STRING_VALUE",
266
+ * // AcmeAccountId: "STRING_VALUE",
263
267
  * // },
264
268
  * // },
265
269
  * // },
@@ -0,0 +1,84 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { TagResourceRequest } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link TagResourceCommand}.
11
+ */
12
+ export interface TagResourceCommandInput extends TagResourceRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link TagResourceCommand}.
18
+ */
19
+ export interface TagResourceCommandOutput extends __MetadataBearer {
20
+ }
21
+ declare const TagResourceCommand_base: {
22
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Adds one or more tags to an ACM resource. Tags are labels that you can use to identify and organize your Amazon Web Services resources. Each tag consists of a <code>key</code> and an optional <code>value</code>.</p> <note> <p>Use this action for all ACM resource types except the <code>certificate</code> resource type. For certificate resources, use <a>AddTagsToCertificate</a> instead.</p> </note> <p>To remove one or more tags, use the <a>UntagResource</a> action. To view all of the tags that have been applied to a resource, use the <a>ListTagsForResource</a> action.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { ACMClient, TagResourceCommand } from "@aws-sdk/client-acm"; // ES Modules import
32
+ * // const { ACMClient, TagResourceCommand } = require("@aws-sdk/client-acm"); // CommonJS import
33
+ * // import type { ACMClientConfig } from "@aws-sdk/client-acm";
34
+ * const config = {}; // type is ACMClientConfig
35
+ * const client = new ACMClient(config);
36
+ * const input = { // TagResourceRequest
37
+ * ResourceArn: "STRING_VALUE", // required
38
+ * Tags: [ // TagList // required
39
+ * { // Tag
40
+ * Key: "STRING_VALUE", // required
41
+ * Value: "STRING_VALUE",
42
+ * },
43
+ * ],
44
+ * };
45
+ * const command = new TagResourceCommand(input);
46
+ * const response = await client.send(command);
47
+ * // {};
48
+ *
49
+ * ```
50
+ *
51
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
52
+ * @returns {@link TagResourceCommandOutput}
53
+ * @see {@link TagResourceCommandInput} for command's `input` shape.
54
+ * @see {@link TagResourceCommandOutput} for command's `response` shape.
55
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
56
+ *
57
+ * @throws {@link ResourceNotFoundException} (client fault)
58
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
59
+ *
60
+ * @throws {@link ServiceQuotaExceededException} (client fault)
61
+ * <p>A service quota has been exceeded.</p>
62
+ *
63
+ * @throws {@link ValidationException} (client fault)
64
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
65
+ *
66
+ * @throws {@link ACMServiceException}
67
+ * <p>Base exception class for all service exceptions from ACM service.</p>
68
+ *
69
+ *
70
+ * @public
71
+ */
72
+ export declare class TagResourceCommand extends TagResourceCommand_base {
73
+ /** @internal type navigation helper, not in runtime. */
74
+ protected static __types: {
75
+ api: {
76
+ input: TagResourceRequest;
77
+ output: {};
78
+ };
79
+ sdk: {
80
+ input: TagResourceCommandInput;
81
+ output: TagResourceCommandOutput;
82
+ };
83
+ };
84
+ }