@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,105 @@
|
|
|
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 { ListAcmeAccountsRequest, ListAcmeAccountsResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListAcmeAccountsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListAcmeAccountsCommandInput extends ListAcmeAccountsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListAcmeAccountsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListAcmeAccountsCommandOutput extends ListAcmeAccountsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListAcmeAccountsCommand_base: {
|
|
25
|
+
new (input: ListAcmeAccountsCommandInput): import("@smithy/core/client").CommandImpl<ListAcmeAccountsCommandInput, ListAcmeAccountsCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListAcmeAccountsCommandInput): import("@smithy/core/client").CommandImpl<ListAcmeAccountsCommandInput, ListAcmeAccountsCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Retrieves a list of ACME accounts registered with the specified ACME endpoint. ACME accounts are created when clients use external account binding credentials to register.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { ACMClient, ListAcmeAccountsCommand } from "@aws-sdk/client-acm"; // ES Modules import
|
|
37
|
+
* // const { ACMClient, ListAcmeAccountsCommand } = 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 = { // ListAcmeAccountsRequest
|
|
42
|
+
* NextToken: "STRING_VALUE",
|
|
43
|
+
* MaxResults: Number("int"),
|
|
44
|
+
* AcmeEndpointArn: "STRING_VALUE", // required
|
|
45
|
+
* };
|
|
46
|
+
* const command = new ListAcmeAccountsCommand(input);
|
|
47
|
+
* const response = await client.send(command);
|
|
48
|
+
* // { // ListAcmeAccountsResponse
|
|
49
|
+
* // AcmeAccounts: [ // AcmeAccountList
|
|
50
|
+
* // { // AcmeAccountSummary
|
|
51
|
+
* // AccountUrl: "STRING_VALUE",
|
|
52
|
+
* // PublicKeyThumbprint: "STRING_VALUE",
|
|
53
|
+
* // Status: "VALID" || "DEACTIVATED" || "REVOKED",
|
|
54
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
55
|
+
* // AcmeExternalAccountBindingArn: "STRING_VALUE",
|
|
56
|
+
* // Contacts: [ // ContactList
|
|
57
|
+
* // "STRING_VALUE",
|
|
58
|
+
* // ],
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // NextToken: "STRING_VALUE",
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
64
|
+
* ```
|
|
65
|
+
*
|
|
66
|
+
* @param ListAcmeAccountsCommandInput - {@link ListAcmeAccountsCommandInput}
|
|
67
|
+
* @returns {@link ListAcmeAccountsCommandOutput}
|
|
68
|
+
* @see {@link ListAcmeAccountsCommandInput} for command's `input` shape.
|
|
69
|
+
* @see {@link ListAcmeAccountsCommandOutput} for command's `response` shape.
|
|
70
|
+
* @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
73
|
+
* <p>You do not have access required to perform this action.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link InternalServerException} (server fault)
|
|
76
|
+
* <p>The request processing has failed because of an unknown error, exception, or failure.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
79
|
+
* <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
82
|
+
* <p>The request was denied because it exceeded a quota.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link ValidationException} (client fault)
|
|
85
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link ACMServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
89
|
+
*
|
|
90
|
+
*
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
export declare class ListAcmeAccountsCommand extends ListAcmeAccountsCommand_base {
|
|
94
|
+
/** @internal type navigation helper, not in runtime. */
|
|
95
|
+
protected static __types: {
|
|
96
|
+
api: {
|
|
97
|
+
input: ListAcmeAccountsRequest;
|
|
98
|
+
output: ListAcmeAccountsResponse;
|
|
99
|
+
};
|
|
100
|
+
sdk: {
|
|
101
|
+
input: ListAcmeAccountsCommandInput;
|
|
102
|
+
output: ListAcmeAccountsCommandOutput;
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
}
|
|
@@ -0,0 +1,123 @@
|
|
|
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 { ListAcmeDomainValidationsRequest, ListAcmeDomainValidationsResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListAcmeDomainValidationsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListAcmeDomainValidationsCommandInput extends ListAcmeDomainValidationsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListAcmeDomainValidationsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListAcmeDomainValidationsCommandOutput extends ListAcmeDomainValidationsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListAcmeDomainValidationsCommand_base: {
|
|
25
|
+
new (input: ListAcmeDomainValidationsCommandInput): import("@smithy/core/client").CommandImpl<ListAcmeDomainValidationsCommandInput, ListAcmeDomainValidationsCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListAcmeDomainValidationsCommandInput): import("@smithy/core/client").CommandImpl<ListAcmeDomainValidationsCommandInput, ListAcmeDomainValidationsCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Retrieves a list of domain validations for the specified ACME 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, ListAcmeDomainValidationsCommand } from "@aws-sdk/client-acm"; // ES Modules import
|
|
37
|
+
* // const { ACMClient, ListAcmeDomainValidationsCommand } = 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 = { // ListAcmeDomainValidationsRequest
|
|
42
|
+
* NextToken: "STRING_VALUE",
|
|
43
|
+
* MaxResults: Number("int"),
|
|
44
|
+
* AcmeEndpointArn: "STRING_VALUE", // required
|
|
45
|
+
* };
|
|
46
|
+
* const command = new ListAcmeDomainValidationsCommand(input);
|
|
47
|
+
* const response = await client.send(command);
|
|
48
|
+
* // { // ListAcmeDomainValidationsResponse
|
|
49
|
+
* // AcmeDomainValidations: [ // AcmeDomainValidationList
|
|
50
|
+
* // { // AcmeDomainValidationSummary
|
|
51
|
+
* // AcmeDomainValidationArn: "STRING_VALUE",
|
|
52
|
+
* // AcmeEndpointArn: "STRING_VALUE",
|
|
53
|
+
* // DomainName: "STRING_VALUE",
|
|
54
|
+
* // PrevalidationType: "DNS_PREVALIDATION",
|
|
55
|
+
* // PrevalidationDetails: { // PrevalidationDetails Union: only one key present
|
|
56
|
+
* // DnsPrevalidation: { // DnsPrevalidationDetails
|
|
57
|
+
* // DomainScope: { // DomainScope
|
|
58
|
+
* // ExactDomain: "ENABLED" || "DISABLED",
|
|
59
|
+
* // Subdomains: "ENABLED" || "DISABLED",
|
|
60
|
+
* // Wildcards: "ENABLED" || "DISABLED",
|
|
61
|
+
* // },
|
|
62
|
+
* // HostedZoneId: "STRING_VALUE",
|
|
63
|
+
* // ResourceRecord: { // ResourceRecord
|
|
64
|
+
* // Name: "STRING_VALUE", // required
|
|
65
|
+
* // Type: "CNAME", // required
|
|
66
|
+
* // Value: "STRING_VALUE", // required
|
|
67
|
+
* // },
|
|
68
|
+
* // },
|
|
69
|
+
* // },
|
|
70
|
+
* // Status: "VALIDATING" || "VALID" || "INVALID" || "DELETING",
|
|
71
|
+
* // FailureDetails: { // FailureDetails
|
|
72
|
+
* // 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",
|
|
73
|
+
* // Message: "STRING_VALUE",
|
|
74
|
+
* // },
|
|
75
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
76
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
77
|
+
* // },
|
|
78
|
+
* // ],
|
|
79
|
+
* // NextToken: "STRING_VALUE",
|
|
80
|
+
* // };
|
|
81
|
+
*
|
|
82
|
+
* ```
|
|
83
|
+
*
|
|
84
|
+
* @param ListAcmeDomainValidationsCommandInput - {@link ListAcmeDomainValidationsCommandInput}
|
|
85
|
+
* @returns {@link ListAcmeDomainValidationsCommandOutput}
|
|
86
|
+
* @see {@link ListAcmeDomainValidationsCommandInput} for command's `input` shape.
|
|
87
|
+
* @see {@link ListAcmeDomainValidationsCommandOutput} for command's `response` shape.
|
|
88
|
+
* @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
91
|
+
* <p>You do not have access required to perform this action.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link InternalServerException} (server fault)
|
|
94
|
+
* <p>The request processing has failed because of an unknown error, exception, or failure.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
97
|
+
* <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
100
|
+
* <p>The request was denied because it exceeded a quota.</p>
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link ValidationException} (client fault)
|
|
103
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
104
|
+
*
|
|
105
|
+
* @throws {@link ACMServiceException}
|
|
106
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
107
|
+
*
|
|
108
|
+
*
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
111
|
+
export declare class ListAcmeDomainValidationsCommand extends ListAcmeDomainValidationsCommand_base {
|
|
112
|
+
/** @internal type navigation helper, not in runtime. */
|
|
113
|
+
protected static __types: {
|
|
114
|
+
api: {
|
|
115
|
+
input: ListAcmeDomainValidationsRequest;
|
|
116
|
+
output: ListAcmeDomainValidationsResponse;
|
|
117
|
+
};
|
|
118
|
+
sdk: {
|
|
119
|
+
input: ListAcmeDomainValidationsCommandInput;
|
|
120
|
+
output: ListAcmeDomainValidationsCommandOutput;
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
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 { ListAcmeEndpointsRequest, ListAcmeEndpointsResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListAcmeEndpointsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListAcmeEndpointsCommandInput extends ListAcmeEndpointsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListAcmeEndpointsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListAcmeEndpointsCommandOutput extends ListAcmeEndpointsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListAcmeEndpointsCommand_base: {
|
|
25
|
+
new (input: ListAcmeEndpointsCommandInput): import("@smithy/core/client").CommandImpl<ListAcmeEndpointsCommandInput, ListAcmeEndpointsCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (...[input]: [] | [ListAcmeEndpointsCommandInput]): import("@smithy/core/client").CommandImpl<ListAcmeEndpointsCommandInput, ListAcmeEndpointsCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Retrieves a list of ACME endpoints in your account. Use this operation to view all configured ACME endpoints and their current status.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { ACMClient, ListAcmeEndpointsCommand } from "@aws-sdk/client-acm"; // ES Modules import
|
|
37
|
+
* // const { ACMClient, ListAcmeEndpointsCommand } = 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 = { // ListAcmeEndpointsRequest
|
|
42
|
+
* NextToken: "STRING_VALUE",
|
|
43
|
+
* MaxResults: Number("int"),
|
|
44
|
+
* };
|
|
45
|
+
* const command = new ListAcmeEndpointsCommand(input);
|
|
46
|
+
* const response = await client.send(command);
|
|
47
|
+
* // { // ListAcmeEndpointsResponse
|
|
48
|
+
* // AcmeEndpoints: [ // AcmeEndpointList
|
|
49
|
+
* // { // AcmeEndpointSummary
|
|
50
|
+
* // AcmeEndpointArn: "STRING_VALUE",
|
|
51
|
+
* // EndpointUrl: "STRING_VALUE",
|
|
52
|
+
* // Status: "CREATING" || "ACTIVE" || "DELETING" || "FAILED",
|
|
53
|
+
* // FailureReason: "STRING_VALUE",
|
|
54
|
+
* // AuthorizationBehavior: "PRE_APPROVED",
|
|
55
|
+
* // Contact: "REQUIRED" || "NOT_REQUIRED",
|
|
56
|
+
* // CertificateAuthority: { // CertificateAuthority Union: only one key present
|
|
57
|
+
* // PublicCertificateAuthority: { // PublicCertificateAuthority
|
|
58
|
+
* // AllowedKeyAlgorithms: [ // PublicKeyAlgorithmList
|
|
59
|
+
* // "RSA_2048" || "EC_prime256v1" || "EC_secp384r1",
|
|
60
|
+
* // ],
|
|
61
|
+
* // },
|
|
62
|
+
* // },
|
|
63
|
+
* // CertificateTags: [ // TagList
|
|
64
|
+
* // { // Tag
|
|
65
|
+
* // Key: "STRING_VALUE", // required
|
|
66
|
+
* // Value: "STRING_VALUE",
|
|
67
|
+
* // },
|
|
68
|
+
* // ],
|
|
69
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
70
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
71
|
+
* // },
|
|
72
|
+
* // ],
|
|
73
|
+
* // NextToken: "STRING_VALUE",
|
|
74
|
+
* // };
|
|
75
|
+
*
|
|
76
|
+
* ```
|
|
77
|
+
*
|
|
78
|
+
* @param ListAcmeEndpointsCommandInput - {@link ListAcmeEndpointsCommandInput}
|
|
79
|
+
* @returns {@link ListAcmeEndpointsCommandOutput}
|
|
80
|
+
* @see {@link ListAcmeEndpointsCommandInput} for command's `input` shape.
|
|
81
|
+
* @see {@link ListAcmeEndpointsCommandOutput} for command's `response` shape.
|
|
82
|
+
* @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
85
|
+
* <p>You do not have access required to perform this action.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link InternalServerException} (server fault)
|
|
88
|
+
* <p>The request processing has failed because of an unknown error, exception, or failure.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
91
|
+
* <p>The request was denied because it exceeded a quota.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link ValidationException} (client fault)
|
|
94
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link ACMServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
98
|
+
*
|
|
99
|
+
*
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
export declare class ListAcmeEndpointsCommand extends ListAcmeEndpointsCommand_base {
|
|
103
|
+
/** @internal type navigation helper, not in runtime. */
|
|
104
|
+
protected static __types: {
|
|
105
|
+
api: {
|
|
106
|
+
input: ListAcmeEndpointsRequest;
|
|
107
|
+
output: ListAcmeEndpointsResponse;
|
|
108
|
+
};
|
|
109
|
+
sdk: {
|
|
110
|
+
input: ListAcmeEndpointsCommandInput;
|
|
111
|
+
output: ListAcmeEndpointsCommandOutput;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
}
|
|
@@ -0,0 +1,105 @@
|
|
|
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 { ListAcmeExternalAccountBindingsRequest, ListAcmeExternalAccountBindingsResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListAcmeExternalAccountBindingsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListAcmeExternalAccountBindingsCommandInput extends ListAcmeExternalAccountBindingsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListAcmeExternalAccountBindingsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListAcmeExternalAccountBindingsCommandOutput extends ListAcmeExternalAccountBindingsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListAcmeExternalAccountBindingsCommand_base: {
|
|
25
|
+
new (input: ListAcmeExternalAccountBindingsCommandInput): import("@smithy/core/client").CommandImpl<ListAcmeExternalAccountBindingsCommandInput, ListAcmeExternalAccountBindingsCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListAcmeExternalAccountBindingsCommandInput): import("@smithy/core/client").CommandImpl<ListAcmeExternalAccountBindingsCommandInput, ListAcmeExternalAccountBindingsCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Retrieves a list of external account bindings for the specified ACME 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, ListAcmeExternalAccountBindingsCommand } from "@aws-sdk/client-acm"; // ES Modules import
|
|
37
|
+
* // const { ACMClient, ListAcmeExternalAccountBindingsCommand } = 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 = { // ListAcmeExternalAccountBindingsRequest
|
|
42
|
+
* NextToken: "STRING_VALUE",
|
|
43
|
+
* MaxResults: Number("int"),
|
|
44
|
+
* AcmeEndpointArn: "STRING_VALUE", // required
|
|
45
|
+
* };
|
|
46
|
+
* const command = new ListAcmeExternalAccountBindingsCommand(input);
|
|
47
|
+
* const response = await client.send(command);
|
|
48
|
+
* // { // ListAcmeExternalAccountBindingsResponse
|
|
49
|
+
* // ExternalAccountBindings: [ // AcmeExternalAccountBindingList
|
|
50
|
+
* // { // AcmeExternalAccountBindingSummary
|
|
51
|
+
* // AcmeExternalAccountBindingArn: "STRING_VALUE",
|
|
52
|
+
* // AcmeEndpointArn: "STRING_VALUE",
|
|
53
|
+
* // RoleArn: "STRING_VALUE",
|
|
54
|
+
* // ExpiresAt: new Date("TIMESTAMP"),
|
|
55
|
+
* // RevokedAt: new Date("TIMESTAMP"),
|
|
56
|
+
* // LastUsedAt: new Date("TIMESTAMP"),
|
|
57
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
58
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // NextToken: "STRING_VALUE",
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
64
|
+
* ```
|
|
65
|
+
*
|
|
66
|
+
* @param ListAcmeExternalAccountBindingsCommandInput - {@link ListAcmeExternalAccountBindingsCommandInput}
|
|
67
|
+
* @returns {@link ListAcmeExternalAccountBindingsCommandOutput}
|
|
68
|
+
* @see {@link ListAcmeExternalAccountBindingsCommandInput} for command's `input` shape.
|
|
69
|
+
* @see {@link ListAcmeExternalAccountBindingsCommandOutput} for command's `response` shape.
|
|
70
|
+
* @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
73
|
+
* <p>You do not have access required to perform this action.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link InternalServerException} (server fault)
|
|
76
|
+
* <p>The request processing has failed because of an unknown error, exception, or failure.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
79
|
+
* <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
82
|
+
* <p>The request was denied because it exceeded a quota.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link ValidationException} (client fault)
|
|
85
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link ACMServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
89
|
+
*
|
|
90
|
+
*
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
export declare class ListAcmeExternalAccountBindingsCommand extends ListAcmeExternalAccountBindingsCommand_base {
|
|
94
|
+
/** @internal type navigation helper, not in runtime. */
|
|
95
|
+
protected static __types: {
|
|
96
|
+
api: {
|
|
97
|
+
input: ListAcmeExternalAccountBindingsRequest;
|
|
98
|
+
output: ListAcmeExternalAccountBindingsResponse;
|
|
99
|
+
};
|
|
100
|
+
sdk: {
|
|
101
|
+
input: ListAcmeExternalAccountBindingsCommandInput;
|
|
102
|
+
output: ListAcmeExternalAccountBindingsCommandOutput;
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
}
|
|
@@ -29,7 +29,7 @@ declare const ListCertificatesCommand_base: {
|
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
|
-
* <p>Retrieves a list of certificate ARNs and domain names. You can request that only certificates that match a specific status be listed. You can also filter by specific attributes of the certificate. Default filtering returns only <code>RSA_2048</code> certificates. For more information, see <a>Filters</a>.</p>
|
|
32
|
+
* <p>Retrieves a list of certificate ARNs and domain names. You can request that only certificates that match a specific status be listed. You can also filter by specific attributes of the certificate. Default filtering returns only <code>RSA_2048</code> certificates. For more information, see <a>Filters</a>.</p> <note> <p>By default, this action does not return certificates with a <code>CertificateKeyPairOrigin</code> of <code>ACME</code>. To include ACME certificates, specify <code>ACME</code> in the <code>CertificateKeyPairOrigins</code> filter.</p> </note>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -42,6 +42,9 @@ declare const ListCertificatesCommand_base: {
|
|
|
42
42
|
* CertificateStatuses: [ // CertificateStatuses
|
|
43
43
|
* "PENDING_VALIDATION" || "ISSUED" || "INACTIVE" || "EXPIRED" || "VALIDATION_TIMED_OUT" || "REVOKED" || "FAILED",
|
|
44
44
|
* ],
|
|
45
|
+
* CertificateKeyPairOrigins: [ // CertificateKeyPairOrigins
|
|
46
|
+
* "AWS_MANAGED" || "ACME" || "CUSTOMER_PROVIDED",
|
|
47
|
+
* ],
|
|
45
48
|
* Includes: { // Filters
|
|
46
49
|
* extendedKeyUsage: [ // ExtendedKeyUsageFilterList
|
|
47
50
|
* "TLS_WEB_SERVER_AUTHENTICATION" || "TLS_WEB_CLIENT_AUTHENTICATION" || "CODE_SIGNING" || "EMAIL_PROTECTION" || "TIME_STAMPING" || "OCSP_SIGNING" || "IPSEC_END_SYSTEM" || "IPSEC_TUNNEL" || "IPSEC_USER" || "ANY" || "NONE" || "CUSTOM",
|
|
@@ -92,6 +95,7 @@ declare const ListCertificatesCommand_base: {
|
|
|
92
95
|
* // ImportedAt: new Date("TIMESTAMP"),
|
|
93
96
|
* // RevokedAt: new Date("TIMESTAMP"),
|
|
94
97
|
* // ManagedBy: "CLOUDFRONT",
|
|
98
|
+
* // CertificateKeyPairOrigin: "AWS_MANAGED" || "ACME" || "CUSTOMER_PROVIDED",
|
|
95
99
|
* // },
|
|
96
100
|
* // ],
|
|
97
101
|
* // };
|
|
@@ -29,7 +29,7 @@ declare const ListTagsForCertificateCommand_base: {
|
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
|
-
* <p>Lists the tags that have been applied to the ACM certificate. Use the certificate's Amazon Resource Name (ARN) to specify the certificate. To add a tag to an ACM certificate, use the <a>AddTagsToCertificate</a> action. To delete a tag, use the <a>RemoveTagsFromCertificate</a> action. </p>
|
|
32
|
+
* <p>Lists the tags that have been applied to the ACM certificate. Use the certificate's Amazon Resource Name (ARN) to specify the certificate. To add a tag to an ACM certificate, use the <a>AddTagsToCertificate</a> action. To delete a tag, use the <a>RemoveTagsFromCertificate</a> action. </p> <note> <p>This action applies only to the <code>certificate</code> resource type. For all other ACM resource types, use <a>ListTagsForResource</a> instead.</p> </note>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -66,6 +66,9 @@ declare const ListTagsForCertificateCommand_base: {
|
|
|
66
66
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
67
67
|
* <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
|
|
68
68
|
*
|
|
69
|
+
* @throws {@link ValidationException} (client fault)
|
|
70
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
71
|
+
*
|
|
69
72
|
* @throws {@link ACMServiceException}
|
|
70
73
|
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
71
74
|
*
|
|
@@ -0,0 +1,87 @@
|
|
|
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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListTagsForResourceCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListTagsForResourceCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const ListTagsForResourceCommand_base: {
|
|
25
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Lists the tags associated with 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>ListTagsForCertificate</a> instead.</p> </note> <p>To add one or more tags, use the <a>TagResource</a> action. To remove one or more tags, use the <a>UntagResource</a> action.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { ACMClient, ListTagsForResourceCommand } from "@aws-sdk/client-acm"; // ES Modules import
|
|
37
|
+
* // const { ACMClient, ListTagsForResourceCommand } = 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 = { // ListTagsForResourceRequest
|
|
42
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
43
|
+
* };
|
|
44
|
+
* const command = new ListTagsForResourceCommand(input);
|
|
45
|
+
* const response = await client.send(command);
|
|
46
|
+
* // { // ListTagsForResourceResponse
|
|
47
|
+
* // Tags: [ // TagList
|
|
48
|
+
* // { // Tag
|
|
49
|
+
* // Key: "STRING_VALUE", // required
|
|
50
|
+
* // Value: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
55
|
+
* ```
|
|
56
|
+
*
|
|
57
|
+
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
58
|
+
* @returns {@link ListTagsForResourceCommandOutput}
|
|
59
|
+
* @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
|
|
60
|
+
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
61
|
+
* @see {@link ACMClientResolvedConfig | config} for ACMClient's `config` shape.
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
64
|
+
* <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ValidationException} (client fault)
|
|
67
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ACMServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
71
|
+
*
|
|
72
|
+
*
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
76
|
+
/** @internal type navigation helper, not in runtime. */
|
|
77
|
+
protected static __types: {
|
|
78
|
+
api: {
|
|
79
|
+
input: ListTagsForResourceRequest;
|
|
80
|
+
output: ListTagsForResourceResponse;
|
|
81
|
+
};
|
|
82
|
+
sdk: {
|
|
83
|
+
input: ListTagsForResourceCommandInput;
|
|
84
|
+
output: ListTagsForResourceCommandOutput;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
}
|
|
@@ -29,7 +29,7 @@ declare const RemoveTagsFromCertificateCommand_base: {
|
|
|
29
29
|
};
|
|
30
30
|
};
|
|
31
31
|
/**
|
|
32
|
-
* <p>Remove one or more tags from an ACM certificate. A tag consists of a key-value pair. If you do not specify the value portion of the tag when calling this function, the tag will be removed regardless of value. If you specify a value, the tag is removed only if it is associated with the specified value. </p> <p>To add tags to a certificate, use the <a>AddTagsToCertificate</a> action. To view all of the tags that have been applied to a specific ACM certificate, use the <a>ListTagsForCertificate</a> action. </p>
|
|
32
|
+
* <p>Remove one or more tags from an ACM certificate. A tag consists of a key-value pair. If you do not specify the value portion of the tag when calling this function, the tag will be removed regardless of value. If you specify a value, the tag is removed only if it is associated with the specified value. </p> <note> <p>This action applies only to the <code>certificate</code> resource type. For all other ACM resource types, use <a>UntagResource</a> instead.</p> </note> <p>To add tags to a certificate, use the <a>AddTagsToCertificate</a> action. To view all of the tags that have been applied to a specific ACM certificate, use the <a>ListTagsForCertificate</a> action. </p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -77,6 +77,9 @@ declare const RemoveTagsFromCertificateCommand_base: {
|
|
|
77
77
|
* @throws {@link ThrottlingException} (client fault)
|
|
78
78
|
* <p>The request was denied because it exceeded a quota.</p>
|
|
79
79
|
*
|
|
80
|
+
* @throws {@link ValidationException} (client fault)
|
|
81
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
82
|
+
*
|
|
80
83
|
* @throws {@link ACMServiceException}
|
|
81
84
|
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
82
85
|
*
|
|
@@ -62,6 +62,9 @@ declare const RenewCertificateCommand_base: {
|
|
|
62
62
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
63
63
|
* <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
|
|
64
64
|
*
|
|
65
|
+
* @throws {@link ValidationException} (client fault)
|
|
66
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
67
|
+
*
|
|
65
68
|
* @throws {@link ACMServiceException}
|
|
66
69
|
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
67
70
|
*
|
|
@@ -67,6 +67,9 @@ declare const ResendValidationEmailCommand_base: {
|
|
|
67
67
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
68
68
|
* <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
|
|
69
69
|
*
|
|
70
|
+
* @throws {@link ValidationException} (client fault)
|
|
71
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
72
|
+
*
|
|
70
73
|
* @throws {@link ACMServiceException}
|
|
71
74
|
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
72
75
|
*
|