@aws-sdk/client-acm 3.321.1 → 3.326.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/dist-types/commands/AddTagsToCertificateCommand.d.ts +4 -0
- package/dist-types/commands/DeleteCertificateCommand.d.ts +4 -0
- package/dist-types/commands/DescribeCertificateCommand.d.ts +83 -0
- package/dist-types/commands/ExportCertificateCommand.d.ts +8 -0
- package/dist-types/commands/GetAccountConfigurationCommand.d.ts +8 -0
- package/dist-types/commands/GetCertificateCommand.d.ts +7 -0
- package/dist-types/commands/ImportCertificateCommand.d.ts +6 -0
- package/dist-types/commands/ListCertificatesCommand.d.ts +34 -0
- package/dist-types/commands/ListTagsForCertificateCommand.d.ts +11 -0
- package/dist-types/commands/PutAccountConfigurationCommand.d.ts +4 -0
- package/dist-types/commands/RemoveTagsFromCertificateCommand.d.ts +4 -0
- package/dist-types/commands/RenewCertificateCommand.d.ts +4 -0
- package/dist-types/commands/RequestCertificateCommand.d.ts +6 -0
- package/dist-types/commands/ResendValidationEmailCommand.d.ts +4 -0
- package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +4 -0
- package/package.json +16 -16
|
@@ -50,6 +50,8 @@ export interface AddTagsToCertificateCommandOutput extends __MetadataBearer {
|
|
|
50
50
|
* };
|
|
51
51
|
* const command = new AddTagsToCertificateCommand(input);
|
|
52
52
|
* const response = await client.send(command);
|
|
53
|
+
* // {};
|
|
54
|
+
*
|
|
53
55
|
* ```
|
|
54
56
|
*
|
|
55
57
|
* @param AddTagsToCertificateCommandInput - {@link AddTagsToCertificateCommandInput}
|
|
@@ -81,6 +83,8 @@ export interface AddTagsToCertificateCommandOutput extends __MetadataBearer {
|
|
|
81
83
|
* @throws {@link TooManyTagsException} (client fault)
|
|
82
84
|
* <p>The request contains too many tags. Try the request again with fewer tags.</p>
|
|
83
85
|
*
|
|
86
|
+
* @throws {@link ACMServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
84
88
|
*
|
|
85
89
|
*/
|
|
86
90
|
export declare class AddTagsToCertificateCommand extends $Command<AddTagsToCertificateCommandInput, AddTagsToCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
@@ -38,6 +38,8 @@ export interface DeleteCertificateCommandOutput extends __MetadataBearer {
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new DeleteCertificateCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // {};
|
|
42
|
+
*
|
|
41
43
|
* ```
|
|
42
44
|
*
|
|
43
45
|
* @param DeleteCertificateCommandInput - {@link DeleteCertificateCommandInput}
|
|
@@ -67,6 +69,8 @@ export interface DeleteCertificateCommandOutput extends __MetadataBearer {
|
|
|
67
69
|
* @throws {@link ThrottlingException} (client fault)
|
|
68
70
|
* <p>The request was denied because it exceeded a quota.</p>
|
|
69
71
|
*
|
|
72
|
+
* @throws {@link ACMServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
70
74
|
*
|
|
71
75
|
*/
|
|
72
76
|
export declare class DeleteCertificateCommand extends $Command<DeleteCertificateCommandInput, DeleteCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
@@ -33,6 +33,87 @@ export interface DescribeCertificateCommandOutput extends DescribeCertificateRes
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DescribeCertificateCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DescribeCertificateResponse
|
|
37
|
+
* // Certificate: { // CertificateDetail
|
|
38
|
+
* // CertificateArn: "STRING_VALUE",
|
|
39
|
+
* // DomainName: "STRING_VALUE",
|
|
40
|
+
* // SubjectAlternativeNames: [ // DomainList
|
|
41
|
+
* // "STRING_VALUE",
|
|
42
|
+
* // ],
|
|
43
|
+
* // DomainValidationOptions: [ // DomainValidationList
|
|
44
|
+
* // { // DomainValidation
|
|
45
|
+
* // DomainName: "STRING_VALUE", // required
|
|
46
|
+
* // ValidationEmails: [ // ValidationEmailList
|
|
47
|
+
* // "STRING_VALUE",
|
|
48
|
+
* // ],
|
|
49
|
+
* // ValidationDomain: "STRING_VALUE",
|
|
50
|
+
* // ValidationStatus: "PENDING_VALIDATION" || "SUCCESS" || "FAILED",
|
|
51
|
+
* // ResourceRecord: { // ResourceRecord
|
|
52
|
+
* // Name: "STRING_VALUE", // required
|
|
53
|
+
* // Type: "CNAME", // required
|
|
54
|
+
* // Value: "STRING_VALUE", // required
|
|
55
|
+
* // },
|
|
56
|
+
* // ValidationMethod: "EMAIL" || "DNS",
|
|
57
|
+
* // },
|
|
58
|
+
* // ],
|
|
59
|
+
* // Serial: "STRING_VALUE",
|
|
60
|
+
* // Subject: "STRING_VALUE",
|
|
61
|
+
* // Issuer: "STRING_VALUE",
|
|
62
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
63
|
+
* // IssuedAt: new Date("TIMESTAMP"),
|
|
64
|
+
* // ImportedAt: new Date("TIMESTAMP"),
|
|
65
|
+
* // Status: "PENDING_VALIDATION" || "ISSUED" || "INACTIVE" || "EXPIRED" || "VALIDATION_TIMED_OUT" || "REVOKED" || "FAILED",
|
|
66
|
+
* // RevokedAt: new Date("TIMESTAMP"),
|
|
67
|
+
* // RevocationReason: "UNSPECIFIED" || "KEY_COMPROMISE" || "CA_COMPROMISE" || "AFFILIATION_CHANGED" || "SUPERCEDED" || "CESSATION_OF_OPERATION" || "CERTIFICATE_HOLD" || "REMOVE_FROM_CRL" || "PRIVILEGE_WITHDRAWN" || "A_A_COMPROMISE",
|
|
68
|
+
* // NotBefore: new Date("TIMESTAMP"),
|
|
69
|
+
* // NotAfter: new Date("TIMESTAMP"),
|
|
70
|
+
* // KeyAlgorithm: "RSA_1024" || "RSA_2048" || "RSA_3072" || "RSA_4096" || "EC_prime256v1" || "EC_secp384r1" || "EC_secp521r1",
|
|
71
|
+
* // SignatureAlgorithm: "STRING_VALUE",
|
|
72
|
+
* // InUseBy: [ // InUseList
|
|
73
|
+
* // "STRING_VALUE",
|
|
74
|
+
* // ],
|
|
75
|
+
* // FailureReason: "NO_AVAILABLE_CONTACTS" || "ADDITIONAL_VERIFICATION_REQUIRED" || "DOMAIN_NOT_ALLOWED" || "INVALID_PUBLIC_DOMAIN" || "DOMAIN_VALIDATION_DENIED" || "CAA_ERROR" || "PCA_LIMIT_EXCEEDED" || "PCA_INVALID_ARN" || "PCA_INVALID_STATE" || "PCA_REQUEST_FAILED" || "PCA_NAME_CONSTRAINTS_VALIDATION" || "PCA_RESOURCE_NOT_FOUND" || "PCA_INVALID_ARGS" || "PCA_INVALID_DURATION" || "PCA_ACCESS_DENIED" || "SLR_NOT_FOUND" || "OTHER",
|
|
76
|
+
* // Type: "IMPORTED" || "AMAZON_ISSUED" || "PRIVATE",
|
|
77
|
+
* // RenewalSummary: { // RenewalSummary
|
|
78
|
+
* // RenewalStatus: "PENDING_AUTO_RENEWAL" || "PENDING_VALIDATION" || "SUCCESS" || "FAILED", // required
|
|
79
|
+
* // DomainValidationOptions: [ // required
|
|
80
|
+
* // {
|
|
81
|
+
* // DomainName: "STRING_VALUE", // required
|
|
82
|
+
* // ValidationEmails: [
|
|
83
|
+
* // "STRING_VALUE",
|
|
84
|
+
* // ],
|
|
85
|
+
* // ValidationDomain: "STRING_VALUE",
|
|
86
|
+
* // ValidationStatus: "PENDING_VALIDATION" || "SUCCESS" || "FAILED",
|
|
87
|
+
* // ResourceRecord: {
|
|
88
|
+
* // Name: "STRING_VALUE", // required
|
|
89
|
+
* // Type: "CNAME", // required
|
|
90
|
+
* // Value: "STRING_VALUE", // required
|
|
91
|
+
* // },
|
|
92
|
+
* // ValidationMethod: "EMAIL" || "DNS",
|
|
93
|
+
* // },
|
|
94
|
+
* // ],
|
|
95
|
+
* // RenewalStatusReason: "NO_AVAILABLE_CONTACTS" || "ADDITIONAL_VERIFICATION_REQUIRED" || "DOMAIN_NOT_ALLOWED" || "INVALID_PUBLIC_DOMAIN" || "DOMAIN_VALIDATION_DENIED" || "CAA_ERROR" || "PCA_LIMIT_EXCEEDED" || "PCA_INVALID_ARN" || "PCA_INVALID_STATE" || "PCA_REQUEST_FAILED" || "PCA_NAME_CONSTRAINTS_VALIDATION" || "PCA_RESOURCE_NOT_FOUND" || "PCA_INVALID_ARGS" || "PCA_INVALID_DURATION" || "PCA_ACCESS_DENIED" || "SLR_NOT_FOUND" || "OTHER",
|
|
96
|
+
* // UpdatedAt: new Date("TIMESTAMP"), // required
|
|
97
|
+
* // },
|
|
98
|
+
* // KeyUsages: [ // KeyUsageList
|
|
99
|
+
* // { // KeyUsage
|
|
100
|
+
* // Name: "DIGITAL_SIGNATURE" || "NON_REPUDIATION" || "KEY_ENCIPHERMENT" || "DATA_ENCIPHERMENT" || "KEY_AGREEMENT" || "CERTIFICATE_SIGNING" || "CRL_SIGNING" || "ENCIPHER_ONLY" || "DECIPHER_ONLY" || "ANY" || "CUSTOM",
|
|
101
|
+
* // },
|
|
102
|
+
* // ],
|
|
103
|
+
* // ExtendedKeyUsages: [ // ExtendedKeyUsageList
|
|
104
|
+
* // { // ExtendedKeyUsage
|
|
105
|
+
* // Name: "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",
|
|
106
|
+
* // OID: "STRING_VALUE",
|
|
107
|
+
* // },
|
|
108
|
+
* // ],
|
|
109
|
+
* // CertificateAuthorityArn: "STRING_VALUE",
|
|
110
|
+
* // RenewalEligibility: "ELIGIBLE" || "INELIGIBLE",
|
|
111
|
+
* // Options: { // CertificateOptions
|
|
112
|
+
* // CertificateTransparencyLoggingPreference: "ENABLED" || "DISABLED",
|
|
113
|
+
* // },
|
|
114
|
+
* // },
|
|
115
|
+
* // };
|
|
116
|
+
*
|
|
36
117
|
* ```
|
|
37
118
|
*
|
|
38
119
|
* @param DescribeCertificateCommandInput - {@link DescribeCertificateCommandInput}
|
|
@@ -48,6 +129,8 @@ export interface DescribeCertificateCommandOutput extends DescribeCertificateRes
|
|
|
48
129
|
* <p>The specified certificate cannot be found in the caller's account or the caller's account
|
|
49
130
|
* cannot be found.</p>
|
|
50
131
|
*
|
|
132
|
+
* @throws {@link ACMServiceException}
|
|
133
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
51
134
|
*
|
|
52
135
|
*/
|
|
53
136
|
export declare class DescribeCertificateCommand extends $Command<DescribeCertificateCommandInput, DescribeCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
@@ -38,6 +38,12 @@ export interface ExportCertificateCommandOutput extends ExportCertificateRespons
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new ExportCertificateCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // ExportCertificateResponse
|
|
42
|
+
* // Certificate: "STRING_VALUE",
|
|
43
|
+
* // CertificateChain: "STRING_VALUE",
|
|
44
|
+
* // PrivateKey: "STRING_VALUE",
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
41
47
|
* ```
|
|
42
48
|
*
|
|
43
49
|
* @param ExportCertificateCommandInput - {@link ExportCertificateCommandInput}
|
|
@@ -57,6 +63,8 @@ export interface ExportCertificateCommandOutput extends ExportCertificateRespons
|
|
|
57
63
|
* <p>The specified certificate cannot be found in the caller's account or the caller's account
|
|
58
64
|
* cannot be found.</p>
|
|
59
65
|
*
|
|
66
|
+
* @throws {@link ACMServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
60
68
|
*
|
|
61
69
|
*/
|
|
62
70
|
export declare class ExportCertificateCommand extends $Command<ExportCertificateCommandInput, ExportCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
@@ -29,6 +29,12 @@ export interface GetAccountConfigurationCommandOutput extends GetAccountConfigur
|
|
|
29
29
|
* const input = {};
|
|
30
30
|
* const command = new GetAccountConfigurationCommand(input);
|
|
31
31
|
* const response = await client.send(command);
|
|
32
|
+
* // { // GetAccountConfigurationResponse
|
|
33
|
+
* // ExpiryEvents: { // ExpiryEventsConfiguration
|
|
34
|
+
* // DaysBeforeExpiry: Number("int"),
|
|
35
|
+
* // },
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
32
38
|
* ```
|
|
33
39
|
*
|
|
34
40
|
* @param GetAccountConfigurationCommandInput - {@link GetAccountConfigurationCommandInput}
|
|
@@ -43,6 +49,8 @@ export interface GetAccountConfigurationCommandOutput extends GetAccountConfigur
|
|
|
43
49
|
* @throws {@link ThrottlingException} (client fault)
|
|
44
50
|
* <p>The request was denied because it exceeded a quota.</p>
|
|
45
51
|
*
|
|
52
|
+
* @throws {@link ACMServiceException}
|
|
53
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
46
54
|
*
|
|
47
55
|
*/
|
|
48
56
|
export declare class GetAccountConfigurationCommand extends $Command<GetAccountConfigurationCommandInput, GetAccountConfigurationCommandOutput, ACMClientResolvedConfig> {
|
|
@@ -34,6 +34,11 @@ export interface GetCertificateCommandOutput extends GetCertificateResponse, __M
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new GetCertificateCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // GetCertificateResponse
|
|
38
|
+
* // Certificate: "STRING_VALUE",
|
|
39
|
+
* // CertificateChain: "STRING_VALUE",
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
39
44
|
* @param GetCertificateCommandInput - {@link GetCertificateCommandInput}
|
|
@@ -53,6 +58,8 @@ export interface GetCertificateCommandOutput extends GetCertificateResponse, __M
|
|
|
53
58
|
* <p>The specified certificate cannot be found in the caller's account or the caller's account
|
|
54
59
|
* cannot be found.</p>
|
|
55
60
|
*
|
|
61
|
+
* @throws {@link ACMServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
56
63
|
*
|
|
57
64
|
*/
|
|
58
65
|
export declare class GetCertificateCommand extends $Command<GetCertificateCommandInput, GetCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
@@ -107,6 +107,10 @@ export interface ImportCertificateCommandOutput extends ImportCertificateRespons
|
|
|
107
107
|
* };
|
|
108
108
|
* const command = new ImportCertificateCommand(input);
|
|
109
109
|
* const response = await client.send(command);
|
|
110
|
+
* // { // ImportCertificateResponse
|
|
111
|
+
* // CertificateArn: "STRING_VALUE",
|
|
112
|
+
* // };
|
|
113
|
+
*
|
|
110
114
|
* ```
|
|
111
115
|
*
|
|
112
116
|
* @param ImportCertificateCommandInput - {@link ImportCertificateCommandInput}
|
|
@@ -138,6 +142,8 @@ export interface ImportCertificateCommandOutput extends ImportCertificateRespons
|
|
|
138
142
|
* @throws {@link TooManyTagsException} (client fault)
|
|
139
143
|
* <p>The request contains too many tags. Try the request again with fewer tags.</p>
|
|
140
144
|
*
|
|
145
|
+
* @throws {@link ACMServiceException}
|
|
146
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
141
147
|
*
|
|
142
148
|
*/
|
|
143
149
|
export declare class ImportCertificateCommand extends $Command<ImportCertificateCommandInput, ImportCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
@@ -51,6 +51,38 @@ export interface ListCertificatesCommandOutput extends ListCertificatesResponse,
|
|
|
51
51
|
* };
|
|
52
52
|
* const command = new ListCertificatesCommand(input);
|
|
53
53
|
* const response = await client.send(command);
|
|
54
|
+
* // { // ListCertificatesResponse
|
|
55
|
+
* // NextToken: "STRING_VALUE",
|
|
56
|
+
* // CertificateSummaryList: [ // CertificateSummaryList
|
|
57
|
+
* // { // CertificateSummary
|
|
58
|
+
* // CertificateArn: "STRING_VALUE",
|
|
59
|
+
* // DomainName: "STRING_VALUE",
|
|
60
|
+
* // SubjectAlternativeNameSummaries: [ // DomainList
|
|
61
|
+
* // "STRING_VALUE",
|
|
62
|
+
* // ],
|
|
63
|
+
* // HasAdditionalSubjectAlternativeNames: true || false,
|
|
64
|
+
* // Status: "PENDING_VALIDATION" || "ISSUED" || "INACTIVE" || "EXPIRED" || "VALIDATION_TIMED_OUT" || "REVOKED" || "FAILED",
|
|
65
|
+
* // Type: "IMPORTED" || "AMAZON_ISSUED" || "PRIVATE",
|
|
66
|
+
* // KeyAlgorithm: "RSA_1024" || "RSA_2048" || "RSA_3072" || "RSA_4096" || "EC_prime256v1" || "EC_secp384r1" || "EC_secp521r1",
|
|
67
|
+
* // KeyUsages: [ // KeyUsageNames
|
|
68
|
+
* // "DIGITAL_SIGNATURE" || "NON_REPUDIATION" || "KEY_ENCIPHERMENT" || "DATA_ENCIPHERMENT" || "KEY_AGREEMENT" || "CERTIFICATE_SIGNING" || "CRL_SIGNING" || "ENCIPHER_ONLY" || "DECIPHER_ONLY" || "ANY" || "CUSTOM",
|
|
69
|
+
* // ],
|
|
70
|
+
* // ExtendedKeyUsages: [ // ExtendedKeyUsageNames
|
|
71
|
+
* // "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",
|
|
72
|
+
* // ],
|
|
73
|
+
* // InUse: true || false,
|
|
74
|
+
* // Exported: true || false,
|
|
75
|
+
* // RenewalEligibility: "ELIGIBLE" || "INELIGIBLE",
|
|
76
|
+
* // NotBefore: new Date("TIMESTAMP"),
|
|
77
|
+
* // NotAfter: new Date("TIMESTAMP"),
|
|
78
|
+
* // CreatedAt: new Date("TIMESTAMP"),
|
|
79
|
+
* // IssuedAt: new Date("TIMESTAMP"),
|
|
80
|
+
* // ImportedAt: new Date("TIMESTAMP"),
|
|
81
|
+
* // RevokedAt: new Date("TIMESTAMP"),
|
|
82
|
+
* // },
|
|
83
|
+
* // ],
|
|
84
|
+
* // };
|
|
85
|
+
*
|
|
54
86
|
* ```
|
|
55
87
|
*
|
|
56
88
|
* @param ListCertificatesCommandInput - {@link ListCertificatesCommandInput}
|
|
@@ -65,6 +97,8 @@ export interface ListCertificatesCommandOutput extends ListCertificatesResponse,
|
|
|
65
97
|
* @throws {@link ValidationException} (client fault)
|
|
66
98
|
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
67
99
|
*
|
|
100
|
+
* @throws {@link ACMServiceException}
|
|
101
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
68
102
|
*
|
|
69
103
|
*/
|
|
70
104
|
export declare class ListCertificatesCommand extends $Command<ListCertificatesCommandInput, ListCertificatesCommandOutput, ACMClientResolvedConfig> {
|
|
@@ -33,6 +33,15 @@ export interface ListTagsForCertificateCommandOutput extends ListTagsForCertific
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListTagsForCertificateCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListTagsForCertificateResponse
|
|
37
|
+
* // Tags: [ // TagList
|
|
38
|
+
* // { // Tag
|
|
39
|
+
* // Key: "STRING_VALUE", // required
|
|
40
|
+
* // Value: "STRING_VALUE",
|
|
41
|
+
* // },
|
|
42
|
+
* // ],
|
|
43
|
+
* // };
|
|
44
|
+
*
|
|
36
45
|
* ```
|
|
37
46
|
*
|
|
38
47
|
* @param ListTagsForCertificateCommandInput - {@link ListTagsForCertificateCommandInput}
|
|
@@ -48,6 +57,8 @@ export interface ListTagsForCertificateCommandOutput extends ListTagsForCertific
|
|
|
48
57
|
* <p>The specified certificate cannot be found in the caller's account or the caller's account
|
|
49
58
|
* cannot be found.</p>
|
|
50
59
|
*
|
|
60
|
+
* @throws {@link ACMServiceException}
|
|
61
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
51
62
|
*
|
|
52
63
|
*/
|
|
53
64
|
export declare class ListTagsForCertificateCommand extends $Command<ListTagsForCertificateCommandInput, ListTagsForCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
@@ -39,6 +39,8 @@ export interface PutAccountConfigurationCommandOutput extends __MetadataBearer {
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new PutAccountConfigurationCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // {};
|
|
43
|
+
*
|
|
42
44
|
* ```
|
|
43
45
|
*
|
|
44
46
|
* @param PutAccountConfigurationCommandInput - {@link PutAccountConfigurationCommandInput}
|
|
@@ -60,6 +62,8 @@ export interface PutAccountConfigurationCommandOutput extends __MetadataBearer {
|
|
|
60
62
|
* @throws {@link ValidationException} (client fault)
|
|
61
63
|
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
62
64
|
*
|
|
65
|
+
* @throws {@link ACMServiceException}
|
|
66
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
63
67
|
*
|
|
64
68
|
*/
|
|
65
69
|
export declare class PutAccountConfigurationCommand extends $Command<PutAccountConfigurationCommandInput, PutAccountConfigurationCommandOutput, ACMClientResolvedConfig> {
|
|
@@ -42,6 +42,8 @@ export interface RemoveTagsFromCertificateCommandOutput extends __MetadataBearer
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new RemoveTagsFromCertificateCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // {};
|
|
46
|
+
*
|
|
45
47
|
* ```
|
|
46
48
|
*
|
|
47
49
|
* @param RemoveTagsFromCertificateCommandInput - {@link RemoveTagsFromCertificateCommandInput}
|
|
@@ -70,6 +72,8 @@ export interface RemoveTagsFromCertificateCommandOutput extends __MetadataBearer
|
|
|
70
72
|
* @throws {@link ThrottlingException} (client fault)
|
|
71
73
|
* <p>The request was denied because it exceeded a quota.</p>
|
|
72
74
|
*
|
|
75
|
+
* @throws {@link ACMServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
73
77
|
*
|
|
74
78
|
*/
|
|
75
79
|
export declare class RemoveTagsFromCertificateCommand extends $Command<RemoveTagsFromCertificateCommandInput, RemoveTagsFromCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
@@ -35,6 +35,8 @@ export interface RenewCertificateCommandOutput extends __MetadataBearer {
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new RenewCertificateCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // {};
|
|
39
|
+
*
|
|
38
40
|
* ```
|
|
39
41
|
*
|
|
40
42
|
* @param RenewCertificateCommandInput - {@link RenewCertificateCommandInput}
|
|
@@ -50,6 +52,8 @@ export interface RenewCertificateCommandOutput extends __MetadataBearer {
|
|
|
50
52
|
* <p>The specified certificate cannot be found in the caller's account or the caller's account
|
|
51
53
|
* cannot be found.</p>
|
|
52
54
|
*
|
|
55
|
+
* @throws {@link ACMServiceException}
|
|
56
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
53
57
|
*
|
|
54
58
|
*/
|
|
55
59
|
export declare class RenewCertificateCommand extends $Command<RenewCertificateCommandInput, RenewCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
@@ -68,6 +68,10 @@ export interface RequestCertificateCommandOutput extends RequestCertificateRespo
|
|
|
68
68
|
* };
|
|
69
69
|
* const command = new RequestCertificateCommand(input);
|
|
70
70
|
* const response = await client.send(command);
|
|
71
|
+
* // { // RequestCertificateResponse
|
|
72
|
+
* // CertificateArn: "STRING_VALUE",
|
|
73
|
+
* // };
|
|
74
|
+
*
|
|
71
75
|
* ```
|
|
72
76
|
*
|
|
73
77
|
* @param RequestCertificateCommandInput - {@link RequestCertificateCommandInput}
|
|
@@ -99,6 +103,8 @@ export interface RequestCertificateCommandOutput extends RequestCertificateRespo
|
|
|
99
103
|
* @throws {@link TooManyTagsException} (client fault)
|
|
100
104
|
* <p>The request contains too many tags. Try the request again with fewer tags.</p>
|
|
101
105
|
*
|
|
106
|
+
* @throws {@link ACMServiceException}
|
|
107
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
102
108
|
*
|
|
103
109
|
*/
|
|
104
110
|
export declare class RequestCertificateCommand extends $Command<RequestCertificateCommandInput, RequestCertificateCommandOutput, ACMClientResolvedConfig> {
|
|
@@ -41,6 +41,8 @@ export interface ResendValidationEmailCommandOutput extends __MetadataBearer {
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new ResendValidationEmailCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // {};
|
|
45
|
+
*
|
|
44
46
|
* ```
|
|
45
47
|
*
|
|
46
48
|
* @param ResendValidationEmailCommandInput - {@link ResendValidationEmailCommandInput}
|
|
@@ -63,6 +65,8 @@ export interface ResendValidationEmailCommandOutput extends __MetadataBearer {
|
|
|
63
65
|
* <p>The specified certificate cannot be found in the caller's account or the caller's account
|
|
64
66
|
* cannot be found.</p>
|
|
65
67
|
*
|
|
68
|
+
* @throws {@link ACMServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
66
70
|
*
|
|
67
71
|
*/
|
|
68
72
|
export declare class ResendValidationEmailCommand extends $Command<ResendValidationEmailCommandInput, ResendValidationEmailCommandOutput, ACMClientResolvedConfig> {
|
|
@@ -37,6 +37,8 @@ export interface UpdateCertificateOptionsCommandOutput extends __MetadataBearer
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new UpdateCertificateOptionsCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // {};
|
|
41
|
+
*
|
|
40
42
|
* ```
|
|
41
43
|
*
|
|
42
44
|
* @param UpdateCertificateOptionsCommandInput - {@link UpdateCertificateOptionsCommandInput}
|
|
@@ -58,6 +60,8 @@ export interface UpdateCertificateOptionsCommandOutput extends __MetadataBearer
|
|
|
58
60
|
* <p>The specified certificate cannot be found in the caller's account or the caller's account
|
|
59
61
|
* cannot be found.</p>
|
|
60
62
|
*
|
|
63
|
+
* @throws {@link ACMServiceException}
|
|
64
|
+
* <p>Base exception class for all service exceptions from ACM service.</p>
|
|
61
65
|
*
|
|
62
66
|
*/
|
|
63
67
|
export declare class UpdateCertificateOptionsCommand extends $Command<UpdateCertificateOptionsCommandInput, UpdateCertificateOptionsCommandOutput, ACMClientResolvedConfig> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-acm",
|
|
3
3
|
"description": "AWS SDK for JavaScript Acm Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.326.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,33 +21,33 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-serde": "3.
|
|
37
|
-
"@aws-sdk/middleware-signing": "3.
|
|
38
|
-
"@aws-sdk/middleware-stack": "3.
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.325.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.325.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.325.0",
|
|
36
|
+
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
|
+
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
|
+
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.325.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
43
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
+
"@aws-sdk/smithy-client": "3.325.0",
|
|
44
44
|
"@aws-sdk/types": "3.310.0",
|
|
45
45
|
"@aws-sdk/url-parser": "3.310.0",
|
|
46
46
|
"@aws-sdk/util-base64": "3.310.0",
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.310.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.319.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.310.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|