@aws-sdk/client-acm 3.1075.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 (176) hide show
  1. package/README.md +161 -7
  2. package/dist-cjs/index.js +2459 -33
  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 +6 -2
  113. package/dist-types/runtimeConfig.d.ts +6 -2
  114. package/dist-types/runtimeConfig.native.d.ts +6 -2
  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 +18 -2
  152. package/dist-types/ts3.4/runtimeConfig.d.ts +18 -2
  153. package/dist-types/ts3.4/runtimeConfig.native.d.ts +18 -2
  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 +8 -10
  167. package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
  168. package/dist-cjs/endpoint/bdd.js +0 -49
  169. package/dist-cjs/endpoint/endpointResolver.js +0 -14
  170. package/dist-cjs/models/ACMServiceException.js +0 -8
  171. package/dist-cjs/models/errors.js +0 -197
  172. package/dist-cjs/runtimeConfig.browser.js +0 -32
  173. package/dist-cjs/runtimeConfig.js +0 -45
  174. package/dist-cjs/runtimeConfig.native.js +0 -12
  175. package/dist-cjs/runtimeConfig.shared.js +0 -38
  176. package/dist-cjs/schemas/schemas_0.js +0 -778
@@ -0,0 +1,101 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
+ import type { DescribeAcmeAccountRequest, DescribeAcmeAccountResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DescribeAcmeAccountCommand}.
14
+ */
15
+ export interface DescribeAcmeAccountCommandInput extends DescribeAcmeAccountRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DescribeAcmeAccountCommand}.
21
+ */
22
+ export interface DescribeAcmeAccountCommandOutput extends DescribeAcmeAccountResponse, __MetadataBearer {
23
+ }
24
+ declare const DescribeAcmeAccountCommand_base: {
25
+ new (input: DescribeAcmeAccountCommandInput): import("@smithy/core/client").CommandImpl<DescribeAcmeAccountCommandInput, DescribeAcmeAccountCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DescribeAcmeAccountCommandInput): import("@smithy/core/client").CommandImpl<DescribeAcmeAccountCommandInput, DescribeAcmeAccountCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
30
+ };
31
+ /**
32
+ * <p>Returns detailed metadata about the specified ACME account, including its status, public key thumbprint, and associated external account binding.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { ACMClient, DescribeAcmeAccountCommand } from "@aws-sdk/client-acm"; // ES Modules import
37
+ * // const { ACMClient, DescribeAcmeAccountCommand } = require("@aws-sdk/client-acm"); // CommonJS import
38
+ * // import type { ACMClientConfig } from "@aws-sdk/client-acm";
39
+ * const config = {}; // type is ACMClientConfig
40
+ * const client = new ACMClient(config);
41
+ * const input = { // DescribeAcmeAccountRequest
42
+ * AcmeEndpointArn: "STRING_VALUE", // required
43
+ * AccountUrl: "STRING_VALUE", // required
44
+ * };
45
+ * const command = new DescribeAcmeAccountCommand(input);
46
+ * const response = await client.send(command);
47
+ * // { // DescribeAcmeAccountResponse
48
+ * // AcmeAccount: { // AcmeAccount
49
+ * // AccountUrl: "STRING_VALUE",
50
+ * // PublicKeyThumbprint: "STRING_VALUE",
51
+ * // Status: "VALID" || "DEACTIVATED" || "REVOKED",
52
+ * // CreatedAt: new Date("TIMESTAMP"),
53
+ * // AcmeExternalAccountBindingArn: "STRING_VALUE",
54
+ * // Contacts: [ // ContactList
55
+ * // "STRING_VALUE",
56
+ * // ],
57
+ * // },
58
+ * // };
59
+ *
60
+ * ```
61
+ *
62
+ * @param DescribeAcmeAccountCommandInput - {@link DescribeAcmeAccountCommandInput}
63
+ * @returns {@link DescribeAcmeAccountCommandOutput}
64
+ * @see {@link DescribeAcmeAccountCommandInput} for command's `input` shape.
65
+ * @see {@link DescribeAcmeAccountCommandOutput} for command's `response` shape.
66
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
67
+ *
68
+ * @throws {@link AccessDeniedException} (client fault)
69
+ * <p>You do not have access required to perform this action.</p>
70
+ *
71
+ * @throws {@link InternalServerException} (server fault)
72
+ * <p>The request processing has failed because of an unknown error, exception, or failure.</p>
73
+ *
74
+ * @throws {@link ResourceNotFoundException} (client fault)
75
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
76
+ *
77
+ * @throws {@link ThrottlingException} (client fault)
78
+ * <p>The request was denied because it exceeded a quota.</p>
79
+ *
80
+ * @throws {@link ValidationException} (client fault)
81
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
82
+ *
83
+ * @throws {@link ACMServiceException}
84
+ * <p>Base exception class for all service exceptions from ACM service.</p>
85
+ *
86
+ *
87
+ * @public
88
+ */
89
+ export declare class DescribeAcmeAccountCommand extends DescribeAcmeAccountCommand_base {
90
+ /** @internal type navigation helper, not in runtime. */
91
+ protected static __types: {
92
+ api: {
93
+ input: DescribeAcmeAccountRequest;
94
+ output: DescribeAcmeAccountResponse;
95
+ };
96
+ sdk: {
97
+ input: DescribeAcmeAccountCommandInput;
98
+ output: DescribeAcmeAccountCommandOutput;
99
+ };
100
+ };
101
+ }
@@ -0,0 +1,118 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
+ import type { DescribeAcmeDomainValidationRequest, DescribeAcmeDomainValidationResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DescribeAcmeDomainValidationCommand}.
14
+ */
15
+ export interface DescribeAcmeDomainValidationCommandInput extends DescribeAcmeDomainValidationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DescribeAcmeDomainValidationCommand}.
21
+ */
22
+ export interface DescribeAcmeDomainValidationCommandOutput extends DescribeAcmeDomainValidationResponse, __MetadataBearer {
23
+ }
24
+ declare const DescribeAcmeDomainValidationCommand_base: {
25
+ new (input: DescribeAcmeDomainValidationCommandInput): import("@smithy/core/client").CommandImpl<DescribeAcmeDomainValidationCommandInput, DescribeAcmeDomainValidationCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DescribeAcmeDomainValidationCommandInput): import("@smithy/core/client").CommandImpl<DescribeAcmeDomainValidationCommandInput, DescribeAcmeDomainValidationCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
30
+ };
31
+ /**
32
+ * <p>Returns detailed metadata about the specified domain validation, including its status, domain scope, and DNS resource records required for validation.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { ACMClient, DescribeAcmeDomainValidationCommand } from "@aws-sdk/client-acm"; // ES Modules import
37
+ * // const { ACMClient, DescribeAcmeDomainValidationCommand } = require("@aws-sdk/client-acm"); // CommonJS import
38
+ * // import type { ACMClientConfig } from "@aws-sdk/client-acm";
39
+ * const config = {}; // type is ACMClientConfig
40
+ * const client = new ACMClient(config);
41
+ * const input = { // DescribeAcmeDomainValidationRequest
42
+ * AcmeDomainValidationArn: "STRING_VALUE", // required
43
+ * };
44
+ * const command = new DescribeAcmeDomainValidationCommand(input);
45
+ * const response = await client.send(command);
46
+ * // { // DescribeAcmeDomainValidationResponse
47
+ * // AcmeDomainValidation: { // AcmeDomainValidation
48
+ * // AcmeDomainValidationArn: "STRING_VALUE",
49
+ * // AcmeEndpointArn: "STRING_VALUE",
50
+ * // DomainName: "STRING_VALUE",
51
+ * // PrevalidationType: "DNS_PREVALIDATION",
52
+ * // PrevalidationDetails: { // PrevalidationDetails Union: only one key present
53
+ * // DnsPrevalidation: { // DnsPrevalidationDetails
54
+ * // DomainScope: { // DomainScope
55
+ * // ExactDomain: "ENABLED" || "DISABLED",
56
+ * // Subdomains: "ENABLED" || "DISABLED",
57
+ * // Wildcards: "ENABLED" || "DISABLED",
58
+ * // },
59
+ * // HostedZoneId: "STRING_VALUE",
60
+ * // ResourceRecord: { // ResourceRecord
61
+ * // Name: "STRING_VALUE", // required
62
+ * // Type: "CNAME", // required
63
+ * // Value: "STRING_VALUE", // required
64
+ * // },
65
+ * // },
66
+ * // },
67
+ * // Status: "VALIDATING" || "VALID" || "INVALID" || "DELETING",
68
+ * // FailureDetails: { // FailureDetails
69
+ * // 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",
70
+ * // Message: "STRING_VALUE",
71
+ * // },
72
+ * // CreatedAt: new Date("TIMESTAMP"),
73
+ * // UpdatedAt: new Date("TIMESTAMP"),
74
+ * // },
75
+ * // };
76
+ *
77
+ * ```
78
+ *
79
+ * @param DescribeAcmeDomainValidationCommandInput - {@link DescribeAcmeDomainValidationCommandInput}
80
+ * @returns {@link DescribeAcmeDomainValidationCommandOutput}
81
+ * @see {@link DescribeAcmeDomainValidationCommandInput} for command's `input` shape.
82
+ * @see {@link DescribeAcmeDomainValidationCommandOutput} for command's `response` shape.
83
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
84
+ *
85
+ * @throws {@link AccessDeniedException} (client fault)
86
+ * <p>You do not have access required to perform this action.</p>
87
+ *
88
+ * @throws {@link InternalServerException} (server fault)
89
+ * <p>The request processing has failed because of an unknown error, exception, or failure.</p>
90
+ *
91
+ * @throws {@link ResourceNotFoundException} (client fault)
92
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
93
+ *
94
+ * @throws {@link ThrottlingException} (client fault)
95
+ * <p>The request was denied because it exceeded a quota.</p>
96
+ *
97
+ * @throws {@link ValidationException} (client fault)
98
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
99
+ *
100
+ * @throws {@link ACMServiceException}
101
+ * <p>Base exception class for all service exceptions from ACM service.</p>
102
+ *
103
+ *
104
+ * @public
105
+ */
106
+ export declare class DescribeAcmeDomainValidationCommand extends DescribeAcmeDomainValidationCommand_base {
107
+ /** @internal type navigation helper, not in runtime. */
108
+ protected static __types: {
109
+ api: {
110
+ input: DescribeAcmeDomainValidationRequest;
111
+ output: DescribeAcmeDomainValidationResponse;
112
+ };
113
+ sdk: {
114
+ input: DescribeAcmeDomainValidationCommandInput;
115
+ output: DescribeAcmeDomainValidationCommandOutput;
116
+ };
117
+ };
118
+ }
@@ -0,0 +1,113 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
+ import type { DescribeAcmeEndpointRequest, DescribeAcmeEndpointResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DescribeAcmeEndpointCommand}.
14
+ */
15
+ export interface DescribeAcmeEndpointCommandInput extends DescribeAcmeEndpointRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DescribeAcmeEndpointCommand}.
21
+ */
22
+ export interface DescribeAcmeEndpointCommandOutput extends DescribeAcmeEndpointResponse, __MetadataBearer {
23
+ }
24
+ declare const DescribeAcmeEndpointCommand_base: {
25
+ new (input: DescribeAcmeEndpointCommandInput): import("@smithy/core/client").CommandImpl<DescribeAcmeEndpointCommandInput, DescribeAcmeEndpointCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DescribeAcmeEndpointCommandInput): import("@smithy/core/client").CommandImpl<DescribeAcmeEndpointCommandInput, DescribeAcmeEndpointCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
30
+ };
31
+ /**
32
+ * <p>Returns detailed metadata about the specified ACME endpoint, including its status, URL, authorization behavior, and certificate authority configuration.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { ACMClient, DescribeAcmeEndpointCommand } from "@aws-sdk/client-acm"; // ES Modules import
37
+ * // const { ACMClient, DescribeAcmeEndpointCommand } = require("@aws-sdk/client-acm"); // CommonJS import
38
+ * // import type { ACMClientConfig } from "@aws-sdk/client-acm";
39
+ * const config = {}; // type is ACMClientConfig
40
+ * const client = new ACMClient(config);
41
+ * const input = { // DescribeAcmeEndpointRequest
42
+ * AcmeEndpointArn: "STRING_VALUE", // required
43
+ * };
44
+ * const command = new DescribeAcmeEndpointCommand(input);
45
+ * const response = await client.send(command);
46
+ * // { // DescribeAcmeEndpointResponse
47
+ * // AcmeEndpoint: { // AcmeEndpoint
48
+ * // AcmeEndpointArn: "STRING_VALUE",
49
+ * // EndpointUrl: "STRING_VALUE",
50
+ * // Status: "CREATING" || "ACTIVE" || "DELETING" || "FAILED",
51
+ * // FailureReason: "STRING_VALUE",
52
+ * // AuthorizationBehavior: "PRE_APPROVED",
53
+ * // Contact: "REQUIRED" || "NOT_REQUIRED",
54
+ * // CertificateAuthority: { // CertificateAuthority Union: only one key present
55
+ * // PublicCertificateAuthority: { // PublicCertificateAuthority
56
+ * // AllowedKeyAlgorithms: [ // PublicKeyAlgorithmList
57
+ * // "RSA_2048" || "EC_prime256v1" || "EC_secp384r1",
58
+ * // ],
59
+ * // },
60
+ * // },
61
+ * // CertificateTags: [ // TagList
62
+ * // { // Tag
63
+ * // Key: "STRING_VALUE", // required
64
+ * // Value: "STRING_VALUE",
65
+ * // },
66
+ * // ],
67
+ * // CreatedAt: new Date("TIMESTAMP"),
68
+ * // UpdatedAt: new Date("TIMESTAMP"),
69
+ * // },
70
+ * // };
71
+ *
72
+ * ```
73
+ *
74
+ * @param DescribeAcmeEndpointCommandInput - {@link DescribeAcmeEndpointCommandInput}
75
+ * @returns {@link DescribeAcmeEndpointCommandOutput}
76
+ * @see {@link DescribeAcmeEndpointCommandInput} for command's `input` shape.
77
+ * @see {@link DescribeAcmeEndpointCommandOutput} 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 DescribeAcmeEndpointCommand extends DescribeAcmeEndpointCommand_base {
102
+ /** @internal type navigation helper, not in runtime. */
103
+ protected static __types: {
104
+ api: {
105
+ input: DescribeAcmeEndpointRequest;
106
+ output: DescribeAcmeEndpointResponse;
107
+ };
108
+ sdk: {
109
+ input: DescribeAcmeEndpointCommandInput;
110
+ output: DescribeAcmeEndpointCommandOutput;
111
+ };
112
+ };
113
+ }
@@ -0,0 +1,100 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
+ import type { DescribeAcmeExternalAccountBindingRequest, DescribeAcmeExternalAccountBindingResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link DescribeAcmeExternalAccountBindingCommand}.
14
+ */
15
+ export interface DescribeAcmeExternalAccountBindingCommandInput extends DescribeAcmeExternalAccountBindingRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link DescribeAcmeExternalAccountBindingCommand}.
21
+ */
22
+ export interface DescribeAcmeExternalAccountBindingCommandOutput extends DescribeAcmeExternalAccountBindingResponse, __MetadataBearer {
23
+ }
24
+ declare const DescribeAcmeExternalAccountBindingCommand_base: {
25
+ new (input: DescribeAcmeExternalAccountBindingCommandInput): import("@smithy/core/client").CommandImpl<DescribeAcmeExternalAccountBindingCommandInput, DescribeAcmeExternalAccountBindingCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: DescribeAcmeExternalAccountBindingCommandInput): import("@smithy/core/client").CommandImpl<DescribeAcmeExternalAccountBindingCommandInput, DescribeAcmeExternalAccountBindingCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
30
+ };
31
+ /**
32
+ * <p>Returns detailed metadata about the specified external account binding, including the associated IAM role, expiration time, and usage history.</p>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { ACMClient, DescribeAcmeExternalAccountBindingCommand } from "@aws-sdk/client-acm"; // ES Modules import
37
+ * // const { ACMClient, DescribeAcmeExternalAccountBindingCommand } = require("@aws-sdk/client-acm"); // CommonJS import
38
+ * // import type { ACMClientConfig } from "@aws-sdk/client-acm";
39
+ * const config = {}; // type is ACMClientConfig
40
+ * const client = new ACMClient(config);
41
+ * const input = { // DescribeAcmeExternalAccountBindingRequest
42
+ * AcmeExternalAccountBindingArn: "STRING_VALUE", // required
43
+ * };
44
+ * const command = new DescribeAcmeExternalAccountBindingCommand(input);
45
+ * const response = await client.send(command);
46
+ * // { // DescribeAcmeExternalAccountBindingResponse
47
+ * // ExternalAccountBinding: { // AcmeExternalAccountBinding
48
+ * // AcmeExternalAccountBindingArn: "STRING_VALUE",
49
+ * // AcmeEndpointArn: "STRING_VALUE",
50
+ * // RoleArn: "STRING_VALUE",
51
+ * // ExpiresAt: new Date("TIMESTAMP"),
52
+ * // RevokedAt: new Date("TIMESTAMP"),
53
+ * // LastUsedAt: new Date("TIMESTAMP"),
54
+ * // CreatedAt: new Date("TIMESTAMP"),
55
+ * // UpdatedAt: new Date("TIMESTAMP"),
56
+ * // },
57
+ * // };
58
+ *
59
+ * ```
60
+ *
61
+ * @param DescribeAcmeExternalAccountBindingCommandInput - {@link DescribeAcmeExternalAccountBindingCommandInput}
62
+ * @returns {@link DescribeAcmeExternalAccountBindingCommandOutput}
63
+ * @see {@link DescribeAcmeExternalAccountBindingCommandInput} for command's `input` shape.
64
+ * @see {@link DescribeAcmeExternalAccountBindingCommandOutput} for command's `response` shape.
65
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
66
+ *
67
+ * @throws {@link AccessDeniedException} (client fault)
68
+ * <p>You do not have access required to perform this action.</p>
69
+ *
70
+ * @throws {@link InternalServerException} (server fault)
71
+ * <p>The request processing has failed because of an unknown error, exception, or failure.</p>
72
+ *
73
+ * @throws {@link ResourceNotFoundException} (client fault)
74
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
75
+ *
76
+ * @throws {@link ThrottlingException} (client fault)
77
+ * <p>The request was denied because it exceeded a quota.</p>
78
+ *
79
+ * @throws {@link ValidationException} (client fault)
80
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
81
+ *
82
+ * @throws {@link ACMServiceException}
83
+ * <p>Base exception class for all service exceptions from ACM service.</p>
84
+ *
85
+ *
86
+ * @public
87
+ */
88
+ export declare class DescribeAcmeExternalAccountBindingCommand extends DescribeAcmeExternalAccountBindingCommand_base {
89
+ /** @internal type navigation helper, not in runtime. */
90
+ protected static __types: {
91
+ api: {
92
+ input: DescribeAcmeExternalAccountBindingRequest;
93
+ output: DescribeAcmeExternalAccountBindingResponse;
94
+ };
95
+ sdk: {
96
+ input: DescribeAcmeExternalAccountBindingCommandInput;
97
+ output: DescribeAcmeExternalAccountBindingCommandOutput;
98
+ };
99
+ };
100
+ }
@@ -131,6 +131,9 @@ declare const DescribeCertificateCommand_base: {
131
131
  * // CertificateTransparencyLoggingPreference: "ENABLED" || "DISABLED",
132
132
  * // Export: "ENABLED" || "DISABLED",
133
133
  * // },
134
+ * // CertificateKeyPairOrigin: "AWS_MANAGED" || "ACME" || "CUSTOMER_PROVIDED",
135
+ * // AcmeEndpointArn: "STRING_VALUE",
136
+ * // AcmeAccountId: "STRING_VALUE",
134
137
  * // },
135
138
  * // };
136
139
  *
@@ -148,6 +151,9 @@ declare const DescribeCertificateCommand_base: {
148
151
  * @throws {@link ResourceNotFoundException} (client fault)
149
152
  * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
150
153
  *
154
+ * @throws {@link ValidationException} (client fault)
155
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
156
+ *
151
157
  * @throws {@link ACMServiceException}
152
158
  * <p>Base exception class for all service exceptions from ACM service.</p>
153
159
  *
@@ -70,6 +70,9 @@ declare const ExportCertificateCommand_base: {
70
70
  * @throws {@link ThrottlingException} (client fault)
71
71
  * <p>The request was denied because it exceeded a quota.</p>
72
72
  *
73
+ * @throws {@link ValidationException} (client fault)
74
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
75
+ *
73
76
  * @throws {@link ACMServiceException}
74
77
  * <p>Base exception class for all service exceptions from ACM service.</p>
75
78
  *
@@ -0,0 +1,92 @@
1
+ import { Command as $Command } from "@smithy/core/client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
4
+ import type { GetAcmeExternalAccountBindingCredentialsRequest, GetAcmeExternalAccountBindingCredentialsResponse } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetAcmeExternalAccountBindingCredentialsCommand}.
14
+ */
15
+ export interface GetAcmeExternalAccountBindingCredentialsCommandInput extends GetAcmeExternalAccountBindingCredentialsRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetAcmeExternalAccountBindingCredentialsCommand}.
21
+ */
22
+ export interface GetAcmeExternalAccountBindingCredentialsCommandOutput extends GetAcmeExternalAccountBindingCredentialsResponse, __MetadataBearer {
23
+ }
24
+ declare const GetAcmeExternalAccountBindingCredentialsCommand_base: {
25
+ new (input: GetAcmeExternalAccountBindingCredentialsCommandInput): import("@smithy/core/client").CommandImpl<GetAcmeExternalAccountBindingCredentialsCommandInput, GetAcmeExternalAccountBindingCredentialsCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetAcmeExternalAccountBindingCredentialsCommandInput): import("@smithy/core/client").CommandImpl<GetAcmeExternalAccountBindingCredentialsCommandInput, GetAcmeExternalAccountBindingCredentialsCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): {
28
+ [x: string]: unknown;
29
+ };
30
+ };
31
+ /**
32
+ * <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>
33
+ * @example
34
+ * Use a bare-bones client and the command you need to make an API call.
35
+ * ```javascript
36
+ * import { ACMClient, GetAcmeExternalAccountBindingCredentialsCommand } from "@aws-sdk/client-acm"; // ES Modules import
37
+ * // const { ACMClient, GetAcmeExternalAccountBindingCredentialsCommand } = require("@aws-sdk/client-acm"); // CommonJS import
38
+ * // import type { ACMClientConfig } from "@aws-sdk/client-acm";
39
+ * const config = {}; // type is ACMClientConfig
40
+ * const client = new ACMClient(config);
41
+ * const input = { // GetAcmeExternalAccountBindingCredentialsRequest
42
+ * AcmeExternalAccountBindingArn: "STRING_VALUE", // required
43
+ * };
44
+ * const command = new GetAcmeExternalAccountBindingCredentialsCommand(input);
45
+ * const response = await client.send(command);
46
+ * // { // GetAcmeExternalAccountBindingCredentialsResponse
47
+ * // KeyId: "STRING_VALUE",
48
+ * // MacKey: "STRING_VALUE",
49
+ * // };
50
+ *
51
+ * ```
52
+ *
53
+ * @param GetAcmeExternalAccountBindingCredentialsCommandInput - {@link GetAcmeExternalAccountBindingCredentialsCommandInput}
54
+ * @returns {@link GetAcmeExternalAccountBindingCredentialsCommandOutput}
55
+ * @see {@link GetAcmeExternalAccountBindingCredentialsCommandInput} for command's `input` shape.
56
+ * @see {@link GetAcmeExternalAccountBindingCredentialsCommandOutput} for command's `response` shape.
57
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
58
+ *
59
+ * @throws {@link AccessDeniedException} (client fault)
60
+ * <p>You do not have access required to perform this action.</p>
61
+ *
62
+ * @throws {@link InternalServerException} (server fault)
63
+ * <p>The request processing has failed because of an unknown error, exception, or failure.</p>
64
+ *
65
+ * @throws {@link ResourceNotFoundException} (client fault)
66
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
67
+ *
68
+ * @throws {@link ThrottlingException} (client fault)
69
+ * <p>The request was denied because it exceeded a quota.</p>
70
+ *
71
+ * @throws {@link ValidationException} (client fault)
72
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
73
+ *
74
+ * @throws {@link ACMServiceException}
75
+ * <p>Base exception class for all service exceptions from ACM service.</p>
76
+ *
77
+ *
78
+ * @public
79
+ */
80
+ export declare class GetAcmeExternalAccountBindingCredentialsCommand extends GetAcmeExternalAccountBindingCredentialsCommand_base {
81
+ /** @internal type navigation helper, not in runtime. */
82
+ protected static __types: {
83
+ api: {
84
+ input: GetAcmeExternalAccountBindingCredentialsRequest;
85
+ output: GetAcmeExternalAccountBindingCredentialsResponse;
86
+ };
87
+ sdk: {
88
+ input: GetAcmeExternalAccountBindingCredentialsCommandInput;
89
+ output: GetAcmeExternalAccountBindingCredentialsCommandOutput;
90
+ };
91
+ };
92
+ }
@@ -65,6 +65,9 @@ declare const GetCertificateCommand_base: {
65
65
  * @throws {@link ResourceNotFoundException} (client fault)
66
66
  * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
67
67
  *
68
+ * @throws {@link ValidationException} (client fault)
69
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
70
+ *
68
71
  * @throws {@link ACMServiceException}
69
72
  * <p>Base exception class for all service exceptions from ACM service.</p>
70
73
  *
@@ -88,6 +88,9 @@ declare const ImportCertificateCommand_base: {
88
88
  * @throws {@link TooManyTagsException} (client fault)
89
89
  * <p>The request contains too many tags. Try the request again with fewer tags.</p>
90
90
  *
91
+ * @throws {@link ValidationException} (client fault)
92
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
93
+ *
91
94
  * @throws {@link ACMServiceException}
92
95
  * <p>Base exception class for all service exceptions from ACM service.</p>
93
96
  *