@aws-sdk/client-acm 3.1076.0 → 3.1078.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +161 -7
- package/dist-cjs/index.js +1058 -262
- package/dist-es/ACM.js +60 -0
- package/dist-es/commandBuilder.js +11 -0
- package/dist-es/commands/AddTagsToCertificateCommand.js +2 -14
- package/dist-es/commands/CreateAcmeDomainValidationCommand.js +4 -0
- package/dist-es/commands/CreateAcmeEndpointCommand.js +4 -0
- package/dist-es/commands/CreateAcmeExternalAccountBindingCommand.js +4 -0
- package/dist-es/commands/DeleteAcmeDomainValidationCommand.js +4 -0
- package/dist-es/commands/DeleteAcmeEndpointCommand.js +4 -0
- package/dist-es/commands/DeleteAcmeExternalAccountBindingCommand.js +4 -0
- package/dist-es/commands/DeleteCertificateCommand.js +2 -14
- package/dist-es/commands/DescribeAcmeAccountCommand.js +4 -0
- package/dist-es/commands/DescribeAcmeDomainValidationCommand.js +4 -0
- package/dist-es/commands/DescribeAcmeEndpointCommand.js +4 -0
- package/dist-es/commands/DescribeAcmeExternalAccountBindingCommand.js +4 -0
- package/dist-es/commands/DescribeCertificateCommand.js +2 -14
- package/dist-es/commands/ExportCertificateCommand.js +2 -14
- package/dist-es/commands/GetAccountConfigurationCommand.js +2 -14
- package/dist-es/commands/GetAcmeExternalAccountBindingCredentialsCommand.js +4 -0
- package/dist-es/commands/GetCertificateCommand.js +2 -14
- package/dist-es/commands/ImportCertificateCommand.js +2 -14
- package/dist-es/commands/ListAcmeAccountsCommand.js +4 -0
- package/dist-es/commands/ListAcmeDomainValidationsCommand.js +4 -0
- package/dist-es/commands/ListAcmeEndpointsCommand.js +4 -0
- package/dist-es/commands/ListAcmeExternalAccountBindingsCommand.js +4 -0
- package/dist-es/commands/ListCertificatesCommand.js +2 -14
- package/dist-es/commands/ListTagsForCertificateCommand.js +2 -14
- package/dist-es/commands/ListTagsForResourceCommand.js +4 -0
- package/dist-es/commands/PutAccountConfigurationCommand.js +2 -14
- package/dist-es/commands/RemoveTagsFromCertificateCommand.js +2 -14
- package/dist-es/commands/RenewCertificateCommand.js +2 -14
- package/dist-es/commands/RequestCertificateCommand.js +2 -14
- package/dist-es/commands/ResendValidationEmailCommand.js +2 -14
- package/dist-es/commands/RevokeAcmeAccountCommand.js +4 -0
- package/dist-es/commands/RevokeAcmeExternalAccountBindingCommand.js +4 -0
- package/dist-es/commands/RevokeCertificateCommand.js +2 -14
- package/dist-es/commands/SearchCertificatesCommand.js +2 -14
- package/dist-es/commands/TagResourceCommand.js +4 -0
- package/dist-es/commands/UntagResourceCommand.js +4 -0
- package/dist-es/commands/UpdateAcmeDomainValidationCommand.js +4 -0
- package/dist-es/commands/UpdateAcmeEndpointCommand.js +4 -0
- package/dist-es/commands/UpdateCertificateOptionsCommand.js +2 -14
- 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/index.js +1 -0
- 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/commandBuilder.d.ts +22 -0
- package/dist-types/commands/AddTagsToCertificateCommand.d.ts +7 -9
- package/dist-types/commands/CreateAcmeDomainValidationCommand.d.ts +110 -0
- package/dist-types/commands/CreateAcmeEndpointCommand.d.ts +110 -0
- package/dist-types/commands/CreateAcmeExternalAccountBindingCommand.d.ts +113 -0
- package/dist-types/commands/DeleteAcmeDomainValidationCommand.d.ts +84 -0
- package/dist-types/commands/DeleteAcmeEndpointCommand.d.ts +84 -0
- package/dist-types/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +81 -0
- package/dist-types/commands/DeleteCertificateCommand.d.ts +7 -9
- package/dist-types/commands/DescribeAcmeAccountCommand.d.ts +96 -0
- package/dist-types/commands/DescribeAcmeDomainValidationCommand.d.ts +113 -0
- package/dist-types/commands/DescribeAcmeEndpointCommand.d.ts +108 -0
- package/dist-types/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +95 -0
- package/dist-types/commands/DescribeCertificateCommand.d.ts +9 -8
- package/dist-types/commands/ExportCertificateCommand.d.ts +6 -8
- package/dist-types/commands/GetAccountConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +87 -0
- package/dist-types/commands/GetCertificateCommand.d.ts +6 -8
- package/dist-types/commands/ImportCertificateCommand.d.ts +6 -8
- package/dist-types/commands/ListAcmeAccountsCommand.d.ts +100 -0
- package/dist-types/commands/ListAcmeDomainValidationsCommand.d.ts +118 -0
- package/dist-types/commands/ListAcmeEndpointsCommand.d.ts +109 -0
- package/dist-types/commands/ListAcmeExternalAccountBindingsCommand.d.ts +100 -0
- package/dist-types/commands/ListCertificatesCommand.d.ts +8 -9
- package/dist-types/commands/ListTagsForCertificateCommand.d.ts +7 -9
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +82 -0
- package/dist-types/commands/PutAccountConfigurationCommand.d.ts +3 -8
- package/dist-types/commands/RemoveTagsFromCertificateCommand.d.ts +7 -9
- package/dist-types/commands/RenewCertificateCommand.d.ts +6 -8
- package/dist-types/commands/RequestCertificateCommand.d.ts +3 -8
- package/dist-types/commands/ResendValidationEmailCommand.d.ts +6 -8
- package/dist-types/commands/RevokeAcmeAccountCommand.d.ts +88 -0
- package/dist-types/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +87 -0
- package/dist-types/commands/RevokeCertificateCommand.d.ts +6 -8
- package/dist-types/commands/SearchCertificatesCommand.d.ts +13 -9
- package/dist-types/commands/TagResourceCommand.d.ts +84 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +78 -0
- package/dist-types/commands/UpdateAcmeDomainValidationCommand.d.ts +97 -0
- package/dist-types/commands/UpdateAcmeEndpointCommand.d.ts +96 -0
- package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +6 -8
- package/dist-types/commands/index.d.ts +22 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +14 -5
- package/dist-types/index.d.ts +1 -0
- 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/commandBuilder.d.ts +47 -0
- package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateAcmeDomainValidationCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateAcmeEndpointCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateAcmeExternalAccountBindingCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DeleteAcmeDomainValidationCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/DeleteAcmeEndpointCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteAcmeExternalAccountBindingCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DescribeAcmeAccountCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DescribeAcmeDomainValidationCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DescribeAcmeEndpointCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DescribeAcmeExternalAccountBindingCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetAcmeExternalAccountBindingCredentialsCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListAcmeAccountsCommand.d.ts +43 -0
- package/dist-types/ts3.4/commands/ListAcmeDomainValidationsCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/ListAcmeEndpointsCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/ListAcmeExternalAccountBindingsCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +44 -0
- package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RevokeAcmeAccountCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/RevokeAcmeExternalAccountBindingCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/RevokeCertificateCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SearchCertificatesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateAcmeDomainValidationCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/UpdateAcmeEndpointCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.d.ts +7 -16
- 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/index.d.ts +1 -0
- 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 +8 -10
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
|
|
4
2
|
import type { GetCertificateRequest, GetCertificateResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetCertificateCommandInput extends GetCertificateRequest {
|
|
|
22
19
|
export interface GetCertificateCommandOutput extends GetCertificateResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetCertificateCommand_base: {
|
|
25
|
-
new (input: GetCertificateCommandInput): import("@smithy/core/client").CommandImpl<GetCertificateCommandInput, GetCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetCertificateCommandInput): import("@smithy/core/client").CommandImpl<GetCertificateCommandInput, GetCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetCertificateCommandInput): import("@smithy/core/client").CommandImpl<GetCertificateCommandInput, GetCertificateCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetCertificateCommandInput): import("@smithy/core/client").CommandImpl<GetCertificateCommandInput, GetCertificateCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Retrieves a certificate and its certificate chain. The certificate may be either a public or private certificate issued using the ACM <code>RequestCertificate</code> action, or a certificate imported into ACM using the <code>ImportCertificate</code> action. The chain consists of the certificate of the issuing CA and the intermediate certificates of any other subordinate CAs. All of the certificates are base64 encoded. You can use <a href="https://wiki.openssl.org/index.php/Command_Line_Utilities">OpenSSL</a> to decode the certificates and inspect individual fields.</p>
|
|
@@ -65,6 +60,9 @@ declare const GetCertificateCommand_base: {
|
|
|
65
60
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
66
61
|
* <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
|
|
67
62
|
*
|
|
63
|
+
* @throws {@link ValidationException} (client fault)
|
|
64
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
65
|
+
*
|
|
68
66
|
* @throws {@link ACMServiceException}
|
|
69
67
|
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
70
68
|
*
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
|
|
4
2
|
import type { ImportCertificateRequest, ImportCertificateResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ImportCertificateCommandInput extends ImportCertificateRequest
|
|
|
22
19
|
export interface ImportCertificateCommandOutput extends ImportCertificateResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ImportCertificateCommand_base: {
|
|
25
|
-
new (input: ImportCertificateCommandInput): import("@smithy/core/client").CommandImpl<ImportCertificateCommandInput, ImportCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ImportCertificateCommandInput): import("@smithy/core/client").CommandImpl<ImportCertificateCommandInput, ImportCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ImportCertificateCommandInput): import("@smithy/core/client").CommandImpl<ImportCertificateCommandInput, ImportCertificateCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ImportCertificateCommandInput): import("@smithy/core/client").CommandImpl<ImportCertificateCommandInput, ImportCertificateCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Imports a certificate into Certificate Manager (ACM) to use with services that are integrated with ACM. Note that <a href="https://docs.aws.amazon.com/acm/latest/userguide/acm-services.html">integrated services</a> allow only certificate types and keys they support to be associated with their resources. Further, their support differs depending on whether the certificate is imported into IAM or into ACM. For more information, see the documentation for each service. For more information about importing certificates into ACM, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/import-certificate.html">Importing Certificates</a> in the <i>Certificate Manager User Guide</i>. </p> <note> <p>ACM does not provide <a href="https://docs.aws.amazon.com/acm/latest/userguide/acm-renewal.html">managed renewal</a> for certificates that you import.</p> </note> <p>Note the following guidelines when importing third party certificates:</p> <ul> <li> <p>You must enter the private key that matches the certificate you are importing.</p> </li> <li> <p>The private key must be unencrypted. You cannot import a private key that is protected by a password or a passphrase.</p> </li> <li> <p>The private key must be no larger than 5 KB (5,120 bytes).</p> </li> <li> <p>The certificate, private key, and certificate chain must be PEM-encoded.</p> </li> <li> <p>The current time must be between the <code>Not Before</code> and <code>Not After</code> certificate fields.</p> </li> <li> <p>The <code>Issuer</code> field must not be empty.</p> </li> <li> <p>The OCSP authority URL, if present, must not exceed 1000 characters.</p> </li> <li> <p>To import a new certificate, omit the <code>CertificateArn</code> argument. Include this argument only when you want to replace a previously imported certificate.</p> </li> <li> <p>When you import a certificate by using the CLI, you must specify the certificate, the certificate chain, and the private key by their file names preceded by <code>fileb://</code>. For example, you can specify a certificate saved in the <code>C:\temp</code> folder as <code>fileb://C:\temp\certificate_to_import.pem</code>. If you are making an HTTP or HTTPS Query request, include these arguments as BLOBs. </p> </li> <li> <p>When you import a certificate by using an SDK, you must specify the certificate, the certificate chain, and the private key files in the manner required by the programming language you're using. </p> </li> <li> <p>The cryptographic algorithm of an imported certificate must match the algorithm of the signing CA. For example, if the signing CA key type is RSA, then the certificate key type must also be RSA.</p> </li> </ul> <p>This operation returns the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name (ARN)</a> of the imported certificate.</p>
|
|
@@ -88,6 +83,9 @@ declare const ImportCertificateCommand_base: {
|
|
|
88
83
|
* @throws {@link TooManyTagsException} (client fault)
|
|
89
84
|
* <p>The request contains too many tags. Try the request again with fewer tags.</p>
|
|
90
85
|
*
|
|
86
|
+
* @throws {@link ValidationException} (client fault)
|
|
87
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
88
|
+
*
|
|
91
89
|
* @throws {@link ACMServiceException}
|
|
92
90
|
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
93
91
|
*
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { ListAcmeAccountsRequest, ListAcmeAccountsResponse } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link ListAcmeAccountsCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface ListAcmeAccountsCommandInput extends ListAcmeAccountsRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link ListAcmeAccountsCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface ListAcmeAccountsCommandOutput extends ListAcmeAccountsResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const ListAcmeAccountsCommand_base: {
|
|
22
|
+
new (input: ListAcmeAccountsCommandInput): import("@smithy/core/client").CommandImpl<ListAcmeAccountsCommandInput, ListAcmeAccountsCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListAcmeAccountsCommandInput): import("@smithy/core/client").CommandImpl<ListAcmeAccountsCommandInput, ListAcmeAccountsCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <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>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { ACMClient, ListAcmeAccountsCommand } from "@aws-sdk/client-acm"; // ES Modules import
|
|
32
|
+
* // const { ACMClient, ListAcmeAccountsCommand } = require("@aws-sdk/client-acm"); // CommonJS import
|
|
33
|
+
* // import type { ACMClientConfig } from "@aws-sdk/client-acm";
|
|
34
|
+
* const config = {}; // type is ACMClientConfig
|
|
35
|
+
* const client = new ACMClient(config);
|
|
36
|
+
* const input = { // ListAcmeAccountsRequest
|
|
37
|
+
* NextToken: "STRING_VALUE",
|
|
38
|
+
* MaxResults: Number("int"),
|
|
39
|
+
* AcmeEndpointArn: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new ListAcmeAccountsCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // { // ListAcmeAccountsResponse
|
|
44
|
+
* // AcmeAccounts: [ // AcmeAccountList
|
|
45
|
+
* // { // AcmeAccountSummary
|
|
46
|
+
* // AccountUrl: "STRING_VALUE",
|
|
47
|
+
* // PublicKeyThumbprint: "STRING_VALUE",
|
|
48
|
+
* // Status: "VALID" || "DEACTIVATED" || "REVOKED",
|
|
49
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
50
|
+
* // AcmeExternalAccountBindingArn: "STRING_VALUE",
|
|
51
|
+
* // Contacts: [ // ContactList
|
|
52
|
+
* // "STRING_VALUE",
|
|
53
|
+
* // ],
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // NextToken: "STRING_VALUE",
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* @param ListAcmeAccountsCommandInput - {@link ListAcmeAccountsCommandInput}
|
|
62
|
+
* @returns {@link ListAcmeAccountsCommandOutput}
|
|
63
|
+
* @see {@link ListAcmeAccountsCommandInput} for command's `input` shape.
|
|
64
|
+
* @see {@link ListAcmeAccountsCommandOutput} 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 ListAcmeAccountsCommand extends ListAcmeAccountsCommand_base {
|
|
89
|
+
/** @internal type navigation helper, not in runtime. */
|
|
90
|
+
protected static __types: {
|
|
91
|
+
api: {
|
|
92
|
+
input: ListAcmeAccountsRequest;
|
|
93
|
+
output: ListAcmeAccountsResponse;
|
|
94
|
+
};
|
|
95
|
+
sdk: {
|
|
96
|
+
input: ListAcmeAccountsCommandInput;
|
|
97
|
+
output: ListAcmeAccountsCommandOutput;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
}
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { ListAcmeDomainValidationsRequest, ListAcmeDomainValidationsResponse } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link ListAcmeDomainValidationsCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface ListAcmeDomainValidationsCommandInput extends ListAcmeDomainValidationsRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link ListAcmeDomainValidationsCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface ListAcmeDomainValidationsCommandOutput extends ListAcmeDomainValidationsResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const ListAcmeDomainValidationsCommand_base: {
|
|
22
|
+
new (input: ListAcmeDomainValidationsCommandInput): import("@smithy/core/client").CommandImpl<ListAcmeDomainValidationsCommandInput, ListAcmeDomainValidationsCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListAcmeDomainValidationsCommandInput): import("@smithy/core/client").CommandImpl<ListAcmeDomainValidationsCommandInput, ListAcmeDomainValidationsCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Retrieves a list of domain validations for the specified ACME endpoint.</p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { ACMClient, ListAcmeDomainValidationsCommand } from "@aws-sdk/client-acm"; // ES Modules import
|
|
32
|
+
* // const { ACMClient, ListAcmeDomainValidationsCommand } = require("@aws-sdk/client-acm"); // CommonJS import
|
|
33
|
+
* // import type { ACMClientConfig } from "@aws-sdk/client-acm";
|
|
34
|
+
* const config = {}; // type is ACMClientConfig
|
|
35
|
+
* const client = new ACMClient(config);
|
|
36
|
+
* const input = { // ListAcmeDomainValidationsRequest
|
|
37
|
+
* NextToken: "STRING_VALUE",
|
|
38
|
+
* MaxResults: Number("int"),
|
|
39
|
+
* AcmeEndpointArn: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new ListAcmeDomainValidationsCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // { // ListAcmeDomainValidationsResponse
|
|
44
|
+
* // AcmeDomainValidations: [ // AcmeDomainValidationList
|
|
45
|
+
* // { // AcmeDomainValidationSummary
|
|
46
|
+
* // AcmeDomainValidationArn: "STRING_VALUE",
|
|
47
|
+
* // AcmeEndpointArn: "STRING_VALUE",
|
|
48
|
+
* // DomainName: "STRING_VALUE",
|
|
49
|
+
* // PrevalidationType: "DNS_PREVALIDATION",
|
|
50
|
+
* // PrevalidationDetails: { // PrevalidationDetails Union: only one key present
|
|
51
|
+
* // DnsPrevalidation: { // DnsPrevalidationDetails
|
|
52
|
+
* // DomainScope: { // DomainScope
|
|
53
|
+
* // ExactDomain: "ENABLED" || "DISABLED",
|
|
54
|
+
* // Subdomains: "ENABLED" || "DISABLED",
|
|
55
|
+
* // Wildcards: "ENABLED" || "DISABLED",
|
|
56
|
+
* // },
|
|
57
|
+
* // HostedZoneId: "STRING_VALUE",
|
|
58
|
+
* // ResourceRecord: { // ResourceRecord
|
|
59
|
+
* // Name: "STRING_VALUE", // required
|
|
60
|
+
* // Type: "CNAME", // required
|
|
61
|
+
* // Value: "STRING_VALUE", // required
|
|
62
|
+
* // },
|
|
63
|
+
* // },
|
|
64
|
+
* // },
|
|
65
|
+
* // Status: "VALIDATING" || "VALID" || "INVALID" || "DELETING",
|
|
66
|
+
* // FailureDetails: { // FailureDetails
|
|
67
|
+
* // 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",
|
|
68
|
+
* // Message: "STRING_VALUE",
|
|
69
|
+
* // },
|
|
70
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
71
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
72
|
+
* // },
|
|
73
|
+
* // ],
|
|
74
|
+
* // NextToken: "STRING_VALUE",
|
|
75
|
+
* // };
|
|
76
|
+
*
|
|
77
|
+
* ```
|
|
78
|
+
*
|
|
79
|
+
* @param ListAcmeDomainValidationsCommandInput - {@link ListAcmeDomainValidationsCommandInput}
|
|
80
|
+
* @returns {@link ListAcmeDomainValidationsCommandOutput}
|
|
81
|
+
* @see {@link ListAcmeDomainValidationsCommandInput} for command's `input` shape.
|
|
82
|
+
* @see {@link ListAcmeDomainValidationsCommandOutput} 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 ListAcmeDomainValidationsCommand extends ListAcmeDomainValidationsCommand_base {
|
|
107
|
+
/** @internal type navigation helper, not in runtime. */
|
|
108
|
+
protected static __types: {
|
|
109
|
+
api: {
|
|
110
|
+
input: ListAcmeDomainValidationsRequest;
|
|
111
|
+
output: ListAcmeDomainValidationsResponse;
|
|
112
|
+
};
|
|
113
|
+
sdk: {
|
|
114
|
+
input: ListAcmeDomainValidationsCommandInput;
|
|
115
|
+
output: ListAcmeDomainValidationsCommandOutput;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { ListAcmeEndpointsRequest, ListAcmeEndpointsResponse } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link ListAcmeEndpointsCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface ListAcmeEndpointsCommandInput extends ListAcmeEndpointsRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link ListAcmeEndpointsCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface ListAcmeEndpointsCommandOutput extends ListAcmeEndpointsResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const ListAcmeEndpointsCommand_base: {
|
|
22
|
+
new (input: ListAcmeEndpointsCommandInput): import("@smithy/core/client").CommandImpl<ListAcmeEndpointsCommandInput, ListAcmeEndpointsCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListAcmeEndpointsCommandInput]): import("@smithy/core/client").CommandImpl<ListAcmeEndpointsCommandInput, ListAcmeEndpointsCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Retrieves a list of ACME endpoints in your account. Use this operation to view all configured ACME endpoints and their current status.</p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { ACMClient, ListAcmeEndpointsCommand } from "@aws-sdk/client-acm"; // ES Modules import
|
|
32
|
+
* // const { ACMClient, ListAcmeEndpointsCommand } = require("@aws-sdk/client-acm"); // CommonJS import
|
|
33
|
+
* // import type { ACMClientConfig } from "@aws-sdk/client-acm";
|
|
34
|
+
* const config = {}; // type is ACMClientConfig
|
|
35
|
+
* const client = new ACMClient(config);
|
|
36
|
+
* const input = { // ListAcmeEndpointsRequest
|
|
37
|
+
* NextToken: "STRING_VALUE",
|
|
38
|
+
* MaxResults: Number("int"),
|
|
39
|
+
* };
|
|
40
|
+
* const command = new ListAcmeEndpointsCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // ListAcmeEndpointsResponse
|
|
43
|
+
* // AcmeEndpoints: [ // AcmeEndpointList
|
|
44
|
+
* // { // AcmeEndpointSummary
|
|
45
|
+
* // AcmeEndpointArn: "STRING_VALUE",
|
|
46
|
+
* // EndpointUrl: "STRING_VALUE",
|
|
47
|
+
* // Status: "CREATING" || "ACTIVE" || "DELETING" || "FAILED",
|
|
48
|
+
* // FailureReason: "STRING_VALUE",
|
|
49
|
+
* // AuthorizationBehavior: "PRE_APPROVED",
|
|
50
|
+
* // Contact: "REQUIRED" || "NOT_REQUIRED",
|
|
51
|
+
* // CertificateAuthority: { // CertificateAuthority Union: only one key present
|
|
52
|
+
* // PublicCertificateAuthority: { // PublicCertificateAuthority
|
|
53
|
+
* // AllowedKeyAlgorithms: [ // PublicKeyAlgorithmList
|
|
54
|
+
* // "RSA_2048" || "EC_prime256v1" || "EC_secp384r1",
|
|
55
|
+
* // ],
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // CertificateTags: [ // TagList
|
|
59
|
+
* // { // Tag
|
|
60
|
+
* // Key: "STRING_VALUE", // required
|
|
61
|
+
* // Value: "STRING_VALUE",
|
|
62
|
+
* // },
|
|
63
|
+
* // ],
|
|
64
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
65
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
66
|
+
* // },
|
|
67
|
+
* // ],
|
|
68
|
+
* // NextToken: "STRING_VALUE",
|
|
69
|
+
* // };
|
|
70
|
+
*
|
|
71
|
+
* ```
|
|
72
|
+
*
|
|
73
|
+
* @param ListAcmeEndpointsCommandInput - {@link ListAcmeEndpointsCommandInput}
|
|
74
|
+
* @returns {@link ListAcmeEndpointsCommandOutput}
|
|
75
|
+
* @see {@link ListAcmeEndpointsCommandInput} for command's `input` shape.
|
|
76
|
+
* @see {@link ListAcmeEndpointsCommandOutput} 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 InternalServerException} (server fault)
|
|
83
|
+
* <p>The request processing has failed because of an unknown error, exception, or failure.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
86
|
+
* <p>The request was denied because it exceeded a quota.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link ValidationException} (client fault)
|
|
89
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link ACMServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
93
|
+
*
|
|
94
|
+
*
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
export declare class ListAcmeEndpointsCommand extends ListAcmeEndpointsCommand_base {
|
|
98
|
+
/** @internal type navigation helper, not in runtime. */
|
|
99
|
+
protected static __types: {
|
|
100
|
+
api: {
|
|
101
|
+
input: ListAcmeEndpointsRequest;
|
|
102
|
+
output: ListAcmeEndpointsResponse;
|
|
103
|
+
};
|
|
104
|
+
sdk: {
|
|
105
|
+
input: ListAcmeEndpointsCommandInput;
|
|
106
|
+
output: ListAcmeEndpointsCommandOutput;
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import type { ListAcmeExternalAccountBindingsRequest, ListAcmeExternalAccountBindingsResponse } from "../models/models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export type { __MetadataBearer };
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*
|
|
10
|
+
* The input for {@link ListAcmeExternalAccountBindingsCommand}.
|
|
11
|
+
*/
|
|
12
|
+
export interface ListAcmeExternalAccountBindingsCommandInput extends ListAcmeExternalAccountBindingsRequest {
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*
|
|
17
|
+
* The output of {@link ListAcmeExternalAccountBindingsCommand}.
|
|
18
|
+
*/
|
|
19
|
+
export interface ListAcmeExternalAccountBindingsCommandOutput extends ListAcmeExternalAccountBindingsResponse, __MetadataBearer {
|
|
20
|
+
}
|
|
21
|
+
declare const ListAcmeExternalAccountBindingsCommand_base: {
|
|
22
|
+
new (input: ListAcmeExternalAccountBindingsCommandInput): import("@smithy/core/client").CommandImpl<ListAcmeExternalAccountBindingsCommandInput, ListAcmeExternalAccountBindingsCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListAcmeExternalAccountBindingsCommandInput): import("@smithy/core/client").CommandImpl<ListAcmeExternalAccountBindingsCommandInput, ListAcmeExternalAccountBindingsCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* <p>Retrieves a list of external account bindings for the specified ACME endpoint.</p>
|
|
28
|
+
* @example
|
|
29
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
30
|
+
* ```javascript
|
|
31
|
+
* import { ACMClient, ListAcmeExternalAccountBindingsCommand } from "@aws-sdk/client-acm"; // ES Modules import
|
|
32
|
+
* // const { ACMClient, ListAcmeExternalAccountBindingsCommand } = require("@aws-sdk/client-acm"); // CommonJS import
|
|
33
|
+
* // import type { ACMClientConfig } from "@aws-sdk/client-acm";
|
|
34
|
+
* const config = {}; // type is ACMClientConfig
|
|
35
|
+
* const client = new ACMClient(config);
|
|
36
|
+
* const input = { // ListAcmeExternalAccountBindingsRequest
|
|
37
|
+
* NextToken: "STRING_VALUE",
|
|
38
|
+
* MaxResults: Number("int"),
|
|
39
|
+
* AcmeEndpointArn: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new ListAcmeExternalAccountBindingsCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // { // ListAcmeExternalAccountBindingsResponse
|
|
44
|
+
* // ExternalAccountBindings: [ // AcmeExternalAccountBindingList
|
|
45
|
+
* // { // AcmeExternalAccountBindingSummary
|
|
46
|
+
* // AcmeExternalAccountBindingArn: "STRING_VALUE",
|
|
47
|
+
* // AcmeEndpointArn: "STRING_VALUE",
|
|
48
|
+
* // RoleArn: "STRING_VALUE",
|
|
49
|
+
* // ExpiresAt: new Date("TIMESTAMP"),
|
|
50
|
+
* // RevokedAt: new Date("TIMESTAMP"),
|
|
51
|
+
* // LastUsedAt: new Date("TIMESTAMP"),
|
|
52
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
53
|
+
* // UpdatedAt: new Date("TIMESTAMP"),
|
|
54
|
+
* // },
|
|
55
|
+
* // ],
|
|
56
|
+
* // NextToken: "STRING_VALUE",
|
|
57
|
+
* // };
|
|
58
|
+
*
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* @param ListAcmeExternalAccountBindingsCommandInput - {@link ListAcmeExternalAccountBindingsCommandInput}
|
|
62
|
+
* @returns {@link ListAcmeExternalAccountBindingsCommandOutput}
|
|
63
|
+
* @see {@link ListAcmeExternalAccountBindingsCommandInput} for command's `input` shape.
|
|
64
|
+
* @see {@link ListAcmeExternalAccountBindingsCommandOutput} 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 ListAcmeExternalAccountBindingsCommand extends ListAcmeExternalAccountBindingsCommand_base {
|
|
89
|
+
/** @internal type navigation helper, not in runtime. */
|
|
90
|
+
protected static __types: {
|
|
91
|
+
api: {
|
|
92
|
+
input: ListAcmeExternalAccountBindingsRequest;
|
|
93
|
+
output: ListAcmeExternalAccountBindingsResponse;
|
|
94
|
+
};
|
|
95
|
+
sdk: {
|
|
96
|
+
input: ListAcmeExternalAccountBindingsCommandInput;
|
|
97
|
+
output: ListAcmeExternalAccountBindingsCommandOutput;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
}
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
|
|
4
2
|
import type { ListCertificatesRequest, ListCertificatesResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,14 +19,12 @@ export interface ListCertificatesCommandInput extends ListCertificatesRequest {
|
|
|
22
19
|
export interface ListCertificatesCommandOutput extends ListCertificatesResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListCertificatesCommand_base: {
|
|
25
|
-
new (input: ListCertificatesCommandInput): import("@smithy/core/client").CommandImpl<ListCertificatesCommandInput, ListCertificatesCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListCertificatesCommandInput]): import("@smithy/core/client").CommandImpl<ListCertificatesCommandInput, ListCertificatesCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListCertificatesCommandInput): import("@smithy/core/client").CommandImpl<ListCertificatesCommandInput, ListCertificatesCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListCertificatesCommandInput]): import("@smithy/core/client").CommandImpl<ListCertificatesCommandInput, ListCertificatesCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
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>
|
|
27
|
+
* <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
28
|
* @example
|
|
34
29
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
30
|
* ```javascript
|
|
@@ -42,6 +37,9 @@ declare const ListCertificatesCommand_base: {
|
|
|
42
37
|
* CertificateStatuses: [ // CertificateStatuses
|
|
43
38
|
* "PENDING_VALIDATION" || "ISSUED" || "INACTIVE" || "EXPIRED" || "VALIDATION_TIMED_OUT" || "REVOKED" || "FAILED",
|
|
44
39
|
* ],
|
|
40
|
+
* CertificateKeyPairOrigins: [ // CertificateKeyPairOrigins
|
|
41
|
+
* "AWS_MANAGED" || "ACME" || "CUSTOMER_PROVIDED",
|
|
42
|
+
* ],
|
|
45
43
|
* Includes: { // Filters
|
|
46
44
|
* extendedKeyUsage: [ // ExtendedKeyUsageFilterList
|
|
47
45
|
* "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 +90,7 @@ declare const ListCertificatesCommand_base: {
|
|
|
92
90
|
* // ImportedAt: new Date("TIMESTAMP"),
|
|
93
91
|
* // RevokedAt: new Date("TIMESTAMP"),
|
|
94
92
|
* // ManagedBy: "CLOUDFRONT",
|
|
93
|
+
* // CertificateKeyPairOrigin: "AWS_MANAGED" || "ACME" || "CUSTOMER_PROVIDED",
|
|
95
94
|
* // },
|
|
96
95
|
* // ],
|
|
97
96
|
* // };
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import type { ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ACMClient";
|
|
4
2
|
import type { ListTagsForCertificateRequest, ListTagsForCertificateResponse } from "../models/models_0";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,14 +19,12 @@ export interface ListTagsForCertificateCommandInput extends ListTagsForCertifica
|
|
|
22
19
|
export interface ListTagsForCertificateCommandOutput extends ListTagsForCertificateResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListTagsForCertificateCommand_base: {
|
|
25
|
-
new (input: ListTagsForCertificateCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForCertificateCommandInput, ListTagsForCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ListTagsForCertificateCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForCertificateCommandInput, ListTagsForCertificateCommandOutput, ACMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListTagsForCertificateCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForCertificateCommandInput, ListTagsForCertificateCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListTagsForCertificateCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForCertificateCommandInput, ListTagsForCertificateCommandOutput, import("..").ACMClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
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>
|
|
27
|
+
* <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
28
|
* @example
|
|
34
29
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
30
|
* ```javascript
|
|
@@ -66,6 +61,9 @@ declare const ListTagsForCertificateCommand_base: {
|
|
|
66
61
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
67
62
|
* <p>The specified certificate cannot be found in the caller's account or the caller's account cannot be found.</p>
|
|
68
63
|
*
|
|
64
|
+
* @throws {@link ValidationException} (client fault)
|
|
65
|
+
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
66
|
+
*
|
|
69
67
|
* @throws {@link ACMServiceException}
|
|
70
68
|
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
71
69
|
*
|