@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,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
|
*
|