@aws-sdk/client-acm 3.1076.0 → 3.1077.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +161 -7
- package/dist-cjs/index.js +1406 -152
- package/dist-es/ACM.js +60 -0
- package/dist-es/commands/AddTagsToCertificateCommand.js +4 -1
- package/dist-es/commands/CreateAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/CreateAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/CreateAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/DeleteAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/DeleteAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/DeleteAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/DeleteCertificateCommand.js +4 -1
- package/dist-es/commands/DescribeAcmeAccountCommand.js +19 -0
- package/dist-es/commands/DescribeAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/DescribeAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/DescribeAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/DescribeCertificateCommand.js +4 -1
- package/dist-es/commands/ExportCertificateCommand.js +4 -1
- package/dist-es/commands/GetAccountConfigurationCommand.js +4 -1
- package/dist-es/commands/GetAcmeExternalAccountBindingCredentialsCommand.js +19 -0
- package/dist-es/commands/GetCertificateCommand.js +4 -1
- package/dist-es/commands/ImportCertificateCommand.js +4 -1
- package/dist-es/commands/ListAcmeAccountsCommand.js +19 -0
- package/dist-es/commands/ListAcmeDomainValidationsCommand.js +19 -0
- package/dist-es/commands/ListAcmeEndpointsCommand.js +19 -0
- package/dist-es/commands/ListAcmeExternalAccountBindingsCommand.js +19 -0
- package/dist-es/commands/ListCertificatesCommand.js +4 -1
- package/dist-es/commands/ListTagsForCertificateCommand.js +4 -1
- package/dist-es/commands/ListTagsForResourceCommand.js +19 -0
- package/dist-es/commands/PutAccountConfigurationCommand.js +4 -1
- package/dist-es/commands/RemoveTagsFromCertificateCommand.js +4 -1
- package/dist-es/commands/RenewCertificateCommand.js +4 -1
- package/dist-es/commands/RequestCertificateCommand.js +4 -1
- package/dist-es/commands/ResendValidationEmailCommand.js +4 -1
- package/dist-es/commands/RevokeAcmeAccountCommand.js +19 -0
- package/dist-es/commands/RevokeAcmeExternalAccountBindingCommand.js +19 -0
- package/dist-es/commands/RevokeCertificateCommand.js +4 -1
- package/dist-es/commands/SearchCertificatesCommand.js +4 -1
- package/dist-es/commands/TagResourceCommand.js +19 -0
- package/dist-es/commands/UntagResourceCommand.js +19 -0
- package/dist-es/commands/UpdateAcmeDomainValidationCommand.js +19 -0
- package/dist-es/commands/UpdateAcmeEndpointCommand.js +19 -0
- package/dist-es/commands/UpdateCertificateOptionsCommand.js +4 -1
- package/dist-es/commands/index.js +22 -0
- package/dist-es/endpoint/EndpointParameters.js +4 -1
- package/dist-es/endpoint/bdd.js +27 -35
- package/dist-es/endpoint/endpointResolver.js +1 -1
- package/dist-es/models/enums.js +60 -0
- package/dist-es/models/errors.js +37 -12
- package/dist-es/pagination/ListAcmeAccountsPaginator.js +4 -0
- package/dist-es/pagination/ListAcmeDomainValidationsPaginator.js +4 -0
- package/dist-es/pagination/ListAcmeEndpointsPaginator.js +4 -0
- package/dist-es/pagination/ListAcmeExternalAccountBindingsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +512 -39
- package/dist-es/waiters/index.js +4 -0
- package/dist-es/waiters/waitForAcmeDomainValidationDeleted.js +34 -0
- package/dist-es/waiters/waitForAcmeDomainValidationValidated.js +49 -0
- package/dist-es/waiters/waitForAcmeEndpointActive.js +49 -0
- package/dist-es/waiters/waitForAcmeEndpointDeleted.js +34 -0
- package/dist-types/ACM.d.ts +208 -0
- package/dist-types/ACMClient.d.ts +24 -2
- package/dist-types/commands/AddTagsToCertificateCommand.d.ts +4 -1
- package/dist-types/commands/CreateAcmeDomainValidationCommand.d.ts +115 -0
- package/dist-types/commands/CreateAcmeEndpointCommand.d.ts +115 -0
- package/dist-types/commands/CreateAcmeExternalAccountBindingCommand.d.ts +118 -0
- package/dist-types/commands/DeleteAcmeDomainValidationCommand.d.ts +89 -0
- package/dist-types/commands/DeleteAcmeEndpointCommand.d.ts +89 -0
- package/dist-types/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +86 -0
- package/dist-types/commands/DeleteCertificateCommand.d.ts +4 -1
- package/dist-types/commands/DescribeAcmeAccountCommand.d.ts +101 -0
- package/dist-types/commands/DescribeAcmeDomainValidationCommand.d.ts +118 -0
- package/dist-types/commands/DescribeAcmeEndpointCommand.d.ts +113 -0
- package/dist-types/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +100 -0
- package/dist-types/commands/DescribeCertificateCommand.d.ts +6 -0
- package/dist-types/commands/ExportCertificateCommand.d.ts +3 -0
- package/dist-types/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +92 -0
- package/dist-types/commands/GetCertificateCommand.d.ts +3 -0
- package/dist-types/commands/ImportCertificateCommand.d.ts +3 -0
- package/dist-types/commands/ListAcmeAccountsCommand.d.ts +105 -0
- package/dist-types/commands/ListAcmeDomainValidationsCommand.d.ts +123 -0
- package/dist-types/commands/ListAcmeEndpointsCommand.d.ts +114 -0
- package/dist-types/commands/ListAcmeExternalAccountBindingsCommand.d.ts +105 -0
- package/dist-types/commands/ListCertificatesCommand.d.ts +5 -1
- package/dist-types/commands/ListTagsForCertificateCommand.d.ts +4 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +87 -0
- package/dist-types/commands/RemoveTagsFromCertificateCommand.d.ts +4 -1
- package/dist-types/commands/RenewCertificateCommand.d.ts +3 -0
- package/dist-types/commands/ResendValidationEmailCommand.d.ts +3 -0
- package/dist-types/commands/RevokeAcmeAccountCommand.d.ts +93 -0
- package/dist-types/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +92 -0
- package/dist-types/commands/RevokeCertificateCommand.d.ts +3 -0
- package/dist-types/commands/SearchCertificatesCommand.d.ts +10 -1
- package/dist-types/commands/TagResourceCommand.d.ts +89 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +83 -0
- package/dist-types/commands/UpdateAcmeDomainValidationCommand.d.ts +102 -0
- package/dist-types/commands/UpdateAcmeEndpointCommand.d.ts +101 -0
- package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +3 -0
- package/dist-types/commands/index.d.ts +22 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +14 -5
- package/dist-types/models/enums.d.ts +148 -0
- package/dist-types/models/errors.d.ts +37 -12
- package/dist-types/models/models_0.d.ts +1284 -67
- package/dist-types/pagination/ListAcmeAccountsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAcmeDomainValidationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAcmeEndpointsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/runtimeConfig.browser.d.ts +5 -1
- package/dist-types/runtimeConfig.d.ts +5 -1
- package/dist-types/runtimeConfig.native.d.ts +5 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +76 -0
- package/dist-types/ts3.4/ACM.d.ts +452 -0
- package/dist-types/ts3.4/ACMClient.d.ts +132 -0
- package/dist-types/ts3.4/commands/CreateAcmeDomainValidationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateAcmeEndpointCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateAcmeExternalAccountBindingCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteAcmeDomainValidationCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DeleteAcmeEndpointCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/DescribeAcmeAccountCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DescribeAcmeDomainValidationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DescribeAcmeEndpointCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListAcmeAccountsCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListAcmeDomainValidationsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListAcmeEndpointsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListAcmeExternalAccountBindingsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/RevokeAcmeAccountCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateAcmeDomainValidationCommand.d.ts +49 -0
- package/dist-types/ts3.4/commands/UpdateAcmeEndpointCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/index.d.ts +22 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +14 -5
- package/dist-types/ts3.4/models/enums.d.ts +80 -0
- package/dist-types/ts3.4/models/errors.d.ts +22 -7
- package/dist-types/ts3.4/models/models_0.d.ts +395 -5
- package/dist-types/ts3.4/pagination/ListAcmeAccountsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAcmeDomainValidationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAcmeEndpointsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAcmeExternalAccountBindingsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +11 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +11 -1
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +76 -0
- package/dist-types/ts3.4/waiters/index.d.ts +4 -0
- package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationDeleted.d.ts +18 -0
- package/dist-types/ts3.4/waiters/waitForAcmeDomainValidationValidated.d.ts +17 -0
- package/dist-types/ts3.4/waiters/waitForAcmeEndpointActive.d.ts +17 -0
- package/dist-types/ts3.4/waiters/waitForAcmeEndpointDeleted.d.ts +18 -0
- package/dist-types/waiters/index.d.ts +4 -0
- package/dist-types/waiters/waitForAcmeDomainValidationDeleted.d.ts +16 -0
- package/dist-types/waiters/waitForAcmeDomainValidationValidated.d.ts +15 -0
- package/dist-types/waiters/waitForAcmeEndpointActive.d.ts +15 -0
- package/dist-types/waiters/waitForAcmeEndpointDeleted.d.ts +16 -0
- package/package.json +6 -8
|
@@ -0,0 +1,115 @@
|
|
|
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 { CreateAcmeDomainValidationRequest, CreateAcmeDomainValidationResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateAcmeDomainValidationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateAcmeDomainValidationCommandInput extends CreateAcmeDomainValidationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateAcmeDomainValidationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateAcmeDomainValidationCommandOutput extends CreateAcmeDomainValidationResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateAcmeDomainValidationCommand_base: {
|
|
25
|
+
new (input: CreateAcmeDomainValidationCommandInput): import("@smithy/core/client").CommandImpl<CreateAcmeDomainValidationCommandInput, CreateAcmeDomainValidationCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreateAcmeDomainValidationCommandInput): import("@smithy/core/client").CommandImpl<CreateAcmeDomainValidationCommandInput, CreateAcmeDomainValidationCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Creates a domain validation for an ACME endpoint. Domain validations authorize the endpoint to issue certificates for specified domain names. You configure prevalidation to prove domain ownership.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { ACMClient, CreateAcmeDomainValidationCommand } from "@aws-sdk/client-acm"; // ES Modules import
|
|
37
|
+
* // const { ACMClient, CreateAcmeDomainValidationCommand } = 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 = { // CreateAcmeDomainValidationRequest
|
|
42
|
+
* IdempotencyToken: "STRING_VALUE",
|
|
43
|
+
* AcmeEndpointArn: "STRING_VALUE", // required
|
|
44
|
+
* DomainName: "STRING_VALUE", // required
|
|
45
|
+
* PrevalidationOptions: { // PrevalidationOptions Union: only one key present
|
|
46
|
+
* DnsPrevalidation: { // DnsPrevalidationOptions
|
|
47
|
+
* DomainScope: { // DomainScope
|
|
48
|
+
* ExactDomain: "ENABLED" || "DISABLED",
|
|
49
|
+
* Subdomains: "ENABLED" || "DISABLED",
|
|
50
|
+
* Wildcards: "ENABLED" || "DISABLED",
|
|
51
|
+
* },
|
|
52
|
+
* HostedZoneId: "STRING_VALUE",
|
|
53
|
+
* },
|
|
54
|
+
* },
|
|
55
|
+
* Tags: [ // TagList
|
|
56
|
+
* { // Tag
|
|
57
|
+
* Key: "STRING_VALUE", // required
|
|
58
|
+
* Value: "STRING_VALUE",
|
|
59
|
+
* },
|
|
60
|
+
* ],
|
|
61
|
+
* };
|
|
62
|
+
* const command = new CreateAcmeDomainValidationCommand(input);
|
|
63
|
+
* const response = await client.send(command);
|
|
64
|
+
* // { // CreateAcmeDomainValidationResponse
|
|
65
|
+
* // AcmeDomainValidationArn: "STRING_VALUE", // required
|
|
66
|
+
* // };
|
|
67
|
+
*
|
|
68
|
+
* ```
|
|
69
|
+
*
|
|
70
|
+
* @param CreateAcmeDomainValidationCommandInput - {@link CreateAcmeDomainValidationCommandInput}
|
|
71
|
+
* @returns {@link CreateAcmeDomainValidationCommandOutput}
|
|
72
|
+
* @see {@link CreateAcmeDomainValidationCommandInput} for command's `input` shape.
|
|
73
|
+
* @see {@link CreateAcmeDomainValidationCommandOutput} for command's `response` shape.
|
|
74
|
+
* @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
77
|
+
* <p>You do not have access required to perform this action.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link ConflictException} (client fault)
|
|
80
|
+
* <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>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link InternalServerException} (server fault)
|
|
83
|
+
* <p>The request processing has failed because of an unknown error, exception, or failure.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
86
|
+
* <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
89
|
+
* <p>A service quota has been exceeded.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
92
|
+
* <p>The request was denied because it exceeded a quota.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link ValidationException} (client fault)
|
|
95
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link ACMServiceException}
|
|
98
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
99
|
+
*
|
|
100
|
+
*
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
103
|
+
export declare class CreateAcmeDomainValidationCommand extends CreateAcmeDomainValidationCommand_base {
|
|
104
|
+
/** @internal type navigation helper, not in runtime. */
|
|
105
|
+
protected static __types: {
|
|
106
|
+
api: {
|
|
107
|
+
input: CreateAcmeDomainValidationRequest;
|
|
108
|
+
output: CreateAcmeDomainValidationResponse;
|
|
109
|
+
};
|
|
110
|
+
sdk: {
|
|
111
|
+
input: CreateAcmeDomainValidationCommandInput;
|
|
112
|
+
output: CreateAcmeDomainValidationCommandOutput;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
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 { CreateAcmeEndpointRequest, CreateAcmeEndpointResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateAcmeEndpointCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateAcmeEndpointCommandInput extends CreateAcmeEndpointRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateAcmeEndpointCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateAcmeEndpointCommandOutput extends CreateAcmeEndpointResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateAcmeEndpointCommand_base: {
|
|
25
|
+
new (input: CreateAcmeEndpointCommandInput): import("@smithy/core/client").CommandImpl<CreateAcmeEndpointCommandInput, CreateAcmeEndpointCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreateAcmeEndpointCommandInput): import("@smithy/core/client").CommandImpl<CreateAcmeEndpointCommandInput, CreateAcmeEndpointCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Creates an ACME endpoint, which is a managed ACME server with a unique endpoint URL. After creation, ACME clients can use the endpoint URL to automate certificate issuance using the ACME protocol.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { ACMClient, CreateAcmeEndpointCommand } from "@aws-sdk/client-acm"; // ES Modules import
|
|
37
|
+
* // const { ACMClient, CreateAcmeEndpointCommand } = 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 = { // CreateAcmeEndpointRequest
|
|
42
|
+
* IdempotencyToken: "STRING_VALUE",
|
|
43
|
+
* AuthorizationBehavior: "PRE_APPROVED", // required
|
|
44
|
+
* Contact: "REQUIRED" || "NOT_REQUIRED",
|
|
45
|
+
* CertificateAuthority: { // CertificateAuthority Union: only one key present
|
|
46
|
+
* PublicCertificateAuthority: { // PublicCertificateAuthority
|
|
47
|
+
* AllowedKeyAlgorithms: [ // PublicKeyAlgorithmList
|
|
48
|
+
* "RSA_2048" || "EC_prime256v1" || "EC_secp384r1",
|
|
49
|
+
* ],
|
|
50
|
+
* },
|
|
51
|
+
* },
|
|
52
|
+
* Tags: [ // TagList
|
|
53
|
+
* { // Tag
|
|
54
|
+
* Key: "STRING_VALUE", // required
|
|
55
|
+
* Value: "STRING_VALUE",
|
|
56
|
+
* },
|
|
57
|
+
* ],
|
|
58
|
+
* CertificateTags: [
|
|
59
|
+
* {
|
|
60
|
+
* Key: "STRING_VALUE", // required
|
|
61
|
+
* Value: "STRING_VALUE",
|
|
62
|
+
* },
|
|
63
|
+
* ],
|
|
64
|
+
* };
|
|
65
|
+
* const command = new CreateAcmeEndpointCommand(input);
|
|
66
|
+
* const response = await client.send(command);
|
|
67
|
+
* // { // CreateAcmeEndpointResponse
|
|
68
|
+
* // AcmeEndpointArn: "STRING_VALUE",
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
71
|
+
* ```
|
|
72
|
+
*
|
|
73
|
+
* @param CreateAcmeEndpointCommandInput - {@link CreateAcmeEndpointCommandInput}
|
|
74
|
+
* @returns {@link CreateAcmeEndpointCommandOutput}
|
|
75
|
+
* @see {@link CreateAcmeEndpointCommandInput} for command's `input` shape.
|
|
76
|
+
* @see {@link CreateAcmeEndpointCommandOutput} for command's `response` shape.
|
|
77
|
+
* @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
80
|
+
* <p>You do not have access required to perform this action.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link ConflictException} (client fault)
|
|
83
|
+
* <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>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link InternalServerException} (server fault)
|
|
86
|
+
* <p>The request processing has failed because of an unknown error, exception, or failure.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
89
|
+
* <p>A service quota has been exceeded.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
92
|
+
* <p>The request was denied because it exceeded a quota.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link ValidationException} (client fault)
|
|
95
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link ACMServiceException}
|
|
98
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
99
|
+
*
|
|
100
|
+
*
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
103
|
+
export declare class CreateAcmeEndpointCommand extends CreateAcmeEndpointCommand_base {
|
|
104
|
+
/** @internal type navigation helper, not in runtime. */
|
|
105
|
+
protected static __types: {
|
|
106
|
+
api: {
|
|
107
|
+
input: CreateAcmeEndpointRequest;
|
|
108
|
+
output: CreateAcmeEndpointResponse;
|
|
109
|
+
};
|
|
110
|
+
sdk: {
|
|
111
|
+
input: CreateAcmeEndpointCommandInput;
|
|
112
|
+
output: CreateAcmeEndpointCommandOutput;
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
}
|
|
@@ -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 { CreateAcmeExternalAccountBindingRequest, CreateAcmeExternalAccountBindingResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateAcmeExternalAccountBindingCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateAcmeExternalAccountBindingCommandInput extends CreateAcmeExternalAccountBindingRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateAcmeExternalAccountBindingCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateAcmeExternalAccountBindingCommandOutput extends CreateAcmeExternalAccountBindingResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateAcmeExternalAccountBindingCommand_base: {
|
|
25
|
+
new (input: CreateAcmeExternalAccountBindingCommandInput): import("@smithy/core/client").CommandImpl<CreateAcmeExternalAccountBindingCommandInput, CreateAcmeExternalAccountBindingCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreateAcmeExternalAccountBindingCommandInput): import("@smithy/core/client").CommandImpl<CreateAcmeExternalAccountBindingCommandInput, CreateAcmeExternalAccountBindingCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Creates an external account binding (EAB) for an ACME endpoint. An EAB provides credentials that authorize an ACME client to register an account with the endpoint. Each EAB is associated with an IAM role that controls what certificate operations the ACME client can perform.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { ACMClient, CreateAcmeExternalAccountBindingCommand } from "@aws-sdk/client-acm"; // ES Modules import
|
|
37
|
+
* // const { ACMClient, CreateAcmeExternalAccountBindingCommand } = 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 = { // CreateAcmeExternalAccountBindingRequest
|
|
42
|
+
* IdempotencyToken: "STRING_VALUE",
|
|
43
|
+
* AcmeEndpointArn: "STRING_VALUE", // required
|
|
44
|
+
* RoleArn: "STRING_VALUE", // required
|
|
45
|
+
* Expiration: { // Expiration
|
|
46
|
+
* Value: Number("long"), // required
|
|
47
|
+
* Type: "MINUTES" || "HOURS" || "DAYS", // required
|
|
48
|
+
* },
|
|
49
|
+
* Tags: [ // TagList
|
|
50
|
+
* { // Tag
|
|
51
|
+
* Key: "STRING_VALUE", // required
|
|
52
|
+
* Value: "STRING_VALUE",
|
|
53
|
+
* },
|
|
54
|
+
* ],
|
|
55
|
+
* };
|
|
56
|
+
* const command = new CreateAcmeExternalAccountBindingCommand(input);
|
|
57
|
+
* const response = await client.send(command);
|
|
58
|
+
* // { // CreateAcmeExternalAccountBindingResponse
|
|
59
|
+
* // ExternalAccountBinding: { // AcmeExternalAccountBinding
|
|
60
|
+
* // AcmeExternalAccountBindingArn: "STRING_VALUE",
|
|
61
|
+
* // AcmeEndpointArn: "STRING_VALUE",
|
|
62
|
+
* // RoleArn: "STRING_VALUE",
|
|
63
|
+
* // ExpiresAt: new Date("TIMESTAMP"),
|
|
64
|
+
* // RevokedAt: new Date("TIMESTAMP"),
|
|
65
|
+
* // LastUsedAt: new Date("TIMESTAMP"),
|
|
66
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
67
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
68
|
+
* // },
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
71
|
+
* ```
|
|
72
|
+
*
|
|
73
|
+
* @param CreateAcmeExternalAccountBindingCommandInput - {@link CreateAcmeExternalAccountBindingCommandInput}
|
|
74
|
+
* @returns {@link CreateAcmeExternalAccountBindingCommandOutput}
|
|
75
|
+
* @see {@link CreateAcmeExternalAccountBindingCommandInput} for command's `input` shape.
|
|
76
|
+
* @see {@link CreateAcmeExternalAccountBindingCommandOutput} for command's `response` shape.
|
|
77
|
+
* @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
80
|
+
* <p>You do not have access required to perform this action.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link ConflictException} (client fault)
|
|
83
|
+
* <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>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link InternalServerException} (server fault)
|
|
86
|
+
* <p>The request processing has failed because of an unknown error, exception, or failure.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
89
|
+
* <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link ServiceQuotaExceededException} (client fault)
|
|
92
|
+
* <p>A service quota has been exceeded.</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 CreateAcmeExternalAccountBindingCommand extends CreateAcmeExternalAccountBindingCommand_base {
|
|
107
|
+
/** @internal type navigation helper, not in runtime. */
|
|
108
|
+
protected static __types: {
|
|
109
|
+
api: {
|
|
110
|
+
input: CreateAcmeExternalAccountBindingRequest;
|
|
111
|
+
output: CreateAcmeExternalAccountBindingResponse;
|
|
112
|
+
};
|
|
113
|
+
sdk: {
|
|
114
|
+
input: CreateAcmeExternalAccountBindingCommandInput;
|
|
115
|
+
output: CreateAcmeExternalAccountBindingCommandOutput;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
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 { DeleteAcmeDomainValidationRequest } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteAcmeDomainValidationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteAcmeDomainValidationCommandInput extends DeleteAcmeDomainValidationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteAcmeDomainValidationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteAcmeDomainValidationCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteAcmeDomainValidationCommand_base: {
|
|
25
|
+
new (input: DeleteAcmeDomainValidationCommandInput): import("@smithy/core/client").CommandImpl<DeleteAcmeDomainValidationCommandInput, DeleteAcmeDomainValidationCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: DeleteAcmeDomainValidationCommandInput): import("@smithy/core/client").CommandImpl<DeleteAcmeDomainValidationCommandInput, DeleteAcmeDomainValidationCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Deletes a domain validation. After deletion, the ACME endpoint can no longer issue certificates for the associated domain.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { ACMClient, DeleteAcmeDomainValidationCommand } from "@aws-sdk/client-acm"; // ES Modules import
|
|
37
|
+
* // const { ACMClient, DeleteAcmeDomainValidationCommand } = 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 = { // DeleteAcmeDomainValidationRequest
|
|
42
|
+
* AcmeDomainValidationArn: "STRING_VALUE", // required
|
|
43
|
+
* };
|
|
44
|
+
* const command = new DeleteAcmeDomainValidationCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // {};
|
|
47
|
+
*
|
|
48
|
+
* ```
|
|
49
|
+
*
|
|
50
|
+
* @param DeleteAcmeDomainValidationCommandInput - {@link DeleteAcmeDomainValidationCommandInput}
|
|
51
|
+
* @returns {@link DeleteAcmeDomainValidationCommandOutput}
|
|
52
|
+
* @see {@link DeleteAcmeDomainValidationCommandInput} for command's `input` shape.
|
|
53
|
+
* @see {@link DeleteAcmeDomainValidationCommandOutput} for command's `response` shape.
|
|
54
|
+
* @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
57
|
+
* <p>You do not have access required to perform this action.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ConflictException} (client fault)
|
|
60
|
+
* <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>
|
|
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 ThrottlingException} (client fault)
|
|
66
|
+
* <p>The request was denied because it exceeded a quota.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ValidationException} (client fault)
|
|
69
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ACMServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
73
|
+
*
|
|
74
|
+
*
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
export declare class DeleteAcmeDomainValidationCommand extends DeleteAcmeDomainValidationCommand_base {
|
|
78
|
+
/** @internal type navigation helper, not in runtime. */
|
|
79
|
+
protected static __types: {
|
|
80
|
+
api: {
|
|
81
|
+
input: DeleteAcmeDomainValidationRequest;
|
|
82
|
+
output: {};
|
|
83
|
+
};
|
|
84
|
+
sdk: {
|
|
85
|
+
input: DeleteAcmeDomainValidationCommandInput;
|
|
86
|
+
output: DeleteAcmeDomainValidationCommandOutput;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
}
|
|
@@ -0,0 +1,89 @@
|
|
|
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 { DeleteAcmeEndpointRequest } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteAcmeEndpointCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteAcmeEndpointCommandInput extends DeleteAcmeEndpointRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteAcmeEndpointCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteAcmeEndpointCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteAcmeEndpointCommand_base: {
|
|
25
|
+
new (input: DeleteAcmeEndpointCommandInput): import("@smithy/core/client").CommandImpl<DeleteAcmeEndpointCommandInput, DeleteAcmeEndpointCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: DeleteAcmeEndpointCommandInput): import("@smithy/core/client").CommandImpl<DeleteAcmeEndpointCommandInput, DeleteAcmeEndpointCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Deletes an ACME endpoint. After deletion, the endpoint URL is no longer accessible and ACME clients cannot issue certificates through it. Any existing external account bindings and domain validations associated with the endpoint are also deleted.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { ACMClient, DeleteAcmeEndpointCommand } from "@aws-sdk/client-acm"; // ES Modules import
|
|
37
|
+
* // const { ACMClient, DeleteAcmeEndpointCommand } = 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 = { // DeleteAcmeEndpointRequest
|
|
42
|
+
* AcmeEndpointArn: "STRING_VALUE", // required
|
|
43
|
+
* };
|
|
44
|
+
* const command = new DeleteAcmeEndpointCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // {};
|
|
47
|
+
*
|
|
48
|
+
* ```
|
|
49
|
+
*
|
|
50
|
+
* @param DeleteAcmeEndpointCommandInput - {@link DeleteAcmeEndpointCommandInput}
|
|
51
|
+
* @returns {@link DeleteAcmeEndpointCommandOutput}
|
|
52
|
+
* @see {@link DeleteAcmeEndpointCommandInput} for command's `input` shape.
|
|
53
|
+
* @see {@link DeleteAcmeEndpointCommandOutput} for command's `response` shape.
|
|
54
|
+
* @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
57
|
+
* <p>You do not have access required to perform this action.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ConflictException} (client fault)
|
|
60
|
+
* <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>
|
|
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 ThrottlingException} (client fault)
|
|
66
|
+
* <p>The request was denied because it exceeded a quota.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ValidationException} (client fault)
|
|
69
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ACMServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
73
|
+
*
|
|
74
|
+
*
|
|
75
|
+
* @public
|
|
76
|
+
*/
|
|
77
|
+
export declare class DeleteAcmeEndpointCommand extends DeleteAcmeEndpointCommand_base {
|
|
78
|
+
/** @internal type navigation helper, not in runtime. */
|
|
79
|
+
protected static __types: {
|
|
80
|
+
api: {
|
|
81
|
+
input: DeleteAcmeEndpointRequest;
|
|
82
|
+
output: {};
|
|
83
|
+
};
|
|
84
|
+
sdk: {
|
|
85
|
+
input: DeleteAcmeEndpointCommandInput;
|
|
86
|
+
output: DeleteAcmeEndpointCommandOutput;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
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 { DeleteAcmeExternalAccountBindingRequest } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteAcmeExternalAccountBindingCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteAcmeExternalAccountBindingCommandInput extends DeleteAcmeExternalAccountBindingRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteAcmeExternalAccountBindingCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteAcmeExternalAccountBindingCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteAcmeExternalAccountBindingCommand_base: {
|
|
25
|
+
new (input: DeleteAcmeExternalAccountBindingCommandInput): import("@smithy/core/client").CommandImpl<DeleteAcmeExternalAccountBindingCommandInput, DeleteAcmeExternalAccountBindingCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: DeleteAcmeExternalAccountBindingCommandInput): import("@smithy/core/client").CommandImpl<DeleteAcmeExternalAccountBindingCommandInput, DeleteAcmeExternalAccountBindingCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Deletes an external account binding. Previously fetched credentials for this binding will no longer be usable for account registration. A deleted binding cannot be recovered.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { ACMClient, DeleteAcmeExternalAccountBindingCommand } from "@aws-sdk/client-acm"; // ES Modules import
|
|
37
|
+
* // const { ACMClient, DeleteAcmeExternalAccountBindingCommand } = 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 = { // DeleteAcmeExternalAccountBindingRequest
|
|
42
|
+
* AcmeExternalAccountBindingArn: "STRING_VALUE", // required
|
|
43
|
+
* };
|
|
44
|
+
* const command = new DeleteAcmeExternalAccountBindingCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // {};
|
|
47
|
+
*
|
|
48
|
+
* ```
|
|
49
|
+
*
|
|
50
|
+
* @param DeleteAcmeExternalAccountBindingCommandInput - {@link DeleteAcmeExternalAccountBindingCommandInput}
|
|
51
|
+
* @returns {@link DeleteAcmeExternalAccountBindingCommandOutput}
|
|
52
|
+
* @see {@link DeleteAcmeExternalAccountBindingCommandInput} for command's `input` shape.
|
|
53
|
+
* @see {@link DeleteAcmeExternalAccountBindingCommandOutput} for command's `response` shape.
|
|
54
|
+
* @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
57
|
+
* <p>You do not have access required to perform this action.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link InternalServerException} (server fault)
|
|
60
|
+
* <p>The request processing has failed because of an unknown error, exception, or failure.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
63
|
+
* <p>The request was denied because it exceeded a quota.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ValidationException} (client fault)
|
|
66
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ACMServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
70
|
+
*
|
|
71
|
+
*
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
export declare class DeleteAcmeExternalAccountBindingCommand extends DeleteAcmeExternalAccountBindingCommand_base {
|
|
75
|
+
/** @internal type navigation helper, not in runtime. */
|
|
76
|
+
protected static __types: {
|
|
77
|
+
api: {
|
|
78
|
+
input: DeleteAcmeExternalAccountBindingRequest;
|
|
79
|
+
output: {};
|
|
80
|
+
};
|
|
81
|
+
sdk: {
|
|
82
|
+
input: DeleteAcmeExternalAccountBindingCommandInput;
|
|
83
|
+
output: DeleteAcmeExternalAccountBindingCommandOutput;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
}
|
|
@@ -29,7 +29,7 @@ declare const DeleteCertificateCommand_base: {
|
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
|
-
* <p>Deletes a certificate and its associated private key. If this action succeeds, the certificate is not available for use by Amazon Web Services services integrated with ACM. Deleting a certificate is eventually consistent. The may be a short delay before the certificate no longer appears in the list that can be displayed by calling the <a>ListCertificates</a> action or be retrieved by calling the <a>GetCertificate</a> action.</p> <note> <p>You cannot delete an ACM certificate that is being used by another Amazon Web Services service. To delete a certificate that is in use, you must first remove the certificate association using the console or the CLI for the associated service.</p> <p>Deleting a certificate issued by a private certificate authority (CA) has no effect on the CA. You will continue to be charged for the CA until it is deleted. For more information, see <a href="https://docs.aws.amazon.com/privateca/latest/userguide/PCADeleteCA.html"> Deleting Your Private CA</a> in the <i>Private Certificate Authority User Guide</i>.</p> </note> <p>Deleting a certificate issued by a private certificate authority (CA) has no effect on the CA. You will continue to be charged for the CA until it is deleted. For more information, see <a href="https://docs.aws.amazon.com/privateca/latest/userguide/PCADeleteCA.html">Deleting your private CA</a> in the <i>Amazon Web Services Private Certificate Authority User Guide</i>.</p>
|
|
32
|
+
* <p>Deletes a certificate and its associated private key. If this action succeeds, the certificate is not available for use by Amazon Web Services services integrated with ACM. Deleting a certificate is eventually consistent. The may be a short delay before the certificate no longer appears in the list that can be displayed by calling the <a>ListCertificates</a> action or be retrieved by calling the <a>GetCertificate</a> action.</p> <note> <p>You cannot delete an ACM certificate that is being used by another Amazon Web Services service. To delete a certificate that is in use, you must first remove the certificate association using the console or the CLI for the associated service.</p> <p>Deleting a certificate issued by a private certificate authority (CA) has no effect on the CA. You will continue to be charged for the CA until it is deleted. For more information, see <a href="https://docs.aws.amazon.com/privateca/latest/userguide/PCADeleteCA.html"> Deleting Your Private CA</a> in the <i>Private Certificate Authority User Guide</i>.</p> <p>You cannot delete a certificate with a <code>CertificateKeyPairOrigin</code> of <code>ACME</code>. ACM automatically deletes these certificates 1 year after they expire.</p> </note> <p>Deleting a certificate issued by a private certificate authority (CA) has no effect on the CA. You will continue to be charged for the CA until it is deleted. For more information, see <a href="https://docs.aws.amazon.com/privateca/latest/userguide/PCADeleteCA.html">Deleting your private CA</a> in the <i>Amazon Web Services Private Certificate Authority User Guide</i>.</p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -71,6 +71,9 @@ declare const DeleteCertificateCommand_base: {
|
|
|
71
71
|
* @throws {@link ThrottlingException} (client fault)
|
|
72
72
|
* <p>The request was denied because it exceeded a quota.</p>
|
|
73
73
|
*
|
|
74
|
+
* @throws {@link ValidationException} (client fault)
|
|
75
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
76
|
+
*
|
|
74
77
|
* @throws {@link ACMServiceException}
|
|
75
78
|
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
76
79
|
*
|