@aws-sdk/client-acm 3.296.0 → 3.297.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/ACM.d.ts +16 -0
- package/dist-types/ACMClient.d.ts +24 -4
- package/dist-types/commands/AddTagsToCertificateCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCertificateCommand.d.ts +16 -0
- package/dist-types/commands/DescribeCertificateCommand.d.ts +16 -0
- package/dist-types/commands/ExportCertificateCommand.d.ts +16 -0
- package/dist-types/commands/GetAccountConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/GetCertificateCommand.d.ts +16 -0
- package/dist-types/commands/ImportCertificateCommand.d.ts +16 -0
- package/dist-types/commands/ListCertificatesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForCertificateCommand.d.ts +16 -0
- package/dist-types/commands/PutAccountConfigurationCommand.d.ts +16 -0
- package/dist-types/commands/RemoveTagsFromCertificateCommand.d.ts +16 -0
- package/dist-types/commands/RenewCertificateCommand.d.ts +16 -0
- package/dist-types/commands/RequestCertificateCommand.d.ts +16 -0
- package/dist-types/commands/ResendValidationEmailCommand.d.ts +16 -0
- package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +16 -0
- package/dist-types/models/ACMServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +139 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListCertificatesPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { ACMServiceException as __BaseException } from "./ACMServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>You do not have access required to perform this action.</p>
|
|
5
6
|
*/
|
|
6
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -13,6 +14,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
13
14
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
15
|
}
|
|
15
16
|
/**
|
|
17
|
+
* @public
|
|
16
18
|
* <p>A key-value pair that identifies or specifies metadata about an ACM resource.</p>
|
|
17
19
|
*/
|
|
18
20
|
export interface Tag {
|
|
@@ -25,6 +27,9 @@ export interface Tag {
|
|
|
25
27
|
*/
|
|
26
28
|
Value?: string;
|
|
27
29
|
}
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
28
33
|
export interface AddTagsToCertificateRequest {
|
|
29
34
|
/**
|
|
30
35
|
* <p>String that contains the ARN of the ACM certificate to which the tag is to be applied.
|
|
@@ -41,6 +46,7 @@ export interface AddTagsToCertificateRequest {
|
|
|
41
46
|
Tags: Tag[] | undefined;
|
|
42
47
|
}
|
|
43
48
|
/**
|
|
49
|
+
* @public
|
|
44
50
|
* <p>The requested Amazon Resource Name (ARN) does not refer to an existing resource.</p>
|
|
45
51
|
*/
|
|
46
52
|
export declare class InvalidArnException extends __BaseException {
|
|
@@ -52,6 +58,7 @@ export declare class InvalidArnException extends __BaseException {
|
|
|
52
58
|
constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
|
|
53
59
|
}
|
|
54
60
|
/**
|
|
61
|
+
* @public
|
|
55
62
|
* <p>An input parameter was invalid.</p>
|
|
56
63
|
*/
|
|
57
64
|
export declare class InvalidParameterException extends __BaseException {
|
|
@@ -63,6 +70,7 @@ export declare class InvalidParameterException extends __BaseException {
|
|
|
63
70
|
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
64
71
|
}
|
|
65
72
|
/**
|
|
73
|
+
* @public
|
|
66
74
|
* <p>One or both of the values that make up the key-value pair is not valid. For example, you
|
|
67
75
|
* cannot specify a tag value that begins with <code>aws:</code>.</p>
|
|
68
76
|
*/
|
|
@@ -75,6 +83,7 @@ export declare class InvalidTagException extends __BaseException {
|
|
|
75
83
|
constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
|
|
76
84
|
}
|
|
77
85
|
/**
|
|
86
|
+
* @public
|
|
78
87
|
* <p>The specified certificate cannot be found in the caller's account or the caller's account
|
|
79
88
|
* cannot be found.</p>
|
|
80
89
|
*/
|
|
@@ -87,6 +96,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
87
96
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
88
97
|
}
|
|
89
98
|
/**
|
|
99
|
+
* @public
|
|
90
100
|
* <p>A specified tag did not comply with an existing tag policy and was rejected.</p>
|
|
91
101
|
*/
|
|
92
102
|
export declare class TagPolicyException extends __BaseException {
|
|
@@ -98,6 +108,7 @@ export declare class TagPolicyException extends __BaseException {
|
|
|
98
108
|
constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
|
|
99
109
|
}
|
|
100
110
|
/**
|
|
111
|
+
* @public
|
|
101
112
|
* <p>The request was denied because it exceeded a quota.</p>
|
|
102
113
|
*/
|
|
103
114
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -109,6 +120,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
109
120
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
110
121
|
}
|
|
111
122
|
/**
|
|
123
|
+
* @public
|
|
112
124
|
* <p>The request contains too many tags. Try the request again with fewer tags.</p>
|
|
113
125
|
*/
|
|
114
126
|
export declare class TooManyTagsException extends __BaseException {
|
|
@@ -119,10 +131,14 @@ export declare class TooManyTagsException extends __BaseException {
|
|
|
119
131
|
*/
|
|
120
132
|
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
121
133
|
}
|
|
134
|
+
/**
|
|
135
|
+
* @public
|
|
136
|
+
*/
|
|
122
137
|
export declare enum RecordType {
|
|
123
138
|
CNAME = "CNAME"
|
|
124
139
|
}
|
|
125
140
|
/**
|
|
141
|
+
* @public
|
|
126
142
|
* <p>Contains a DNS record value that you can use to validate ownership or control of a domain.
|
|
127
143
|
* This is used by the <a>DescribeCertificate</a> action. </p>
|
|
128
144
|
*/
|
|
@@ -141,16 +157,23 @@ export interface ResourceRecord {
|
|
|
141
157
|
*/
|
|
142
158
|
Value: string | undefined;
|
|
143
159
|
}
|
|
160
|
+
/**
|
|
161
|
+
* @public
|
|
162
|
+
*/
|
|
144
163
|
export declare enum ValidationMethod {
|
|
145
164
|
DNS = "DNS",
|
|
146
165
|
EMAIL = "EMAIL"
|
|
147
166
|
}
|
|
167
|
+
/**
|
|
168
|
+
* @public
|
|
169
|
+
*/
|
|
148
170
|
export declare enum DomainStatus {
|
|
149
171
|
FAILED = "FAILED",
|
|
150
172
|
PENDING_VALIDATION = "PENDING_VALIDATION",
|
|
151
173
|
SUCCESS = "SUCCESS"
|
|
152
174
|
}
|
|
153
175
|
/**
|
|
176
|
+
* @public
|
|
154
177
|
* <p>Contains information about the validation of each domain name in the certificate.</p>
|
|
155
178
|
*/
|
|
156
179
|
export interface DomainValidation {
|
|
@@ -202,6 +225,9 @@ export interface DomainValidation {
|
|
|
202
225
|
*/
|
|
203
226
|
ValidationMethod?: ValidationMethod | string;
|
|
204
227
|
}
|
|
228
|
+
/**
|
|
229
|
+
* @public
|
|
230
|
+
*/
|
|
205
231
|
export declare enum ExtendedKeyUsageName {
|
|
206
232
|
ANY = "ANY",
|
|
207
233
|
CODE_SIGNING = "CODE_SIGNING",
|
|
@@ -217,6 +243,7 @@ export declare enum ExtendedKeyUsageName {
|
|
|
217
243
|
TLS_WEB_SERVER_AUTHENTICATION = "TLS_WEB_SERVER_AUTHENTICATION"
|
|
218
244
|
}
|
|
219
245
|
/**
|
|
246
|
+
* @public
|
|
220
247
|
* <p>The Extended Key Usage X.509 v3 extension defines one or more purposes for which the
|
|
221
248
|
* public key can be used. This is in addition to or in place of the basic purposes specified by
|
|
222
249
|
* the Key Usage extension. </p>
|
|
@@ -279,6 +306,9 @@ export interface ExtendedKeyUsage {
|
|
|
279
306
|
*/
|
|
280
307
|
OID?: string;
|
|
281
308
|
}
|
|
309
|
+
/**
|
|
310
|
+
* @public
|
|
311
|
+
*/
|
|
282
312
|
export declare enum FailureReason {
|
|
283
313
|
ADDITIONAL_VERIFICATION_REQUIRED = "ADDITIONAL_VERIFICATION_REQUIRED",
|
|
284
314
|
CAA_ERROR = "CAA_ERROR",
|
|
@@ -298,6 +328,9 @@ export declare enum FailureReason {
|
|
|
298
328
|
PCA_RESOURCE_NOT_FOUND = "PCA_RESOURCE_NOT_FOUND",
|
|
299
329
|
SLR_NOT_FOUND = "SLR_NOT_FOUND"
|
|
300
330
|
}
|
|
331
|
+
/**
|
|
332
|
+
* @public
|
|
333
|
+
*/
|
|
301
334
|
export declare enum KeyAlgorithm {
|
|
302
335
|
EC_prime256v1 = "EC_prime256v1",
|
|
303
336
|
EC_secp384r1 = "EC_secp384r1",
|
|
@@ -307,6 +340,9 @@ export declare enum KeyAlgorithm {
|
|
|
307
340
|
RSA_3072 = "RSA_3072",
|
|
308
341
|
RSA_4096 = "RSA_4096"
|
|
309
342
|
}
|
|
343
|
+
/**
|
|
344
|
+
* @public
|
|
345
|
+
*/
|
|
310
346
|
export declare enum KeyUsageName {
|
|
311
347
|
ANY = "ANY",
|
|
312
348
|
CERTIFICATE_SIGNING = "CERTIFICATE_SIGNING",
|
|
@@ -321,6 +357,7 @@ export declare enum KeyUsageName {
|
|
|
321
357
|
NON_REPUDATION = "NON_REPUDIATION"
|
|
322
358
|
}
|
|
323
359
|
/**
|
|
360
|
+
* @public
|
|
324
361
|
* <p>The Key Usage X.509 v3 extension defines the purpose of the public key contained in the
|
|
325
362
|
* certificate.</p>
|
|
326
363
|
*/
|
|
@@ -330,11 +367,15 @@ export interface KeyUsage {
|
|
|
330
367
|
*/
|
|
331
368
|
Name?: KeyUsageName | string;
|
|
332
369
|
}
|
|
370
|
+
/**
|
|
371
|
+
* @public
|
|
372
|
+
*/
|
|
333
373
|
export declare enum CertificateTransparencyLoggingPreference {
|
|
334
374
|
DISABLED = "DISABLED",
|
|
335
375
|
ENABLED = "ENABLED"
|
|
336
376
|
}
|
|
337
377
|
/**
|
|
378
|
+
* @public
|
|
338
379
|
* <p>Structure that contains options for your certificate. Currently, you can use this only to
|
|
339
380
|
* specify whether to opt in to or out of certificate transparency logging. Some browsers require
|
|
340
381
|
* that public certificates issued for your domain be recorded in a log. Certificates that are
|
|
@@ -350,10 +391,16 @@ export interface CertificateOptions {
|
|
|
350
391
|
*/
|
|
351
392
|
CertificateTransparencyLoggingPreference?: CertificateTransparencyLoggingPreference | string;
|
|
352
393
|
}
|
|
394
|
+
/**
|
|
395
|
+
* @public
|
|
396
|
+
*/
|
|
353
397
|
export declare enum RenewalEligibility {
|
|
354
398
|
ELIGIBLE = "ELIGIBLE",
|
|
355
399
|
INELIGIBLE = "INELIGIBLE"
|
|
356
400
|
}
|
|
401
|
+
/**
|
|
402
|
+
* @public
|
|
403
|
+
*/
|
|
357
404
|
export declare enum RenewalStatus {
|
|
358
405
|
FAILED = "FAILED",
|
|
359
406
|
PENDING_AUTO_RENEWAL = "PENDING_AUTO_RENEWAL",
|
|
@@ -361,6 +408,7 @@ export declare enum RenewalStatus {
|
|
|
361
408
|
SUCCESS = "SUCCESS"
|
|
362
409
|
}
|
|
363
410
|
/**
|
|
411
|
+
* @public
|
|
364
412
|
* <p>Contains information about the status of ACM's <a href="https://docs.aws.amazon.com/acm/latest/userguide/acm-renewal.html">managed renewal</a> for the certificate. This
|
|
365
413
|
* structure exists only when the certificate type is <code>AMAZON_ISSUED</code>.</p>
|
|
366
414
|
*/
|
|
@@ -386,6 +434,9 @@ export interface RenewalSummary {
|
|
|
386
434
|
*/
|
|
387
435
|
UpdatedAt: Date | undefined;
|
|
388
436
|
}
|
|
437
|
+
/**
|
|
438
|
+
* @public
|
|
439
|
+
*/
|
|
389
440
|
export declare enum RevocationReason {
|
|
390
441
|
AFFILIATION_CHANGED = "AFFILIATION_CHANGED",
|
|
391
442
|
A_A_COMPROMISE = "A_A_COMPROMISE",
|
|
@@ -398,6 +449,9 @@ export declare enum RevocationReason {
|
|
|
398
449
|
SUPERCEDED = "SUPERCEDED",
|
|
399
450
|
UNSPECIFIED = "UNSPECIFIED"
|
|
400
451
|
}
|
|
452
|
+
/**
|
|
453
|
+
* @public
|
|
454
|
+
*/
|
|
401
455
|
export declare enum CertificateStatus {
|
|
402
456
|
EXPIRED = "EXPIRED",
|
|
403
457
|
FAILED = "FAILED",
|
|
@@ -407,12 +461,16 @@ export declare enum CertificateStatus {
|
|
|
407
461
|
REVOKED = "REVOKED",
|
|
408
462
|
VALIDATION_TIMED_OUT = "VALIDATION_TIMED_OUT"
|
|
409
463
|
}
|
|
464
|
+
/**
|
|
465
|
+
* @public
|
|
466
|
+
*/
|
|
410
467
|
export declare enum CertificateType {
|
|
411
468
|
AMAZON_ISSUED = "AMAZON_ISSUED",
|
|
412
469
|
IMPORTED = "IMPORTED",
|
|
413
470
|
PRIVATE = "PRIVATE"
|
|
414
471
|
}
|
|
415
472
|
/**
|
|
473
|
+
* @public
|
|
416
474
|
* <p>Contains metadata about an ACM certificate. This structure is returned in the response
|
|
417
475
|
* to a <a>DescribeCertificate</a> request. </p>
|
|
418
476
|
*/
|
|
@@ -564,6 +622,7 @@ export interface CertificateDetail {
|
|
|
564
622
|
Options?: CertificateOptions;
|
|
565
623
|
}
|
|
566
624
|
/**
|
|
625
|
+
* @public
|
|
567
626
|
* <p>You are trying to update a resource or configuration that is already being created or
|
|
568
627
|
* updated. Wait for the previous operation to finish and try again.</p>
|
|
569
628
|
*/
|
|
@@ -575,6 +634,9 @@ export declare class ConflictException extends __BaseException {
|
|
|
575
634
|
*/
|
|
576
635
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
577
636
|
}
|
|
637
|
+
/**
|
|
638
|
+
* @public
|
|
639
|
+
*/
|
|
578
640
|
export interface DeleteCertificateRequest {
|
|
579
641
|
/**
|
|
580
642
|
* <p>String that contains the ARN of the ACM certificate to be deleted. This must be of the
|
|
@@ -587,6 +649,7 @@ export interface DeleteCertificateRequest {
|
|
|
587
649
|
CertificateArn: string | undefined;
|
|
588
650
|
}
|
|
589
651
|
/**
|
|
652
|
+
* @public
|
|
590
653
|
* <p>The certificate is in use by another Amazon Web Services service in the caller's account. Remove the
|
|
591
654
|
* association and try again.</p>
|
|
592
655
|
*/
|
|
@@ -598,6 +661,9 @@ export declare class ResourceInUseException extends __BaseException {
|
|
|
598
661
|
*/
|
|
599
662
|
constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
|
|
600
663
|
}
|
|
664
|
+
/**
|
|
665
|
+
* @public
|
|
666
|
+
*/
|
|
601
667
|
export interface DescribeCertificateRequest {
|
|
602
668
|
/**
|
|
603
669
|
* <p>The Amazon Resource Name (ARN) of the ACM certificate. The ARN must have the following
|
|
@@ -609,12 +675,18 @@ export interface DescribeCertificateRequest {
|
|
|
609
675
|
*/
|
|
610
676
|
CertificateArn: string | undefined;
|
|
611
677
|
}
|
|
678
|
+
/**
|
|
679
|
+
* @public
|
|
680
|
+
*/
|
|
612
681
|
export interface DescribeCertificateResponse {
|
|
613
682
|
/**
|
|
614
683
|
* <p>Metadata about an ACM certificate.</p>
|
|
615
684
|
*/
|
|
616
685
|
Certificate?: CertificateDetail;
|
|
617
686
|
}
|
|
687
|
+
/**
|
|
688
|
+
* @public
|
|
689
|
+
*/
|
|
618
690
|
export interface ExportCertificateRequest {
|
|
619
691
|
/**
|
|
620
692
|
* <p>An Amazon Resource Name (ARN) of the issued certificate. This must be of the form:</p>
|
|
@@ -637,6 +709,9 @@ export interface ExportCertificateRequest {
|
|
|
637
709
|
*/
|
|
638
710
|
Passphrase: Uint8Array | undefined;
|
|
639
711
|
}
|
|
712
|
+
/**
|
|
713
|
+
* @public
|
|
714
|
+
*/
|
|
640
715
|
export interface ExportCertificateResponse {
|
|
641
716
|
/**
|
|
642
717
|
* <p>The base64 PEM-encoded certificate.</p>
|
|
@@ -654,6 +729,7 @@ export interface ExportCertificateResponse {
|
|
|
654
729
|
PrivateKey?: string;
|
|
655
730
|
}
|
|
656
731
|
/**
|
|
732
|
+
* @public
|
|
657
733
|
* <p>The certificate request is in process and the certificate in your account has not yet been
|
|
658
734
|
* issued.</p>
|
|
659
735
|
*/
|
|
@@ -666,6 +742,7 @@ export declare class RequestInProgressException extends __BaseException {
|
|
|
666
742
|
constructor(opts: __ExceptionOptionType<RequestInProgressException, __BaseException>);
|
|
667
743
|
}
|
|
668
744
|
/**
|
|
745
|
+
* @public
|
|
669
746
|
* <p>Object containing expiration events options associated with an Amazon Web Services account.</p>
|
|
670
747
|
*/
|
|
671
748
|
export interface ExpiryEventsConfiguration {
|
|
@@ -677,12 +754,18 @@ export interface ExpiryEventsConfiguration {
|
|
|
677
754
|
*/
|
|
678
755
|
DaysBeforeExpiry?: number;
|
|
679
756
|
}
|
|
757
|
+
/**
|
|
758
|
+
* @public
|
|
759
|
+
*/
|
|
680
760
|
export interface GetAccountConfigurationResponse {
|
|
681
761
|
/**
|
|
682
762
|
* <p>Expiration events configuration options associated with the Amazon Web Services account.</p>
|
|
683
763
|
*/
|
|
684
764
|
ExpiryEvents?: ExpiryEventsConfiguration;
|
|
685
765
|
}
|
|
766
|
+
/**
|
|
767
|
+
* @public
|
|
768
|
+
*/
|
|
686
769
|
export interface GetCertificateRequest {
|
|
687
770
|
/**
|
|
688
771
|
* <p>String that contains a certificate ARN in the following format:</p>
|
|
@@ -693,6 +776,9 @@ export interface GetCertificateRequest {
|
|
|
693
776
|
*/
|
|
694
777
|
CertificateArn: string | undefined;
|
|
695
778
|
}
|
|
779
|
+
/**
|
|
780
|
+
* @public
|
|
781
|
+
*/
|
|
696
782
|
export interface GetCertificateResponse {
|
|
697
783
|
/**
|
|
698
784
|
* <p>The ACM-issued certificate corresponding to the ARN specified as input.</p>
|
|
@@ -705,6 +791,9 @@ export interface GetCertificateResponse {
|
|
|
705
791
|
*/
|
|
706
792
|
CertificateChain?: string;
|
|
707
793
|
}
|
|
794
|
+
/**
|
|
795
|
+
* @public
|
|
796
|
+
*/
|
|
708
797
|
export interface ImportCertificateRequest {
|
|
709
798
|
/**
|
|
710
799
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name
|
|
@@ -730,6 +819,9 @@ export interface ImportCertificateRequest {
|
|
|
730
819
|
*/
|
|
731
820
|
Tags?: Tag[];
|
|
732
821
|
}
|
|
822
|
+
/**
|
|
823
|
+
* @public
|
|
824
|
+
*/
|
|
733
825
|
export interface ImportCertificateResponse {
|
|
734
826
|
/**
|
|
735
827
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name
|
|
@@ -738,6 +830,7 @@ export interface ImportCertificateResponse {
|
|
|
738
830
|
CertificateArn?: string;
|
|
739
831
|
}
|
|
740
832
|
/**
|
|
833
|
+
* @public
|
|
741
834
|
* <p>An ACM quota has been exceeded.</p>
|
|
742
835
|
*/
|
|
743
836
|
export declare class LimitExceededException extends __BaseException {
|
|
@@ -749,6 +842,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
749
842
|
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
750
843
|
}
|
|
751
844
|
/**
|
|
845
|
+
* @public
|
|
752
846
|
* <p>One or more of of request parameters specified is not valid.</p>
|
|
753
847
|
*/
|
|
754
848
|
export declare class InvalidArgsException extends __BaseException {
|
|
@@ -760,6 +854,7 @@ export declare class InvalidArgsException extends __BaseException {
|
|
|
760
854
|
constructor(opts: __ExceptionOptionType<InvalidArgsException, __BaseException>);
|
|
761
855
|
}
|
|
762
856
|
/**
|
|
857
|
+
* @public
|
|
763
858
|
* <p>This structure can be used in the <a>ListCertificates</a> action to filter the
|
|
764
859
|
* output of the certificate list. </p>
|
|
765
860
|
*/
|
|
@@ -782,13 +877,22 @@ export interface Filters {
|
|
|
782
877
|
*/
|
|
783
878
|
keyTypes?: (KeyAlgorithm | string)[];
|
|
784
879
|
}
|
|
880
|
+
/**
|
|
881
|
+
* @public
|
|
882
|
+
*/
|
|
785
883
|
export declare enum SortBy {
|
|
786
884
|
CREATED_AT = "CREATED_AT"
|
|
787
885
|
}
|
|
886
|
+
/**
|
|
887
|
+
* @public
|
|
888
|
+
*/
|
|
788
889
|
export declare enum SortOrder {
|
|
789
890
|
ASCENDING = "ASCENDING",
|
|
790
891
|
DESCENDING = "DESCENDING"
|
|
791
892
|
}
|
|
893
|
+
/**
|
|
894
|
+
* @public
|
|
895
|
+
*/
|
|
792
896
|
export interface ListCertificatesRequest {
|
|
793
897
|
/**
|
|
794
898
|
* <p>Filter the certificate list by status value.</p>
|
|
@@ -824,6 +928,7 @@ export interface ListCertificatesRequest {
|
|
|
824
928
|
SortOrder?: SortOrder | string;
|
|
825
929
|
}
|
|
826
930
|
/**
|
|
931
|
+
* @public
|
|
827
932
|
* <p>This structure is returned in the response object of <a>ListCertificates</a>
|
|
828
933
|
* action. </p>
|
|
829
934
|
*/
|
|
@@ -937,6 +1042,9 @@ export interface CertificateSummary {
|
|
|
937
1042
|
*/
|
|
938
1043
|
RevokedAt?: Date;
|
|
939
1044
|
}
|
|
1045
|
+
/**
|
|
1046
|
+
* @public
|
|
1047
|
+
*/
|
|
940
1048
|
export interface ListCertificatesResponse {
|
|
941
1049
|
/**
|
|
942
1050
|
* <p>When the list is truncated, this value is present and contains the value to use for the
|
|
@@ -949,6 +1057,7 @@ export interface ListCertificatesResponse {
|
|
|
949
1057
|
CertificateSummaryList?: CertificateSummary[];
|
|
950
1058
|
}
|
|
951
1059
|
/**
|
|
1060
|
+
* @public
|
|
952
1061
|
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
953
1062
|
*/
|
|
954
1063
|
export declare class ValidationException extends __BaseException {
|
|
@@ -959,6 +1068,9 @@ export declare class ValidationException extends __BaseException {
|
|
|
959
1068
|
*/
|
|
960
1069
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
961
1070
|
}
|
|
1071
|
+
/**
|
|
1072
|
+
* @public
|
|
1073
|
+
*/
|
|
962
1074
|
export interface ListTagsForCertificateRequest {
|
|
963
1075
|
/**
|
|
964
1076
|
* <p>String that contains the ARN of the ACM certificate for which you want to list the tags.
|
|
@@ -970,12 +1082,18 @@ export interface ListTagsForCertificateRequest {
|
|
|
970
1082
|
*/
|
|
971
1083
|
CertificateArn: string | undefined;
|
|
972
1084
|
}
|
|
1085
|
+
/**
|
|
1086
|
+
* @public
|
|
1087
|
+
*/
|
|
973
1088
|
export interface ListTagsForCertificateResponse {
|
|
974
1089
|
/**
|
|
975
1090
|
* <p>The key-value pairs that define the applied tags.</p>
|
|
976
1091
|
*/
|
|
977
1092
|
Tags?: Tag[];
|
|
978
1093
|
}
|
|
1094
|
+
/**
|
|
1095
|
+
* @public
|
|
1096
|
+
*/
|
|
979
1097
|
export interface PutAccountConfigurationRequest {
|
|
980
1098
|
/**
|
|
981
1099
|
* <p>Specifies expiration events associated with an account.</p>
|
|
@@ -990,6 +1108,9 @@ export interface PutAccountConfigurationRequest {
|
|
|
990
1108
|
*/
|
|
991
1109
|
IdempotencyToken: string | undefined;
|
|
992
1110
|
}
|
|
1111
|
+
/**
|
|
1112
|
+
* @public
|
|
1113
|
+
*/
|
|
993
1114
|
export interface RemoveTagsFromCertificateRequest {
|
|
994
1115
|
/**
|
|
995
1116
|
* <p>String that contains the ARN of the ACM Certificate with one or more tags that you want
|
|
@@ -1005,6 +1126,9 @@ export interface RemoveTagsFromCertificateRequest {
|
|
|
1005
1126
|
*/
|
|
1006
1127
|
Tags: Tag[] | undefined;
|
|
1007
1128
|
}
|
|
1129
|
+
/**
|
|
1130
|
+
* @public
|
|
1131
|
+
*/
|
|
1008
1132
|
export interface RenewCertificateRequest {
|
|
1009
1133
|
/**
|
|
1010
1134
|
* <p>String that contains the ARN of the ACM certificate to be renewed. This must be of the
|
|
@@ -1017,6 +1141,7 @@ export interface RenewCertificateRequest {
|
|
|
1017
1141
|
CertificateArn: string | undefined;
|
|
1018
1142
|
}
|
|
1019
1143
|
/**
|
|
1144
|
+
* @public
|
|
1020
1145
|
* <p>One or more values in the <a>DomainValidationOption</a> structure is
|
|
1021
1146
|
* incorrect.</p>
|
|
1022
1147
|
*/
|
|
@@ -1029,6 +1154,7 @@ export declare class InvalidDomainValidationOptionsException extends __BaseExcep
|
|
|
1029
1154
|
constructor(opts: __ExceptionOptionType<InvalidDomainValidationOptionsException, __BaseException>);
|
|
1030
1155
|
}
|
|
1031
1156
|
/**
|
|
1157
|
+
* @public
|
|
1032
1158
|
* <p>Contains information about the domain names that you want ACM to use to send you emails
|
|
1033
1159
|
* that enable you to validate domain ownership.</p>
|
|
1034
1160
|
*/
|
|
@@ -1064,6 +1190,9 @@ export interface DomainValidationOption {
|
|
|
1064
1190
|
*/
|
|
1065
1191
|
ValidationDomain: string | undefined;
|
|
1066
1192
|
}
|
|
1193
|
+
/**
|
|
1194
|
+
* @public
|
|
1195
|
+
*/
|
|
1067
1196
|
export interface RequestCertificateRequest {
|
|
1068
1197
|
/**
|
|
1069
1198
|
* <p>Fully qualified domain name (FQDN), such as www.example.com, that you want to secure with
|
|
@@ -1159,6 +1288,9 @@ export interface RequestCertificateRequest {
|
|
|
1159
1288
|
*/
|
|
1160
1289
|
KeyAlgorithm?: KeyAlgorithm | string;
|
|
1161
1290
|
}
|
|
1291
|
+
/**
|
|
1292
|
+
* @public
|
|
1293
|
+
*/
|
|
1162
1294
|
export interface RequestCertificateResponse {
|
|
1163
1295
|
/**
|
|
1164
1296
|
* <p>String that contains the ARN of the issued certificate. This must be of the form:</p>
|
|
@@ -1169,6 +1301,7 @@ export interface RequestCertificateResponse {
|
|
|
1169
1301
|
CertificateArn?: string;
|
|
1170
1302
|
}
|
|
1171
1303
|
/**
|
|
1304
|
+
* @public
|
|
1172
1305
|
* <p>Processing has reached an invalid state.</p>
|
|
1173
1306
|
*/
|
|
1174
1307
|
export declare class InvalidStateException extends __BaseException {
|
|
@@ -1179,6 +1312,9 @@ export declare class InvalidStateException extends __BaseException {
|
|
|
1179
1312
|
*/
|
|
1180
1313
|
constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
|
|
1181
1314
|
}
|
|
1315
|
+
/**
|
|
1316
|
+
* @public
|
|
1317
|
+
*/
|
|
1182
1318
|
export interface ResendValidationEmailRequest {
|
|
1183
1319
|
/**
|
|
1184
1320
|
* <p>String that contains the ARN of the requested certificate. The certificate ARN is
|
|
@@ -1222,6 +1358,9 @@ export interface ResendValidationEmailRequest {
|
|
|
1222
1358
|
*/
|
|
1223
1359
|
ValidationDomain: string | undefined;
|
|
1224
1360
|
}
|
|
1361
|
+
/**
|
|
1362
|
+
* @public
|
|
1363
|
+
*/
|
|
1225
1364
|
export interface UpdateCertificateOptionsRequest {
|
|
1226
1365
|
/**
|
|
1227
1366
|
* <p>ARN of the requested certificate to update. This must be of the form:</p>
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListCertificatesCommandInput, ListCertificatesCommandOutput } from "../commands/ListCertificatesCommand";
|
|
3
3
|
import { ACMPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListCertificates(config: ACMPaginationConfiguration, input: ListCertificatesCommandInput, ...additionalArguments: any): Paginator<ListCertificatesCommandOutput>;
|
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.297.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",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.296.0",
|