@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,78 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { UntagResourceRequest } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link UntagResourceCommand}.
11
+ */
12
+ export interface UntagResourceCommandInput extends UntagResourceRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link UntagResourceCommand}.
18
+ */
19
+ export interface UntagResourceCommandOutput extends __MetadataBearer {
20
+ }
21
+ declare const UntagResourceCommand_base: {
22
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Removes one or more tags from an ACM resource.</p> <note> <p>Use this action for all ACM resource types except the <code>certificate</code> resource type. For certificate resources, use <a>RemoveTagsFromCertificate</a> instead.</p> </note> <p>To add one or more tags, use the <a>TagResource</a> action. To view all of the tags that have been applied to a resource, use the <a>ListTagsForResource</a> action.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { ACMClient, UntagResourceCommand } from "@aws-sdk/client-acm"; // ES Modules import
32
+ * // const { ACMClient, UntagResourceCommand } = 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 = { // UntagResourceRequest
37
+ * ResourceArn: "STRING_VALUE", // required
38
+ * TagKeys: [ // TagKeyList // required
39
+ * "STRING_VALUE",
40
+ * ],
41
+ * };
42
+ * const command = new UntagResourceCommand(input);
43
+ * const response = await client.send(command);
44
+ * // {};
45
+ *
46
+ * ```
47
+ *
48
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
49
+ * @returns {@link UntagResourceCommandOutput}
50
+ * @see {@link UntagResourceCommandInput} for command's `input` shape.
51
+ * @see {@link UntagResourceCommandOutput} for command's `response` shape.
52
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
53
+ *
54
+ * @throws {@link ResourceNotFoundException} (client fault)
55
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
56
+ *
57
+ * @throws {@link ValidationException} (client fault)
58
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
59
+ *
60
+ * @throws {@link ACMServiceException}
61
+ * <p>Base exception class for all service exceptions from ACM service.</p>
62
+ *
63
+ *
64
+ * @public
65
+ */
66
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
67
+ /** @internal type navigation helper, not in runtime. */
68
+ protected static __types: {
69
+ api: {
70
+ input: UntagResourceRequest;
71
+ output: {};
72
+ };
73
+ sdk: {
74
+ input: UntagResourceCommandInput;
75
+ output: UntagResourceCommandOutput;
76
+ };
77
+ };
78
+ }
@@ -0,0 +1,97 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { UpdateAcmeDomainValidationRequest } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link UpdateAcmeDomainValidationCommand}.
11
+ */
12
+ export interface UpdateAcmeDomainValidationCommandInput extends UpdateAcmeDomainValidationRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link UpdateAcmeDomainValidationCommand}.
18
+ */
19
+ export interface UpdateAcmeDomainValidationCommandOutput extends __MetadataBearer {
20
+ }
21
+ declare const UpdateAcmeDomainValidationCommand_base: {
22
+ new (input: UpdateAcmeDomainValidationCommandInput): import("@smithy/core/client").CommandImpl<UpdateAcmeDomainValidationCommandInput, UpdateAcmeDomainValidationCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UpdateAcmeDomainValidationCommandInput): import("@smithy/core/client").CommandImpl<UpdateAcmeDomainValidationCommandInput, UpdateAcmeDomainValidationCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Updates the prevalidation configuration of an existing domain 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, UpdateAcmeDomainValidationCommand } from "@aws-sdk/client-acm"; // ES Modules import
32
+ * // const { ACMClient, UpdateAcmeDomainValidationCommand } = 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 = { // UpdateAcmeDomainValidationRequest
37
+ * AcmeDomainValidationArn: "STRING_VALUE", // required
38
+ * PrevalidationOptions: { // PrevalidationOptions Union: only one key present
39
+ * DnsPrevalidation: { // DnsPrevalidationOptions
40
+ * DomainScope: { // DomainScope
41
+ * ExactDomain: "ENABLED" || "DISABLED",
42
+ * Subdomains: "ENABLED" || "DISABLED",
43
+ * Wildcards: "ENABLED" || "DISABLED",
44
+ * },
45
+ * HostedZoneId: "STRING_VALUE",
46
+ * },
47
+ * },
48
+ * };
49
+ * const command = new UpdateAcmeDomainValidationCommand(input);
50
+ * const response = await client.send(command);
51
+ * // {};
52
+ *
53
+ * ```
54
+ *
55
+ * @param UpdateAcmeDomainValidationCommandInput - {@link UpdateAcmeDomainValidationCommandInput}
56
+ * @returns {@link UpdateAcmeDomainValidationCommandOutput}
57
+ * @see {@link UpdateAcmeDomainValidationCommandInput} for command's `input` shape.
58
+ * @see {@link UpdateAcmeDomainValidationCommandOutput} for command's `response` shape.
59
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
60
+ *
61
+ * @throws {@link AccessDeniedException} (client fault)
62
+ * <p>You do not have access required to perform this action.</p>
63
+ *
64
+ * @throws {@link ConflictException} (client fault)
65
+ * <p>You are trying to update a resource or configuration that is already being created or updated. Wait for the previous operation to finish and try again.</p>
66
+ *
67
+ * @throws {@link InternalServerException} (server fault)
68
+ * <p>The request processing has failed because of an unknown error, exception, or failure.</p>
69
+ *
70
+ * @throws {@link ResourceNotFoundException} (client fault)
71
+ * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
72
+ *
73
+ * @throws {@link ThrottlingException} (client fault)
74
+ * <p>The request was denied because it exceeded a quota.</p>
75
+ *
76
+ * @throws {@link ValidationException} (client fault)
77
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
78
+ *
79
+ * @throws {@link ACMServiceException}
80
+ * <p>Base exception class for all service exceptions from ACM service.</p>
81
+ *
82
+ *
83
+ * @public
84
+ */
85
+ export declare class UpdateAcmeDomainValidationCommand extends UpdateAcmeDomainValidationCommand_base {
86
+ /** @internal type navigation helper, not in runtime. */
87
+ protected static __types: {
88
+ api: {
89
+ input: UpdateAcmeDomainValidationRequest;
90
+ output: {};
91
+ };
92
+ sdk: {
93
+ input: UpdateAcmeDomainValidationCommandInput;
94
+ output: UpdateAcmeDomainValidationCommandOutput;
95
+ };
96
+ };
97
+ }
@@ -0,0 +1,96 @@
1
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import type { UpdateAcmeEndpointRequest } from "../models/models_0";
3
+ /**
4
+ * @public
5
+ */
6
+ export type { __MetadataBearer };
7
+ /**
8
+ * @public
9
+ *
10
+ * The input for {@link UpdateAcmeEndpointCommand}.
11
+ */
12
+ export interface UpdateAcmeEndpointCommandInput extends UpdateAcmeEndpointRequest {
13
+ }
14
+ /**
15
+ * @public
16
+ *
17
+ * The output of {@link UpdateAcmeEndpointCommand}.
18
+ */
19
+ export interface UpdateAcmeEndpointCommandOutput extends __MetadataBearer {
20
+ }
21
+ declare const UpdateAcmeEndpointCommand_base: {
22
+ new (input: UpdateAcmeEndpointCommandInput): import("@smithy/core/client").CommandImpl<UpdateAcmeEndpointCommandInput, UpdateAcmeEndpointCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UpdateAcmeEndpointCommandInput): import("@smithy/core/client").CommandImpl<UpdateAcmeEndpointCommandInput, UpdateAcmeEndpointCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
25
+ };
26
+ /**
27
+ * <p>Updates the configuration of an existing ACME endpoint. You can change the authorization behavior, contact requirement, or certificate authority settings.</p>
28
+ * @example
29
+ * Use a bare-bones client and the command you need to make an API call.
30
+ * ```javascript
31
+ * import { ACMClient, UpdateAcmeEndpointCommand } from "@aws-sdk/client-acm"; // ES Modules import
32
+ * // const { ACMClient, UpdateAcmeEndpointCommand } = 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 = { // UpdateAcmeEndpointRequest
37
+ * AcmeEndpointArn: "STRING_VALUE", // required
38
+ * AuthorizationBehavior: "PRE_APPROVED",
39
+ * Contact: "REQUIRED" || "NOT_REQUIRED",
40
+ * CertificateAuthority: { // CertificateAuthority Union: only one key present
41
+ * PublicCertificateAuthority: { // PublicCertificateAuthority
42
+ * AllowedKeyAlgorithms: [ // PublicKeyAlgorithmList
43
+ * "RSA_2048" || "EC_prime256v1" || "EC_secp384r1",
44
+ * ],
45
+ * },
46
+ * },
47
+ * };
48
+ * const command = new UpdateAcmeEndpointCommand(input);
49
+ * const response = await client.send(command);
50
+ * // {};
51
+ *
52
+ * ```
53
+ *
54
+ * @param UpdateAcmeEndpointCommandInput - {@link UpdateAcmeEndpointCommandInput}
55
+ * @returns {@link UpdateAcmeEndpointCommandOutput}
56
+ * @see {@link UpdateAcmeEndpointCommandInput} for command's `input` shape.
57
+ * @see {@link UpdateAcmeEndpointCommandOutput} for command's `response` shape.
58
+ * @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
59
+ *
60
+ * @throws {@link AccessDeniedException} (client fault)
61
+ * <p>You do not have access required to perform this action.</p>
62
+ *
63
+ * @throws {@link ConflictException} (client fault)
64
+ * <p>You are trying to update a resource or configuration that is already being created or updated. Wait for the previous operation to finish and try again.</p>
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 UpdateAcmeEndpointCommand extends UpdateAcmeEndpointCommand_base {
85
+ /** @internal type navigation helper, not in runtime. */
86
+ protected static __types: {
87
+ api: {
88
+ input: UpdateAcmeEndpointRequest;
89
+ output: {};
90
+ };
91
+ sdk: {
92
+ input: UpdateAcmeEndpointCommandInput;
93
+ output: UpdateAcmeEndpointCommandOutput;
94
+ };
95
+ };
96
+ }
@@ -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 { UpdateCertificateOptionsRequest } 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 UpdateCertificateOptionsCommandInput extends UpdateCertificateO
22
19
  export interface UpdateCertificateOptionsCommandOutput extends __MetadataBearer {
23
20
  }
24
21
  declare const UpdateCertificateOptionsCommand_base: {
25
- new (input: UpdateCertificateOptionsCommandInput): import("@smithy/core/client").CommandImpl<UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: UpdateCertificateOptionsCommandInput): import("@smithy/core/client").CommandImpl<UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: UpdateCertificateOptionsCommandInput): import("@smithy/core/client").CommandImpl<UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: UpdateCertificateOptionsCommandInput): import("@smithy/core/client").CommandImpl<UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Updates a certificate. You can use this function to specify whether to export your certificate. Certificate transparency logging opt-out is no longer available. For more information, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency">Certificate Transparency Logging</a> and <a href="https://docs.aws.amazon.com/acm/latest/userguide/acm-exportable-certificates.html">Certificate Manager Exportable Managed Certificates</a>.</p>
@@ -69,6 +64,9 @@ declare const UpdateCertificateOptionsCommand_base: {
69
64
  * @throws {@link ResourceNotFoundException} (client fault)
70
65
  * <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
71
66
  *
67
+ * @throws {@link ValidationException} (client fault)
68
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
69
+ *
72
70
  * @throws {@link ACMServiceException}
73
71
  * <p>Base exception class for all service exceptions from ACM service.</p>
74
72
  *
@@ -1,17 +1,39 @@
1
1
  export * from "./AddTagsToCertificateCommand";
2
+ export * from "./CreateAcmeDomainValidationCommand";
3
+ export * from "./CreateAcmeEndpointCommand";
4
+ export * from "./CreateAcmeExternalAccountBindingCommand";
5
+ export * from "./DeleteAcmeDomainValidationCommand";
6
+ export * from "./DeleteAcmeEndpointCommand";
7
+ export * from "./DeleteAcmeExternalAccountBindingCommand";
2
8
  export * from "./DeleteCertificateCommand";
9
+ export * from "./DescribeAcmeAccountCommand";
10
+ export * from "./DescribeAcmeDomainValidationCommand";
11
+ export * from "./DescribeAcmeEndpointCommand";
12
+ export * from "./DescribeAcmeExternalAccountBindingCommand";
3
13
  export * from "./DescribeCertificateCommand";
4
14
  export * from "./ExportCertificateCommand";
5
15
  export * from "./GetAccountConfigurationCommand";
16
+ export * from "./GetAcmeExternalAccountBindingCredentialsCommand";
6
17
  export * from "./GetCertificateCommand";
7
18
  export * from "./ImportCertificateCommand";
19
+ export * from "./ListAcmeAccountsCommand";
20
+ export * from "./ListAcmeDomainValidationsCommand";
21
+ export * from "./ListAcmeEndpointsCommand";
22
+ export * from "./ListAcmeExternalAccountBindingsCommand";
8
23
  export * from "./ListCertificatesCommand";
9
24
  export * from "./ListTagsForCertificateCommand";
25
+ export * from "./ListTagsForResourceCommand";
10
26
  export * from "./PutAccountConfigurationCommand";
11
27
  export * from "./RemoveTagsFromCertificateCommand";
12
28
  export * from "./RenewCertificateCommand";
13
29
  export * from "./RequestCertificateCommand";
14
30
  export * from "./ResendValidationEmailCommand";
31
+ export * from "./RevokeAcmeAccountCommand";
32
+ export * from "./RevokeAcmeExternalAccountBindingCommand";
15
33
  export * from "./RevokeCertificateCommand";
16
34
  export * from "./SearchCertificatesCommand";
35
+ export * from "./TagResourceCommand";
36
+ export * from "./UntagResourceCommand";
37
+ export * from "./UpdateAcmeDomainValidationCommand";
38
+ export * from "./UpdateAcmeEndpointCommand";
17
39
  export * from "./UpdateCertificateOptionsCommand";
@@ -3,10 +3,14 @@ import type { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2,
3
3
  * @public
4
4
  */
5
5
  export interface ClientInputEndpointParameters {
6
+ clientContextParams?: {
7
+ serviceType?: string | undefined | Provider<string | undefined>;
8
+ };
6
9
  region?: string | undefined | Provider<string | undefined>;
7
- useDualstackEndpoint?: boolean | undefined | Provider<boolean | undefined>;
8
- useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
9
10
  endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
11
+ useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
12
+ useDualstackEndpoint?: boolean | undefined | Provider<boolean | undefined>;
13
+ serviceType?: string | undefined | Provider<string | undefined>;
10
14
  }
11
15
  /**
12
16
  * @public
@@ -22,6 +26,10 @@ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInp
22
26
  * @internal
23
27
  */
24
28
  export declare const commonParams: {
29
+ readonly ServiceType: {
30
+ readonly type: "clientContextParams";
31
+ readonly name: "serviceType";
32
+ };
25
33
  readonly UseFIPS: {
26
34
  readonly type: "builtInParams";
27
35
  readonly name: "useFipsEndpoint";
@@ -43,8 +51,9 @@ export declare const commonParams: {
43
51
  * @internal
44
52
  */
45
53
  export interface EndpointParameters extends __EndpointParameters {
46
- Region?: string | undefined;
47
- UseDualStack?: boolean | undefined;
48
- UseFIPS?: boolean | undefined;
54
+ Region: string;
49
55
  Endpoint?: string | undefined;
56
+ UseFIPS?: boolean | undefined;
57
+ UseDualStack?: boolean | undefined;
58
+ ServiceType: string;
50
59
  }
@@ -9,6 +9,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
9
9
  export type { RuntimeExtension } from "./runtimeExtensions";
10
10
  export type { ACMExtensionConfiguration } from "./extensionConfiguration";
11
11
  export * from "./commands";
12
+ export { Command as $Command } from "@smithy/core/client";
12
13
  export * from "./schemas/schemas_0";
13
14
  export * from "./pagination";
14
15
  export * from "./waiters";
@@ -1,3 +1,16 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const CertificateKeyPairOrigin: {
6
+ readonly ACME: "ACME";
7
+ readonly AWS_MANAGED: "AWS_MANAGED";
8
+ readonly CUSTOMER_PROVIDED: "CUSTOMER_PROVIDED";
9
+ };
10
+ /**
11
+ * @public
12
+ */
13
+ export type CertificateKeyPairOrigin = (typeof CertificateKeyPairOrigin)[keyof typeof CertificateKeyPairOrigin];
1
14
  /**
2
15
  * @public
3
16
  * @enum
@@ -90,6 +103,73 @@ export declare const ValidationMethod: {
90
103
  * @public
91
104
  */
92
105
  export type ValidationMethod = (typeof ValidationMethod)[keyof typeof ValidationMethod];
106
+ /**
107
+ * @public
108
+ * @enum
109
+ */
110
+ export declare const AcmeAccountStatus: {
111
+ readonly DEACTIVATED: "DEACTIVATED";
112
+ readonly REVOKED: "REVOKED";
113
+ readonly VALID: "VALID";
114
+ };
115
+ /**
116
+ * @public
117
+ */
118
+ export type AcmeAccountStatus = (typeof AcmeAccountStatus)[keyof typeof AcmeAccountStatus];
119
+ /**
120
+ * @public
121
+ * @enum
122
+ */
123
+ export declare const AcmeAuthorizationBehavior: {
124
+ readonly PRE_APPROVED: "PRE_APPROVED";
125
+ };
126
+ /**
127
+ * @public
128
+ */
129
+ export type AcmeAuthorizationBehavior = (typeof AcmeAuthorizationBehavior)[keyof typeof AcmeAuthorizationBehavior];
130
+ /**
131
+ * @public
132
+ * @enum
133
+ */
134
+ export declare const AcmeContact: {
135
+ readonly NOT_REQUIRED: "NOT_REQUIRED";
136
+ readonly REQUIRED: "REQUIRED";
137
+ };
138
+ /**
139
+ * @public
140
+ */
141
+ export type AcmeContact = (typeof AcmeContact)[keyof typeof AcmeContact];
142
+ /**
143
+ * @public
144
+ * @enum
145
+ */
146
+ export declare const AcmeDomainValidationFailureReason: {
147
+ readonly ACCESS_DENIED: "ACCESS_DENIED";
148
+ readonly DOMAIN_MISMATCH: "DOMAIN_MISMATCH";
149
+ readonly DOMAIN_NOT_ALLOWED: "DOMAIN_NOT_ALLOWED";
150
+ readonly ENDPOINT_NOT_ACTIVE: "ENDPOINT_NOT_ACTIVE";
151
+ readonly HOSTED_ZONE_NOT_FOUND: "HOSTED_ZONE_NOT_FOUND";
152
+ readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
153
+ readonly INVALID_CHANGE_BATCH: "INVALID_CHANGE_BATCH";
154
+ readonly INVALID_PUBLIC_DOMAIN: "INVALID_PUBLIC_DOMAIN";
155
+ readonly TIMED_OUT: "TIMED_OUT";
156
+ };
157
+ /**
158
+ * @public
159
+ */
160
+ export type AcmeDomainValidationFailureReason = (typeof AcmeDomainValidationFailureReason)[keyof typeof AcmeDomainValidationFailureReason];
161
+ /**
162
+ * @public
163
+ * @enum
164
+ */
165
+ export declare const DomainScopeOption: {
166
+ readonly DISABLED: "DISABLED";
167
+ readonly ENABLED: "ENABLED";
168
+ };
169
+ /**
170
+ * @public
171
+ */
172
+ export type DomainScopeOption = (typeof DomainScopeOption)[keyof typeof DomainScopeOption];
93
173
  /**
94
174
  * @public
95
175
  * @enum
@@ -101,6 +181,58 @@ export declare const RecordType: {
101
181
  * @public
102
182
  */
103
183
  export type RecordType = (typeof RecordType)[keyof typeof RecordType];
184
+ /**
185
+ * @public
186
+ * @enum
187
+ */
188
+ export declare const PrevalidationType: {
189
+ readonly DNS_PREVALIDATION: "DNS_PREVALIDATION";
190
+ };
191
+ /**
192
+ * @public
193
+ */
194
+ export type PrevalidationType = (typeof PrevalidationType)[keyof typeof PrevalidationType];
195
+ /**
196
+ * @public
197
+ * @enum
198
+ */
199
+ export declare const AcmeDomainValidationStatus: {
200
+ readonly DELETING: "DELETING";
201
+ readonly INVALID: "INVALID";
202
+ readonly VALID: "VALID";
203
+ readonly VALIDATING: "VALIDATING";
204
+ };
205
+ /**
206
+ * @public
207
+ */
208
+ export type AcmeDomainValidationStatus = (typeof AcmeDomainValidationStatus)[keyof typeof AcmeDomainValidationStatus];
209
+ /**
210
+ * @public
211
+ * @enum
212
+ */
213
+ export declare const PublicKeyAlgorithm: {
214
+ readonly EC_PRIME256_V1: "EC_prime256v1";
215
+ readonly EC_SECP384_R1: "EC_secp384r1";
216
+ readonly RSA_2048: "RSA_2048";
217
+ };
218
+ /**
219
+ * @public
220
+ */
221
+ export type PublicKeyAlgorithm = (typeof PublicKeyAlgorithm)[keyof typeof PublicKeyAlgorithm];
222
+ /**
223
+ * @public
224
+ * @enum
225
+ */
226
+ export declare const AcmeEndpointStatus: {
227
+ readonly ACTIVE: "ACTIVE";
228
+ readonly CREATING: "CREATING";
229
+ readonly DELETING: "DELETING";
230
+ readonly FAILED: "FAILED";
231
+ };
232
+ /**
233
+ * @public
234
+ */
235
+ export type AcmeEndpointStatus = (typeof AcmeEndpointStatus)[keyof typeof AcmeEndpointStatus];
104
236
  /**
105
237
  * @public
106
238
  * @enum
@@ -246,6 +378,19 @@ export declare const ComparisonOperator: {
246
378
  * @public
247
379
  */
248
380
  export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
381
+ /**
382
+ * @public
383
+ * @enum
384
+ */
385
+ export declare const TimeType: {
386
+ readonly DAYS: "DAYS";
387
+ readonly HOURS: "HOURS";
388
+ readonly MINUTES: "MINUTES";
389
+ };
390
+ /**
391
+ * @public
392
+ */
393
+ export type TimeType = (typeof TimeType)[keyof typeof TimeType];
249
394
  /**
250
395
  * @public
251
396
  * @enum
@@ -274,7 +419,10 @@ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
274
419
  * @enum
275
420
  */
276
421
  export declare const SearchCertificatesSortBy: {
422
+ readonly ACME_ACCOUNT_ID: "ACME_ACCOUNT_ID";
423
+ readonly ACME_ENDPOINT_ARN: "ACME_ENDPOINT_ARN";
277
424
  readonly CERTIFICATE_ARN: "CERTIFICATE_ARN";
425
+ readonly CERTIFICATE_KEY_PAIR_ORIGIN: "CERTIFICATE_KEY_PAIR_ORIGIN";
278
426
  readonly COMMON_NAME: "COMMON_NAME";
279
427
  readonly CREATED_AT: "CREATED_AT";
280
428
  readonly EXPORTED: "EXPORTED";
@@ -103,6 +103,18 @@ export declare class TooManyTagsException extends __BaseException {
103
103
  */
104
104
  constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
105
105
  }
106
+ /**
107
+ * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
108
+ * @public
109
+ */
110
+ export declare class ValidationException extends __BaseException {
111
+ readonly name: "ValidationException";
112
+ readonly $fault: "client";
113
+ /**
114
+ * @internal
115
+ */
116
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
117
+ }
106
118
  /**
107
119
  * <p>You are trying to update a resource or configuration that is already being created or updated. Wait for the previous operation to finish and try again.</p>
108
120
  * @public
@@ -115,6 +127,31 @@ export declare class ConflictException extends __BaseException {
115
127
  */
116
128
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
117
129
  }
130
+ /**
131
+ * <p>The request processing has failed because of an unknown error, exception, or failure.</p>
132
+ * @public
133
+ */
134
+ export declare class InternalServerException extends __BaseException {
135
+ readonly name: "InternalServerException";
136
+ readonly $fault: "server";
137
+ $retryable: {};
138
+ /**
139
+ * @internal
140
+ */
141
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
142
+ }
143
+ /**
144
+ * <p>A service quota has been exceeded.</p>
145
+ * @public
146
+ */
147
+ export declare class ServiceQuotaExceededException extends __BaseException {
148
+ readonly name: "ServiceQuotaExceededException";
149
+ readonly $fault: "client";
150
+ /**
151
+ * @internal
152
+ */
153
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
154
+ }
118
155
  /**
119
156
  * <p>The certificate is in use by another Amazon Web Services service in the caller's account. Remove the association and try again.</p>
120
157
  * @public
@@ -163,18 +200,6 @@ export declare class InvalidArgsException extends __BaseException {
163
200
  */
164
201
  constructor(opts: __ExceptionOptionType<InvalidArgsException, __BaseException>);
165
202
  }
166
- /**
167
- * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
168
- * @public
169
- */
170
- export declare class ValidationException extends __BaseException {
171
- readonly name: "ValidationException";
172
- readonly $fault: "client";
173
- /**
174
- * @internal
175
- */
176
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
177
- }
178
203
  /**
179
204
  * <p>One or more values in the <a>DomainValidationOption</a> structure is incorrect.</p>
180
205
  * @public