@aws-sdk/client-acm 3.1076.0 → 3.1077.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 (166) hide show
  1. package/README.md +161 -7
  2. package/dist-cjs/index.js +1406 -152
  3. package/dist-es/ACM.js +60 -0
  4. package/dist-es/commands/AddTagsToCertificateCommand.js +4 -1
  5. package/dist-es/commands/CreateAcmeDomainValidationCommand.js +19 -0
  6. package/dist-es/commands/CreateAcmeEndpointCommand.js +19 -0
  7. package/dist-es/commands/CreateAcmeExternalAccountBindingCommand.js +19 -0
  8. package/dist-es/commands/DeleteAcmeDomainValidationCommand.js +19 -0
  9. package/dist-es/commands/DeleteAcmeEndpointCommand.js +19 -0
  10. package/dist-es/commands/DeleteAcmeExternalAccountBindingCommand.js +19 -0
  11. package/dist-es/commands/DeleteCertificateCommand.js +4 -1
  12. package/dist-es/commands/DescribeAcmeAccountCommand.js +19 -0
  13. package/dist-es/commands/DescribeAcmeDomainValidationCommand.js +19 -0
  14. package/dist-es/commands/DescribeAcmeEndpointCommand.js +19 -0
  15. package/dist-es/commands/DescribeAcmeExternalAccountBindingCommand.js +19 -0
  16. package/dist-es/commands/DescribeCertificateCommand.js +4 -1
  17. package/dist-es/commands/ExportCertificateCommand.js +4 -1
  18. package/dist-es/commands/GetAccountConfigurationCommand.js +4 -1
  19. package/dist-es/commands/GetAcmeExternalAccountBindingCredentialsCommand.js +19 -0
  20. package/dist-es/commands/GetCertificateCommand.js +4 -1
  21. package/dist-es/commands/ImportCertificateCommand.js +4 -1
  22. package/dist-es/commands/ListAcmeAccountsCommand.js +19 -0
  23. package/dist-es/commands/ListAcmeDomainValidationsCommand.js +19 -0
  24. package/dist-es/commands/ListAcmeEndpointsCommand.js +19 -0
  25. package/dist-es/commands/ListAcmeExternalAccountBindingsCommand.js +19 -0
  26. package/dist-es/commands/ListCertificatesCommand.js +4 -1
  27. package/dist-es/commands/ListTagsForCertificateCommand.js +4 -1
  28. package/dist-es/commands/ListTagsForResourceCommand.js +19 -0
  29. package/dist-es/commands/PutAccountConfigurationCommand.js +4 -1
  30. package/dist-es/commands/RemoveTagsFromCertificateCommand.js +4 -1
  31. package/dist-es/commands/RenewCertificateCommand.js +4 -1
  32. package/dist-es/commands/RequestCertificateCommand.js +4 -1
  33. package/dist-es/commands/ResendValidationEmailCommand.js +4 -1
  34. package/dist-es/commands/RevokeAcmeAccountCommand.js +19 -0
  35. package/dist-es/commands/RevokeAcmeExternalAccountBindingCommand.js +19 -0
  36. package/dist-es/commands/RevokeCertificateCommand.js +4 -1
  37. package/dist-es/commands/SearchCertificatesCommand.js +4 -1
  38. package/dist-es/commands/TagResourceCommand.js +19 -0
  39. package/dist-es/commands/UntagResourceCommand.js +19 -0
  40. package/dist-es/commands/UpdateAcmeDomainValidationCommand.js +19 -0
  41. package/dist-es/commands/UpdateAcmeEndpointCommand.js +19 -0
  42. package/dist-es/commands/UpdateCertificateOptionsCommand.js +4 -1
  43. package/dist-es/commands/index.js +22 -0
  44. package/dist-es/endpoint/EndpointParameters.js +4 -1
  45. package/dist-es/endpoint/bdd.js +27 -35
  46. package/dist-es/endpoint/endpointResolver.js +1 -1
  47. package/dist-es/models/enums.js +60 -0
  48. package/dist-es/models/errors.js +37 -12
  49. package/dist-es/pagination/ListAcmeAccountsPaginator.js +4 -0
  50. package/dist-es/pagination/ListAcmeDomainValidationsPaginator.js +4 -0
  51. package/dist-es/pagination/ListAcmeEndpointsPaginator.js +4 -0
  52. package/dist-es/pagination/ListAcmeExternalAccountBindingsPaginator.js +4 -0
  53. package/dist-es/pagination/index.js +4 -0
  54. package/dist-es/runtimeConfig.browser.js +0 -2
  55. package/dist-es/runtimeConfig.js +1 -2
  56. package/dist-es/runtimeConfig.native.js +0 -2
  57. package/dist-es/runtimeConfig.shared.js +2 -0
  58. package/dist-es/schemas/schemas_0.js +512 -39
  59. package/dist-es/waiters/index.js +4 -0
  60. package/dist-es/waiters/waitForAcmeDomainValidationDeleted.js +34 -0
  61. package/dist-es/waiters/waitForAcmeDomainValidationValidated.js +49 -0
  62. package/dist-es/waiters/waitForAcmeEndpointActive.js +49 -0
  63. package/dist-es/waiters/waitForAcmeEndpointDeleted.js +34 -0
  64. package/dist-types/ACM.d.ts +208 -0
  65. package/dist-types/ACMClient.d.ts +24 -2
  66. package/dist-types/commands/AddTagsToCertificateCommand.d.ts +4 -1
  67. package/dist-types/commands/CreateAcmeDomainValidationCommand.d.ts +115 -0
  68. package/dist-types/commands/CreateAcmeEndpointCommand.d.ts +115 -0
  69. package/dist-types/commands/CreateAcmeExternalAccountBindingCommand.d.ts +118 -0
  70. package/dist-types/commands/DeleteAcmeDomainValidationCommand.d.ts +89 -0
  71. package/dist-types/commands/DeleteAcmeEndpointCommand.d.ts +89 -0
  72. package/dist-types/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +86 -0
  73. package/dist-types/commands/DeleteCertificateCommand.d.ts +4 -1
  74. package/dist-types/commands/DescribeAcmeAccountCommand.d.ts +101 -0
  75. package/dist-types/commands/DescribeAcmeDomainValidationCommand.d.ts +118 -0
  76. package/dist-types/commands/DescribeAcmeEndpointCommand.d.ts +113 -0
  77. package/dist-types/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +100 -0
  78. package/dist-types/commands/DescribeCertificateCommand.d.ts +6 -0
  79. package/dist-types/commands/ExportCertificateCommand.d.ts +3 -0
  80. package/dist-types/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +92 -0
  81. package/dist-types/commands/GetCertificateCommand.d.ts +3 -0
  82. package/dist-types/commands/ImportCertificateCommand.d.ts +3 -0
  83. package/dist-types/commands/ListAcmeAccountsCommand.d.ts +105 -0
  84. package/dist-types/commands/ListAcmeDomainValidationsCommand.d.ts +123 -0
  85. package/dist-types/commands/ListAcmeEndpointsCommand.d.ts +114 -0
  86. package/dist-types/commands/ListAcmeExternalAccountBindingsCommand.d.ts +105 -0
  87. package/dist-types/commands/ListCertificatesCommand.d.ts +5 -1
  88. package/dist-types/commands/ListTagsForCertificateCommand.d.ts +4 -1
  89. package/dist-types/commands/ListTagsForResourceCommand.d.ts +87 -0
  90. package/dist-types/commands/RemoveTagsFromCertificateCommand.d.ts +4 -1
  91. package/dist-types/commands/RenewCertificateCommand.d.ts +3 -0
  92. package/dist-types/commands/ResendValidationEmailCommand.d.ts +3 -0
  93. package/dist-types/commands/RevokeAcmeAccountCommand.d.ts +93 -0
  94. package/dist-types/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +92 -0
  95. package/dist-types/commands/RevokeCertificateCommand.d.ts +3 -0
  96. package/dist-types/commands/SearchCertificatesCommand.d.ts +10 -1
  97. package/dist-types/commands/TagResourceCommand.d.ts +89 -0
  98. package/dist-types/commands/UntagResourceCommand.d.ts +83 -0
  99. package/dist-types/commands/UpdateAcmeDomainValidationCommand.d.ts +102 -0
  100. package/dist-types/commands/UpdateAcmeEndpointCommand.d.ts +101 -0
  101. package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +3 -0
  102. package/dist-types/commands/index.d.ts +22 -0
  103. package/dist-types/endpoint/EndpointParameters.d.ts +14 -5
  104. package/dist-types/models/enums.d.ts +148 -0
  105. package/dist-types/models/errors.d.ts +37 -12
  106. package/dist-types/models/models_0.d.ts +1284 -67
  107. package/dist-types/pagination/ListAcmeAccountsPaginator.d.ts +7 -0
  108. package/dist-types/pagination/ListAcmeDomainValidationsPaginator.d.ts +7 -0
  109. package/dist-types/pagination/ListAcmeEndpointsPaginator.d.ts +7 -0
  110. package/dist-types/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +7 -0
  111. package/dist-types/pagination/index.d.ts +4 -0
  112. package/dist-types/runtimeConfig.browser.d.ts +5 -1
  113. package/dist-types/runtimeConfig.d.ts +5 -1
  114. package/dist-types/runtimeConfig.native.d.ts +5 -1
  115. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  116. package/dist-types/schemas/schemas_0.d.ts +76 -0
  117. package/dist-types/ts3.4/ACM.d.ts +452 -0
  118. package/dist-types/ts3.4/ACMClient.d.ts +132 -0
  119. package/dist-types/ts3.4/commands/CreateAcmeDomainValidationCommand.d.ts +53 -0
  120. package/dist-types/ts3.4/commands/CreateAcmeEndpointCommand.d.ts +53 -0
  121. package/dist-types/ts3.4/commands/CreateAcmeExternalAccountBindingCommand.d.ts +53 -0
  122. package/dist-types/ts3.4/commands/DeleteAcmeDomainValidationCommand.d.ts +49 -0
  123. package/dist-types/ts3.4/commands/DeleteAcmeEndpointCommand.d.ts +48 -0
  124. package/dist-types/ts3.4/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +49 -0
  125. package/dist-types/ts3.4/commands/DescribeAcmeAccountCommand.d.ts +53 -0
  126. package/dist-types/ts3.4/commands/DescribeAcmeDomainValidationCommand.d.ts +53 -0
  127. package/dist-types/ts3.4/commands/DescribeAcmeEndpointCommand.d.ts +53 -0
  128. package/dist-types/ts3.4/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +53 -0
  129. package/dist-types/ts3.4/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +53 -0
  130. package/dist-types/ts3.4/commands/ListAcmeAccountsCommand.d.ts +52 -0
  131. package/dist-types/ts3.4/commands/ListAcmeDomainValidationsCommand.d.ts +53 -0
  132. package/dist-types/ts3.4/commands/ListAcmeEndpointsCommand.d.ts +53 -0
  133. package/dist-types/ts3.4/commands/ListAcmeExternalAccountBindingsCommand.d.ts +53 -0
  134. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +53 -0
  135. package/dist-types/ts3.4/commands/RevokeAcmeAccountCommand.d.ts +48 -0
  136. package/dist-types/ts3.4/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +49 -0
  137. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  138. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +47 -0
  139. package/dist-types/ts3.4/commands/UpdateAcmeDomainValidationCommand.d.ts +49 -0
  140. package/dist-types/ts3.4/commands/UpdateAcmeEndpointCommand.d.ts +48 -0
  141. package/dist-types/ts3.4/commands/index.d.ts +22 -0
  142. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +14 -5
  143. package/dist-types/ts3.4/models/enums.d.ts +80 -0
  144. package/dist-types/ts3.4/models/errors.d.ts +22 -7
  145. package/dist-types/ts3.4/models/models_0.d.ts +395 -5
  146. package/dist-types/ts3.4/pagination/ListAcmeAccountsPaginator.d.ts +11 -0
  147. package/dist-types/ts3.4/pagination/ListAcmeDomainValidationsPaginator.d.ts +11 -0
  148. package/dist-types/ts3.4/pagination/ListAcmeEndpointsPaginator.d.ts +11 -0
  149. package/dist-types/ts3.4/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +11 -0
  150. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  151. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -1
  152. package/dist-types/ts3.4/runtimeConfig.d.ts +11 -1
  153. package/dist-types/ts3.4/runtimeConfig.native.d.ts +11 -1
  154. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  155. package/dist-types/ts3.4/schemas/schemas_0.d.ts +76 -0
  156. package/dist-types/ts3.4/waiters/index.d.ts +4 -0
  157. package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationDeleted.d.ts +18 -0
  158. package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationValidated.d.ts +17 -0
  159. package/dist-types/ts3.4/waiters/waitForAcmeEndpointActive.d.ts +17 -0
  160. package/dist-types/ts3.4/waiters/waitForAcmeEndpointDeleted.d.ts +18 -0
  161. package/dist-types/waiters/index.d.ts +4 -0
  162. package/dist-types/waiters/waitForAcmeDomainValidationDeleted.d.ts +16 -0
  163. package/dist-types/waiters/waitForAcmeDomainValidationValidated.d.ts +15 -0
  164. package/dist-types/waiters/waitForAcmeEndpointActive.d.ts +15 -0
  165. package/dist-types/waiters/waitForAcmeEndpointDeleted.d.ts +16 -0
  166. package/package.json +6 -8
package/README.md CHANGED
@@ -22,16 +22,16 @@ To install this package, use the CLI of your favorite package manager:
22
22
 
23
23
  The AWS SDK is modulized by clients and commands.
24
24
  To send a request, you only need to import the `ACMClient` and
25
- the commands you need, for example `ListCertificatesCommand`:
25
+ the commands you need, for example `ListAcmeEndpointsCommand`:
26
26
 
27
27
  ```js
28
28
  // ES5 example
29
- const { ACMClient, ListCertificatesCommand } = require("@aws-sdk/client-acm");
29
+ const { ACMClient, ListAcmeEndpointsCommand } = require("@aws-sdk/client-acm");
30
30
  ```
31
31
 
32
32
  ```ts
33
33
  // ES6+ example
34
- import { ACMClient, ListCertificatesCommand } from "@aws-sdk/client-acm";
34
+ import { ACMClient, ListAcmeEndpointsCommand } from "@aws-sdk/client-acm";
35
35
  ```
36
36
 
37
37
  ### Usage
@@ -48,7 +48,7 @@ To send a request:
48
48
  const client = new ACMClient({ region: "REGION" });
49
49
 
50
50
  const params = { /** input parameters */ };
51
- const command = new ListCertificatesCommand(params);
51
+ const command = new ListAcmeEndpointsCommand(params);
52
52
  ```
53
53
 
54
54
  #### Async/await
@@ -104,7 +104,7 @@ const client = new ACM({ region: "REGION" });
104
104
 
105
105
  // async/await.
106
106
  try {
107
- const data = await client.listCertificates(params);
107
+ const data = await client.listAcmeEndpoints(params);
108
108
  // process data.
109
109
  } catch (error) {
110
110
  // error handling.
@@ -112,7 +112,7 @@ try {
112
112
 
113
113
  // Promises.
114
114
  client
115
- .listCertificates(params)
115
+ .listAcmeEndpoints(params)
116
116
  .then((data) => {
117
117
  // process data.
118
118
  })
@@ -121,7 +121,7 @@ client
121
121
  });
122
122
 
123
123
  // callbacks (not recommended).
124
- client.listCertificates(params, (err, data) => {
124
+ client.listAcmeEndpoints(params, (err, data) => {
125
125
  // process err and data.
126
126
  });
127
127
  ```
@@ -188,6 +188,48 @@ AddTagsToCertificate
188
188
  </details>
189
189
  <details>
190
190
  <summary>
191
+ CreateAcmeDomainValidation
192
+ </summary>
193
+
194
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/CreateAcmeDomainValidationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/CreateAcmeDomainValidationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/CreateAcmeDomainValidationCommandOutput/)
195
+ </details>
196
+ <details>
197
+ <summary>
198
+ CreateAcmeEndpoint
199
+ </summary>
200
+
201
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/CreateAcmeEndpointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/CreateAcmeEndpointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/CreateAcmeEndpointCommandOutput/)
202
+ </details>
203
+ <details>
204
+ <summary>
205
+ CreateAcmeExternalAccountBinding
206
+ </summary>
207
+
208
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/CreateAcmeExternalAccountBindingCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/CreateAcmeExternalAccountBindingCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/CreateAcmeExternalAccountBindingCommandOutput/)
209
+ </details>
210
+ <details>
211
+ <summary>
212
+ DeleteAcmeDomainValidation
213
+ </summary>
214
+
215
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/DeleteAcmeDomainValidationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DeleteAcmeDomainValidationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DeleteAcmeDomainValidationCommandOutput/)
216
+ </details>
217
+ <details>
218
+ <summary>
219
+ DeleteAcmeEndpoint
220
+ </summary>
221
+
222
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/DeleteAcmeEndpointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DeleteAcmeEndpointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DeleteAcmeEndpointCommandOutput/)
223
+ </details>
224
+ <details>
225
+ <summary>
226
+ DeleteAcmeExternalAccountBinding
227
+ </summary>
228
+
229
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/DeleteAcmeExternalAccountBindingCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DeleteAcmeExternalAccountBindingCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DeleteAcmeExternalAccountBindingCommandOutput/)
230
+ </details>
231
+ <details>
232
+ <summary>
191
233
  DeleteCertificate
192
234
  </summary>
193
235
 
@@ -195,6 +237,34 @@ DeleteCertificate
195
237
  </details>
196
238
  <details>
197
239
  <summary>
240
+ DescribeAcmeAccount
241
+ </summary>
242
+
243
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/DescribeAcmeAccountCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DescribeAcmeAccountCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DescribeAcmeAccountCommandOutput/)
244
+ </details>
245
+ <details>
246
+ <summary>
247
+ DescribeAcmeDomainValidation
248
+ </summary>
249
+
250
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/DescribeAcmeDomainValidationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DescribeAcmeDomainValidationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DescribeAcmeDomainValidationCommandOutput/)
251
+ </details>
252
+ <details>
253
+ <summary>
254
+ DescribeAcmeEndpoint
255
+ </summary>
256
+
257
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/DescribeAcmeEndpointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DescribeAcmeEndpointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DescribeAcmeEndpointCommandOutput/)
258
+ </details>
259
+ <details>
260
+ <summary>
261
+ DescribeAcmeExternalAccountBinding
262
+ </summary>
263
+
264
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/DescribeAcmeExternalAccountBindingCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DescribeAcmeExternalAccountBindingCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/DescribeAcmeExternalAccountBindingCommandOutput/)
265
+ </details>
266
+ <details>
267
+ <summary>
198
268
  DescribeCertificate
199
269
  </summary>
200
270
 
@@ -216,6 +286,13 @@ GetAccountConfiguration
216
286
  </details>
217
287
  <details>
218
288
  <summary>
289
+ GetAcmeExternalAccountBindingCredentials
290
+ </summary>
291
+
292
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/GetAcmeExternalAccountBindingCredentialsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/GetAcmeExternalAccountBindingCredentialsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/GetAcmeExternalAccountBindingCredentialsCommandOutput/)
293
+ </details>
294
+ <details>
295
+ <summary>
219
296
  GetCertificate
220
297
  </summary>
221
298
 
@@ -230,6 +307,34 @@ ImportCertificate
230
307
  </details>
231
308
  <details>
232
309
  <summary>
310
+ ListAcmeAccounts
311
+ </summary>
312
+
313
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/ListAcmeAccountsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListAcmeAccountsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListAcmeAccountsCommandOutput/)
314
+ </details>
315
+ <details>
316
+ <summary>
317
+ ListAcmeDomainValidations
318
+ </summary>
319
+
320
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/ListAcmeDomainValidationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListAcmeDomainValidationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListAcmeDomainValidationsCommandOutput/)
321
+ </details>
322
+ <details>
323
+ <summary>
324
+ ListAcmeEndpoints
325
+ </summary>
326
+
327
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/ListAcmeEndpointsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListAcmeEndpointsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListAcmeEndpointsCommandOutput/)
328
+ </details>
329
+ <details>
330
+ <summary>
331
+ ListAcmeExternalAccountBindings
332
+ </summary>
333
+
334
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/ListAcmeExternalAccountBindingsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListAcmeExternalAccountBindingsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListAcmeExternalAccountBindingsCommandOutput/)
335
+ </details>
336
+ <details>
337
+ <summary>
233
338
  ListCertificates
234
339
  </summary>
235
340
 
@@ -244,6 +349,13 @@ ListTagsForCertificate
244
349
  </details>
245
350
  <details>
246
351
  <summary>
352
+ ListTagsForResource
353
+ </summary>
354
+
355
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/ListTagsForResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListTagsForResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/ListTagsForResourceCommandOutput/)
356
+ </details>
357
+ <details>
358
+ <summary>
247
359
  PutAccountConfiguration
248
360
  </summary>
249
361
 
@@ -279,6 +391,20 @@ ResendValidationEmail
279
391
  </details>
280
392
  <details>
281
393
  <summary>
394
+ RevokeAcmeAccount
395
+ </summary>
396
+
397
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/RevokeAcmeAccountCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/RevokeAcmeAccountCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/RevokeAcmeAccountCommandOutput/)
398
+ </details>
399
+ <details>
400
+ <summary>
401
+ RevokeAcmeExternalAccountBinding
402
+ </summary>
403
+
404
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/RevokeAcmeExternalAccountBindingCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/RevokeAcmeExternalAccountBindingCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/RevokeAcmeExternalAccountBindingCommandOutput/)
405
+ </details>
406
+ <details>
407
+ <summary>
282
408
  RevokeCertificate
283
409
  </summary>
284
410
 
@@ -293,6 +419,34 @@ SearchCertificates
293
419
  </details>
294
420
  <details>
295
421
  <summary>
422
+ TagResource
423
+ </summary>
424
+
425
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/TagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/TagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/TagResourceCommandOutput/)
426
+ </details>
427
+ <details>
428
+ <summary>
429
+ UntagResource
430
+ </summary>
431
+
432
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/UntagResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/UntagResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/UntagResourceCommandOutput/)
433
+ </details>
434
+ <details>
435
+ <summary>
436
+ UpdateAcmeDomainValidation
437
+ </summary>
438
+
439
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/UpdateAcmeDomainValidationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/UpdateAcmeDomainValidationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/UpdateAcmeDomainValidationCommandOutput/)
440
+ </details>
441
+ <details>
442
+ <summary>
443
+ UpdateAcmeEndpoint
444
+ </summary>
445
+
446
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/acm/command/UpdateAcmeEndpointCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/UpdateAcmeEndpointCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-acm/Interface/UpdateAcmeEndpointCommandOutput/)
447
+ </details>
448
+ <details>
449
+ <summary>
296
450
  UpdateCertificateOptions
297
451
  </summary>
298
452