@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,96 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { DescribeAcmeAccountRequest, DescribeAcmeAccountResponse } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link DescribeAcmeAccountCommand}.
11
+ */
12
+ export interface DescribeAcmeAccountCommandInput extends DescribeAcmeAccountRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link DescribeAcmeAccountCommand}.
18
+ */
19
+ export interface DescribeAcmeAccountCommandOutput extends DescribeAcmeAccountResponse, __MetadataBearer {
20
+ }
21
+ declare const DescribeAcmeAccountCommand_base: {
22
+ new (input: DescribeAcmeAccountCommandInput): import("@smithy/core/client").CommandImpl<DescribeAcmeAccountCommandInput, DescribeAcmeAccountCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DescribeAcmeAccountCommandInput): import("@smithy/core/client").CommandImpl<DescribeAcmeAccountCommandInput, DescribeAcmeAccountCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Returns detailed metadata about the specified ACME account, including its status, public key thumbprint, and associated external account binding.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { ACMClient, DescribeAcmeAccountCommand } from "@aws-sdk/client-acm"; // ES Modules import
32
+ * // const { ACMClient, DescribeAcmeAccountCommand } = 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 = { // DescribeAcmeAccountRequest
37
+ * AcmeEndpointArn: "STRING_VALUE", // required
38
+ * AccountUrl: "STRING_VALUE", // required
39
+ * };
40
+ * const command = new DescribeAcmeAccountCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // DescribeAcmeAccountResponse
43
+ * // AcmeAccount: { // AcmeAccount
44
+ * // AccountUrl: "STRING_VALUE",
45
+ * // PublicKeyThumbprint: "STRING_VALUE",
46
+ * // Status: "VALID" || "DEACTIVATED" || "REVOKED",
47
+ * // CreatedAt: new Date("TIMESTAMP"),
48
+ * // AcmeExternalAccountBindingArn: "STRING_VALUE",
49
+ * // Contacts: [ // ContactList
50
+ * // "STRING_VALUE",
51
+ * // ],
52
+ * // },
53
+ * // };
54
+ *
55
+ * ```
56
+ *
57
+ * @param DescribeAcmeAccountCommandInput - {@link DescribeAcmeAccountCommandInput}
58
+ * @returns {@link DescribeAcmeAccountCommandOutput}
59
+ * @see {@link DescribeAcmeAccountCommandInput} for command's `input` shape.
60
+ * @see {@link DescribeAcmeAccountCommandOutput} for command's `response` shape.
61
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
62
+ *
63
+ * @throws {@link AccessDeniedException} (client fault)
64
+ * <p>You do not have access required to perform this action.</p>
65
+ *
66
+ * @throws {@link InternalServerException} (server fault)
67
+ * <p>The request processing has failed because of an unknown error, exception, or failure.</p>
68
+ *
69
+ * @throws {@link ResourceNotFoundException} (client fault)
70
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
71
+ *
72
+ * @throws {@link ThrottlingException} (client fault)
73
+ * <p>The request was denied because it exceeded a quota.</p>
74
+ *
75
+ * @throws {@link ValidationException} (client fault)
76
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
77
+ *
78
+ * @throws {@link ACMServiceException}
79
+ * <p>Base exception class for all service exceptions from ACM service.</p>
80
+ *
81
+ *
82
+ * @public
83
+ */
84
+ export declare class DescribeAcmeAccountCommand extends DescribeAcmeAccountCommand_base {
85
+ /** @internal type navigation helper, not in runtime. */
86
+ protected static __types: {
87
+ api: {
88
+ input: DescribeAcmeAccountRequest;
89
+ output: DescribeAcmeAccountResponse;
90
+ };
91
+ sdk: {
92
+ input: DescribeAcmeAccountCommandInput;
93
+ output: DescribeAcmeAccountCommandOutput;
94
+ };
95
+ };
96
+ }
@@ -0,0 +1,113 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { DescribeAcmeDomainValidationRequest, DescribeAcmeDomainValidationResponse } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link DescribeAcmeDomainValidationCommand}.
11
+ */
12
+ export interface DescribeAcmeDomainValidationCommandInput extends DescribeAcmeDomainValidationRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link DescribeAcmeDomainValidationCommand}.
18
+ */
19
+ export interface DescribeAcmeDomainValidationCommandOutput extends DescribeAcmeDomainValidationResponse, __MetadataBearer {
20
+ }
21
+ declare const DescribeAcmeDomainValidationCommand_base: {
22
+ new (input: DescribeAcmeDomainValidationCommandInput): import("@smithy/core/client").CommandImpl<DescribeAcmeDomainValidationCommandInput, DescribeAcmeDomainValidationCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DescribeAcmeDomainValidationCommandInput): import("@smithy/core/client").CommandImpl<DescribeAcmeDomainValidationCommandInput, DescribeAcmeDomainValidationCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Returns detailed metadata about the specified domain validation, including its status, domain scope, and DNS resource records required for validation.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { ACMClient, DescribeAcmeDomainValidationCommand } from "@aws-sdk/client-acm"; // ES Modules import
32
+ * // const { ACMClient, DescribeAcmeDomainValidationCommand } = 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 = { // DescribeAcmeDomainValidationRequest
37
+ * AcmeDomainValidationArn: "STRING_VALUE", // required
38
+ * };
39
+ * const command = new DescribeAcmeDomainValidationCommand(input);
40
+ * const response = await client.send(command);
41
+ * // { // DescribeAcmeDomainValidationResponse
42
+ * // AcmeDomainValidation: { // AcmeDomainValidation
43
+ * // AcmeDomainValidationArn: "STRING_VALUE",
44
+ * // AcmeEndpointArn: "STRING_VALUE",
45
+ * // DomainName: "STRING_VALUE",
46
+ * // PrevalidationType: "DNS_PREVALIDATION",
47
+ * // PrevalidationDetails: { // PrevalidationDetails Union: only one key present
48
+ * // DnsPrevalidation: { // DnsPrevalidationDetails
49
+ * // DomainScope: { // DomainScope
50
+ * // ExactDomain: "ENABLED" || "DISABLED",
51
+ * // Subdomains: "ENABLED" || "DISABLED",
52
+ * // Wildcards: "ENABLED" || "DISABLED",
53
+ * // },
54
+ * // HostedZoneId: "STRING_VALUE",
55
+ * // ResourceRecord: { // ResourceRecord
56
+ * // Name: "STRING_VALUE", // required
57
+ * // Type: "CNAME", // required
58
+ * // Value: "STRING_VALUE", // required
59
+ * // },
60
+ * // },
61
+ * // },
62
+ * // Status: "VALIDATING" || "VALID" || "INVALID" || "DELETING",
63
+ * // FailureDetails: { // FailureDetails
64
+ * // Reason: "ACCESS_DENIED" || "DOMAIN_MISMATCH" || "DOMAIN_NOT_ALLOWED" || "ENDPOINT_NOT_ACTIVE" || "HOSTED_ZONE_NOT_FOUND" || "INTERNAL_FAILURE" || "INVALID_CHANGE_BATCH" || "INVALID_PUBLIC_DOMAIN" || "TIMED_OUT",
65
+ * // Message: "STRING_VALUE",
66
+ * // },
67
+ * // CreatedAt: new Date("TIMESTAMP"),
68
+ * // UpdatedAt: new Date("TIMESTAMP"),
69
+ * // },
70
+ * // };
71
+ *
72
+ * ```
73
+ *
74
+ * @param DescribeAcmeDomainValidationCommandInput - {@link DescribeAcmeDomainValidationCommandInput}
75
+ * @returns {@link DescribeAcmeDomainValidationCommandOutput}
76
+ * @see {@link DescribeAcmeDomainValidationCommandInput} for command's `input` shape.
77
+ * @see {@link DescribeAcmeDomainValidationCommandOutput} for command's `response` shape.
78
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
79
+ *
80
+ * @throws {@link AccessDeniedException} (client fault)
81
+ * <p>You do not have access required to perform this action.</p>
82
+ *
83
+ * @throws {@link InternalServerException} (server fault)
84
+ * <p>The request processing has failed because of an unknown error, exception, or failure.</p>
85
+ *
86
+ * @throws {@link ResourceNotFoundException} (client fault)
87
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
88
+ *
89
+ * @throws {@link ThrottlingException} (client fault)
90
+ * <p>The request was denied because it exceeded a quota.</p>
91
+ *
92
+ * @throws {@link ValidationException} (client fault)
93
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
94
+ *
95
+ * @throws {@link ACMServiceException}
96
+ * <p>Base exception class for all service exceptions from ACM service.</p>
97
+ *
98
+ *
99
+ * @public
100
+ */
101
+ export declare class DescribeAcmeDomainValidationCommand extends DescribeAcmeDomainValidationCommand_base {
102
+ /** @internal type navigation helper, not in runtime. */
103
+ protected static __types: {
104
+ api: {
105
+ input: DescribeAcmeDomainValidationRequest;
106
+ output: DescribeAcmeDomainValidationResponse;
107
+ };
108
+ sdk: {
109
+ input: DescribeAcmeDomainValidationCommandInput;
110
+ output: DescribeAcmeDomainValidationCommandOutput;
111
+ };
112
+ };
113
+ }
@@ -0,0 +1,108 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { DescribeAcmeEndpointRequest, DescribeAcmeEndpointResponse } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link DescribeAcmeEndpointCommand}.
11
+ */
12
+ export interface DescribeAcmeEndpointCommandInput extends DescribeAcmeEndpointRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link DescribeAcmeEndpointCommand}.
18
+ */
19
+ export interface DescribeAcmeEndpointCommandOutput extends DescribeAcmeEndpointResponse, __MetadataBearer {
20
+ }
21
+ declare const DescribeAcmeEndpointCommand_base: {
22
+ new (input: DescribeAcmeEndpointCommandInput): import("@smithy/core/client").CommandImpl<DescribeAcmeEndpointCommandInput, DescribeAcmeEndpointCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DescribeAcmeEndpointCommandInput): import("@smithy/core/client").CommandImpl<DescribeAcmeEndpointCommandInput, DescribeAcmeEndpointCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Returns detailed metadata about the specified ACME endpoint, including its status, URL, authorization behavior, and certificate authority configuration.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { ACMClient, DescribeAcmeEndpointCommand } from "@aws-sdk/client-acm"; // ES Modules import
32
+ * // const { ACMClient, DescribeAcmeEndpointCommand } = 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 = { // DescribeAcmeEndpointRequest
37
+ * AcmeEndpointArn: "STRING_VALUE", // required
38
+ * };
39
+ * const command = new DescribeAcmeEndpointCommand(input);
40
+ * const response = await client.send(command);
41
+ * // { // DescribeAcmeEndpointResponse
42
+ * // AcmeEndpoint: { // AcmeEndpoint
43
+ * // AcmeEndpointArn: "STRING_VALUE",
44
+ * // EndpointUrl: "STRING_VALUE",
45
+ * // Status: "CREATING" || "ACTIVE" || "DELETING" || "FAILED",
46
+ * // FailureReason: "STRING_VALUE",
47
+ * // AuthorizationBehavior: "PRE_APPROVED",
48
+ * // Contact: "REQUIRED" || "NOT_REQUIRED",
49
+ * // CertificateAuthority: { // CertificateAuthority Union: only one key present
50
+ * // PublicCertificateAuthority: { // PublicCertificateAuthority
51
+ * // AllowedKeyAlgorithms: [ // PublicKeyAlgorithmList
52
+ * // "RSA_2048" || "EC_prime256v1" || "EC_secp384r1",
53
+ * // ],
54
+ * // },
55
+ * // },
56
+ * // CertificateTags: [ // TagList
57
+ * // { // Tag
58
+ * // Key: "STRING_VALUE", // required
59
+ * // Value: "STRING_VALUE",
60
+ * // },
61
+ * // ],
62
+ * // CreatedAt: new Date("TIMESTAMP"),
63
+ * // UpdatedAt: new Date("TIMESTAMP"),
64
+ * // },
65
+ * // };
66
+ *
67
+ * ```
68
+ *
69
+ * @param DescribeAcmeEndpointCommandInput - {@link DescribeAcmeEndpointCommandInput}
70
+ * @returns {@link DescribeAcmeEndpointCommandOutput}
71
+ * @see {@link DescribeAcmeEndpointCommandInput} for command's `input` shape.
72
+ * @see {@link DescribeAcmeEndpointCommandOutput} for command's `response` shape.
73
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
74
+ *
75
+ * @throws {@link AccessDeniedException} (client fault)
76
+ * <p>You do not have access required to perform this action.</p>
77
+ *
78
+ * @throws {@link InternalServerException} (server fault)
79
+ * <p>The request processing has failed because of an unknown error, exception, or failure.</p>
80
+ *
81
+ * @throws {@link ResourceNotFoundException} (client fault)
82
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
83
+ *
84
+ * @throws {@link ThrottlingException} (client fault)
85
+ * <p>The request was denied because it exceeded a quota.</p>
86
+ *
87
+ * @throws {@link ValidationException} (client fault)
88
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
89
+ *
90
+ * @throws {@link ACMServiceException}
91
+ * <p>Base exception class for all service exceptions from ACM service.</p>
92
+ *
93
+ *
94
+ * @public
95
+ */
96
+ export declare class DescribeAcmeEndpointCommand extends DescribeAcmeEndpointCommand_base {
97
+ /** @internal type navigation helper, not in runtime. */
98
+ protected static __types: {
99
+ api: {
100
+ input: DescribeAcmeEndpointRequest;
101
+ output: DescribeAcmeEndpointResponse;
102
+ };
103
+ sdk: {
104
+ input: DescribeAcmeEndpointCommandInput;
105
+ output: DescribeAcmeEndpointCommandOutput;
106
+ };
107
+ };
108
+ }
@@ -0,0 +1,95 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { DescribeAcmeExternalAccountBindingRequest, DescribeAcmeExternalAccountBindingResponse } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link DescribeAcmeExternalAccountBindingCommand}.
11
+ */
12
+ export interface DescribeAcmeExternalAccountBindingCommandInput extends DescribeAcmeExternalAccountBindingRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link DescribeAcmeExternalAccountBindingCommand}.
18
+ */
19
+ export interface DescribeAcmeExternalAccountBindingCommandOutput extends DescribeAcmeExternalAccountBindingResponse, __MetadataBearer {
20
+ }
21
+ declare const DescribeAcmeExternalAccountBindingCommand_base: {
22
+ new (input: DescribeAcmeExternalAccountBindingCommandInput): import("@smithy/core/client").CommandImpl<DescribeAcmeExternalAccountBindingCommandInput, DescribeAcmeExternalAccountBindingCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DescribeAcmeExternalAccountBindingCommandInput): import("@smithy/core/client").CommandImpl<DescribeAcmeExternalAccountBindingCommandInput, DescribeAcmeExternalAccountBindingCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Returns detailed metadata about the specified external account binding, including the associated IAM role, expiration time, and usage history.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { ACMClient, DescribeAcmeExternalAccountBindingCommand } from "@aws-sdk/client-acm"; // ES Modules import
32
+ * // const { ACMClient, DescribeAcmeExternalAccountBindingCommand } = 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 = { // DescribeAcmeExternalAccountBindingRequest
37
+ * AcmeExternalAccountBindingArn: "STRING_VALUE", // required
38
+ * };
39
+ * const command = new DescribeAcmeExternalAccountBindingCommand(input);
40
+ * const response = await client.send(command);
41
+ * // { // DescribeAcmeExternalAccountBindingResponse
42
+ * // ExternalAccountBinding: { // AcmeExternalAccountBinding
43
+ * // AcmeExternalAccountBindingArn: "STRING_VALUE",
44
+ * // AcmeEndpointArn: "STRING_VALUE",
45
+ * // RoleArn: "STRING_VALUE",
46
+ * // ExpiresAt: new Date("TIMESTAMP"),
47
+ * // RevokedAt: new Date("TIMESTAMP"),
48
+ * // LastUsedAt: new Date("TIMESTAMP"),
49
+ * // CreatedAt: new Date("TIMESTAMP"),
50
+ * // UpdatedAt: new Date("TIMESTAMP"),
51
+ * // },
52
+ * // };
53
+ *
54
+ * ```
55
+ *
56
+ * @param DescribeAcmeExternalAccountBindingCommandInput - {@link DescribeAcmeExternalAccountBindingCommandInput}
57
+ * @returns {@link DescribeAcmeExternalAccountBindingCommandOutput}
58
+ * @see {@link DescribeAcmeExternalAccountBindingCommandInput} for command's `input` shape.
59
+ * @see {@link DescribeAcmeExternalAccountBindingCommandOutput} for command's `response` shape.
60
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
61
+ *
62
+ * @throws {@link AccessDeniedException} (client fault)
63
+ * <p>You do not have access required to perform this action.</p>
64
+ *
65
+ * @throws {@link InternalServerException} (server fault)
66
+ * <p>The request processing has failed because of an unknown error, exception, or failure.</p>
67
+ *
68
+ * @throws {@link ResourceNotFoundException} (client fault)
69
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
70
+ *
71
+ * @throws {@link ThrottlingException} (client fault)
72
+ * <p>The request was denied because it exceeded a quota.</p>
73
+ *
74
+ * @throws {@link ValidationException} (client fault)
75
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
76
+ *
77
+ * @throws {@link ACMServiceException}
78
+ * <p>Base exception class for all service exceptions from ACM service.</p>
79
+ *
80
+ *
81
+ * @public
82
+ */
83
+ export declare class DescribeAcmeExternalAccountBindingCommand extends DescribeAcmeExternalAccountBindingCommand_base {
84
+ /** @internal type navigation helper, not in runtime. */
85
+ protected static __types: {
86
+ api: {
87
+ input: DescribeAcmeExternalAccountBindingRequest;
88
+ output: DescribeAcmeExternalAccountBindingResponse;
89
+ };
90
+ sdk: {
91
+ input: DescribeAcmeExternalAccountBindingCommandInput;
92
+ output: DescribeAcmeExternalAccountBindingCommandOutput;
93
+ };
94
+ };
95
+ }
@@ -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 { DescribeCertificateRequest, DescribeCertificateResponse } 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 DescribeCertificateCommandInput extends DescribeCertificateRequ
22
19
  export interface DescribeCertificateCommandOutput extends DescribeCertificateResponse, __MetadataBearer {
23
20
  }
24
21
  declare const DescribeCertificateCommand_base: {
25
- new (input: DescribeCertificateCommandInput): import("@smithy/core/client").CommandImpl<DescribeCertificateCommandInput, DescribeCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: DescribeCertificateCommandInput): import("@smithy/core/client").CommandImpl<DescribeCertificateCommandInput, DescribeCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: DescribeCertificateCommandInput): import("@smithy/core/client").CommandImpl<DescribeCertificateCommandInput, DescribeCertificateCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: DescribeCertificateCommandInput): import("@smithy/core/client").CommandImpl<DescribeCertificateCommandInput, DescribeCertificateCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns detailed metadata about the specified ACM certificate.</p> <p>If you have just created a certificate using the <code>RequestCertificate</code> action, there is a delay of several seconds before you can retrieve information about it.</p>
@@ -131,6 +126,9 @@ declare const DescribeCertificateCommand_base: {
131
126
  * // CertificateTransparencyLoggingPreference: "ENABLED" || "DISABLED",
132
127
  * // Export: "ENABLED" || "DISABLED",
133
128
  * // },
129
+ * // CertificateKeyPairOrigin: "AWS_MANAGED" || "ACME" || "CUSTOMER_PROVIDED",
130
+ * // AcmeEndpointArn: "STRING_VALUE",
131
+ * // AcmeAccountId: "STRING_VALUE",
134
132
  * // },
135
133
  * // };
136
134
  *
@@ -148,6 +146,9 @@ declare const DescribeCertificateCommand_base: {
148
146
  * @throws {@link ResourceNotFoundException} (client fault)
149
147
  * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
150
148
  *
149
+ * @throws {@link ValidationException} (client fault)
150
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
151
+ *
151
152
  * @throws {@link ACMServiceException}
152
153
  * <p>Base exception class for all service exceptions from ACM service.</p>
153
154
  *
@@ -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 { ExportCertificateRequest, ExportCertificateResponse } 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 ExportCertificateCommandInput extends ExportCertificateRequest
22
19
  export interface ExportCertificateCommandOutput extends ExportCertificateResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ExportCertificateCommand_base: {
25
- new (input: ExportCertificateCommandInput): import("@smithy/core/client").CommandImpl<ExportCertificateCommandInput, ExportCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ExportCertificateCommandInput): import("@smithy/core/client").CommandImpl<ExportCertificateCommandInput, ExportCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ExportCertificateCommandInput): import("@smithy/core/client").CommandImpl<ExportCertificateCommandInput, ExportCertificateCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ExportCertificateCommandInput): import("@smithy/core/client").CommandImpl<ExportCertificateCommandInput, ExportCertificateCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Exports a private certificate issued by a private certificate authority (CA) or a public certificate for use anywhere. The exported file contains the certificate, the certificate chain, and the encrypted private key associated with the public key that is embedded in the certificate. For security, you must assign a passphrase for the private key when exporting it. </p> <p>For information about exporting and formatting a certificate using the ACM console or CLI, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/export-private.html">Export a private certificate</a> and <a href="https://docs.aws.amazon.com/acm/latest/userguide/export-public-certificate">Export a public certificate</a>.</p> <note> <p>ACM public certificates created prior to June 17, 2025 cannot be exported.</p> </note>
@@ -70,6 +65,9 @@ declare const ExportCertificateCommand_base: {
70
65
  * @throws {@link ThrottlingException} (client fault)
71
66
  * <p>The request was denied because it exceeded a quota.</p>
72
67
  *
68
+ * @throws {@link ValidationException} (client fault)
69
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
70
+ *
73
71
  * @throws {@link ACMServiceException}
74
72
  * <p>Base exception class for all service exceptions from ACM service.</p>
75
73
  *
@@ -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 { GetAccountConfigurationResponse } 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 GetAccountConfigurationCommandInput {
22
19
  export interface GetAccountConfigurationCommandOutput extends GetAccountConfigurationResponse, __MetadataBearer {
23
20
  }
24
21
  declare const GetAccountConfigurationCommand_base: {
25
- new (input: GetAccountConfigurationCommandInput): import("@smithy/core/client").CommandImpl<GetAccountConfigurationCommandInput, GetAccountConfigurationCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (...[input]: [] | [GetAccountConfigurationCommandInput]): import("@smithy/core/client").CommandImpl<GetAccountConfigurationCommandInput, GetAccountConfigurationCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: GetAccountConfigurationCommandInput): import("@smithy/core/client").CommandImpl<GetAccountConfigurationCommandInput, GetAccountConfigurationCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (...[input]: [] | [GetAccountConfigurationCommandInput]): import("@smithy/core/client").CommandImpl<GetAccountConfigurationCommandInput, GetAccountConfigurationCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns the account configuration options associated with an Amazon Web Services account.</p>
@@ -0,0 +1,87 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { GetAcmeExternalAccountBindingCredentialsRequest, GetAcmeExternalAccountBindingCredentialsResponse } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link GetAcmeExternalAccountBindingCredentialsCommand}.
11
+ */
12
+ export interface GetAcmeExternalAccountBindingCredentialsCommandInput extends GetAcmeExternalAccountBindingCredentialsRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link GetAcmeExternalAccountBindingCredentialsCommand}.
18
+ */
19
+ export interface GetAcmeExternalAccountBindingCredentialsCommandOutput extends GetAcmeExternalAccountBindingCredentialsResponse, __MetadataBearer {
20
+ }
21
+ declare const GetAcmeExternalAccountBindingCredentialsCommand_base: {
22
+ new (input: GetAcmeExternalAccountBindingCredentialsCommandInput): import("@smithy/core/client").CommandImpl<GetAcmeExternalAccountBindingCredentialsCommandInput, GetAcmeExternalAccountBindingCredentialsCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: GetAcmeExternalAccountBindingCredentialsCommandInput): import("@smithy/core/client").CommandImpl<GetAcmeExternalAccountBindingCredentialsCommandInput, GetAcmeExternalAccountBindingCredentialsCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Retrieves the key ID and MAC key credentials for an external account binding. These credentials are used by ACME clients during account registration to bind to the endpoint.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { ACMClient, GetAcmeExternalAccountBindingCredentialsCommand } from "@aws-sdk/client-acm"; // ES Modules import
32
+ * // const { ACMClient, GetAcmeExternalAccountBindingCredentialsCommand } = 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 = { // GetAcmeExternalAccountBindingCredentialsRequest
37
+ * AcmeExternalAccountBindingArn: "STRING_VALUE", // required
38
+ * };
39
+ * const command = new GetAcmeExternalAccountBindingCredentialsCommand(input);
40
+ * const response = await client.send(command);
41
+ * // { // GetAcmeExternalAccountBindingCredentialsResponse
42
+ * // KeyId: "STRING_VALUE",
43
+ * // MacKey: "STRING_VALUE",
44
+ * // };
45
+ *
46
+ * ```
47
+ *
48
+ * @param GetAcmeExternalAccountBindingCredentialsCommandInput - {@link GetAcmeExternalAccountBindingCredentialsCommandInput}
49
+ * @returns {@link GetAcmeExternalAccountBindingCredentialsCommandOutput}
50
+ * @see {@link GetAcmeExternalAccountBindingCredentialsCommandInput} for command's `input` shape.
51
+ * @see {@link GetAcmeExternalAccountBindingCredentialsCommandOutput} for command's `response` shape.
52
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
53
+ *
54
+ * @throws {@link AccessDeniedException} (client fault)
55
+ * <p>You do not have access required to perform this action.</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 GetAcmeExternalAccountBindingCredentialsCommand extends GetAcmeExternalAccountBindingCredentialsCommand_base {
76
+ /** @internal type navigation helper, not in runtime. */
77
+ protected static __types: {
78
+ api: {
79
+ input: GetAcmeExternalAccountBindingCredentialsRequest;
80
+ output: GetAcmeExternalAccountBindingCredentialsResponse;
81
+ };
82
+ sdk: {
83
+ input: GetAcmeExternalAccountBindingCredentialsCommandInput;
84
+ output: GetAcmeExternalAccountBindingCredentialsCommandOutput;
85
+ };
86
+ };
87
+ }