@aws-sdk/client-acm 3.533.0 → 3.540.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.
Files changed (41) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +4 -2
  2. package/dist-cjs/index.js +0 -3
  3. package/dist-es/endpoint/endpointResolver.js +3 -1
  4. package/dist-es/index.js +0 -1
  5. package/dist-types/ACM.d.ts +3 -1
  6. package/dist-types/ACMClient.d.ts +1 -1
  7. package/dist-types/commands/AddTagsToCertificateCommand.d.ts +2 -1
  8. package/dist-types/commands/DeleteCertificateCommand.d.ts +2 -1
  9. package/dist-types/commands/DescribeCertificateCommand.d.ts +2 -1
  10. package/dist-types/commands/ExportCertificateCommand.d.ts +2 -1
  11. package/dist-types/commands/GetAccountConfigurationCommand.d.ts +2 -1
  12. package/dist-types/commands/GetCertificateCommand.d.ts +2 -1
  13. package/dist-types/commands/ImportCertificateCommand.d.ts +2 -1
  14. package/dist-types/commands/ListCertificatesCommand.d.ts +2 -1
  15. package/dist-types/commands/ListTagsForCertificateCommand.d.ts +2 -1
  16. package/dist-types/commands/PutAccountConfigurationCommand.d.ts +2 -1
  17. package/dist-types/commands/RemoveTagsFromCertificateCommand.d.ts +2 -1
  18. package/dist-types/commands/RenewCertificateCommand.d.ts +2 -1
  19. package/dist-types/commands/RequestCertificateCommand.d.ts +2 -1
  20. package/dist-types/commands/ResendValidationEmailCommand.d.ts +2 -1
  21. package/dist-types/commands/UpdateCertificateOptionsCommand.d.ts +2 -1
  22. package/dist-types/index.d.ts +0 -1
  23. package/dist-types/models/models_0.d.ts +147 -147
  24. package/dist-types/ts3.4/ACM.d.ts +2 -0
  25. package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +9 -0
  26. package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +9 -0
  31. package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +9 -0
  32. package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +9 -0
  33. package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +9 -0
  34. package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +9 -0
  35. package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +9 -0
  36. package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +9 -0
  37. package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +9 -0
  38. package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +9 -0
  39. package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.d.ts +9 -0
  40. package/dist-types/ts3.4/index.d.ts +0 -1
  41. package/package.json +41 -41
@@ -1,8 +1,8 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { ACMServiceException as __BaseException } from "./ACMServiceException";
3
3
  /**
4
- * @public
5
4
  * <p>You do not have access required to perform this action.</p>
5
+ * @public
6
6
  */
7
7
  export declare class AccessDeniedException extends __BaseException {
8
8
  readonly name: "AccessDeniedException";
@@ -14,18 +14,18 @@ export declare class AccessDeniedException extends __BaseException {
14
14
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
15
  }
16
16
  /**
17
- * @public
18
17
  * <p>A key-value pair that identifies or specifies metadata about an ACM resource.</p>
18
+ * @public
19
19
  */
20
20
  export interface Tag {
21
21
  /**
22
- * @public
23
22
  * <p>The key of the tag.</p>
23
+ * @public
24
24
  */
25
25
  Key: string | undefined;
26
26
  /**
27
- * @public
28
27
  * <p>The value of the tag.</p>
28
+ * @public
29
29
  */
30
30
  Value?: string;
31
31
  }
@@ -34,24 +34,24 @@ export interface Tag {
34
34
  */
35
35
  export interface AddTagsToCertificateRequest {
36
36
  /**
37
- * @public
38
37
  * <p>String that contains the ARN of the ACM certificate to which the tag is to be applied.
39
38
  * This must be of the form:</p>
40
39
  * <p>
41
40
  * <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
42
41
  * </p>
43
42
  * <p>For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>.</p>
43
+ * @public
44
44
  */
45
45
  CertificateArn: string | undefined;
46
46
  /**
47
- * @public
48
47
  * <p>The key-value pair that defines the tag. The tag value is optional.</p>
48
+ * @public
49
49
  */
50
50
  Tags: Tag[] | undefined;
51
51
  }
52
52
  /**
53
- * @public
54
53
  * <p>The requested Amazon Resource Name (ARN) does not refer to an existing resource.</p>
54
+ * @public
55
55
  */
56
56
  export declare class InvalidArnException extends __BaseException {
57
57
  readonly name: "InvalidArnException";
@@ -62,8 +62,8 @@ export declare class InvalidArnException extends __BaseException {
62
62
  constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
63
63
  }
64
64
  /**
65
- * @public
66
65
  * <p>An input parameter was invalid.</p>
66
+ * @public
67
67
  */
68
68
  export declare class InvalidParameterException extends __BaseException {
69
69
  readonly name: "InvalidParameterException";
@@ -74,9 +74,9 @@ export declare class InvalidParameterException extends __BaseException {
74
74
  constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
75
75
  }
76
76
  /**
77
- * @public
78
77
  * <p>One or both of the values that make up the key-value pair is not valid. For example, you
79
78
  * cannot specify a tag value that begins with <code>aws:</code>.</p>
79
+ * @public
80
80
  */
81
81
  export declare class InvalidTagException extends __BaseException {
82
82
  readonly name: "InvalidTagException";
@@ -87,9 +87,9 @@ export declare class InvalidTagException extends __BaseException {
87
87
  constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
88
88
  }
89
89
  /**
90
- * @public
91
90
  * <p>The specified certificate cannot be found in the caller's account or the caller's account
92
91
  * cannot be found.</p>
92
+ * @public
93
93
  */
94
94
  export declare class ResourceNotFoundException extends __BaseException {
95
95
  readonly name: "ResourceNotFoundException";
@@ -100,8 +100,8 @@ export declare class ResourceNotFoundException extends __BaseException {
100
100
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
101
101
  }
102
102
  /**
103
- * @public
104
103
  * <p>A specified tag did not comply with an existing tag policy and was rejected.</p>
104
+ * @public
105
105
  */
106
106
  export declare class TagPolicyException extends __BaseException {
107
107
  readonly name: "TagPolicyException";
@@ -112,8 +112,8 @@ export declare class TagPolicyException extends __BaseException {
112
112
  constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
113
113
  }
114
114
  /**
115
- * @public
116
115
  * <p>The request was denied because it exceeded a quota.</p>
116
+ * @public
117
117
  */
118
118
  export declare class ThrottlingException extends __BaseException {
119
119
  readonly name: "ThrottlingException";
@@ -124,8 +124,8 @@ export declare class ThrottlingException extends __BaseException {
124
124
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
125
125
  }
126
126
  /**
127
- * @public
128
127
  * <p>The request contains too many tags. Try the request again with fewer tags.</p>
128
+ * @public
129
129
  */
130
130
  export declare class TooManyTagsException extends __BaseException {
131
131
  readonly name: "TooManyTagsException";
@@ -147,25 +147,25 @@ export declare const RecordType: {
147
147
  */
148
148
  export type RecordType = (typeof RecordType)[keyof typeof RecordType];
149
149
  /**
150
- * @public
151
150
  * <p>Contains a DNS record value that you can use to validate ownership or control of a domain.
152
151
  * This is used by the <a>DescribeCertificate</a> action. </p>
152
+ * @public
153
153
  */
154
154
  export interface ResourceRecord {
155
155
  /**
156
- * @public
157
156
  * <p>The name of the DNS record to create in your domain. This is supplied by ACM.</p>
157
+ * @public
158
158
  */
159
159
  Name: string | undefined;
160
160
  /**
161
- * @public
162
161
  * <p>The type of DNS record. Currently this can be <code>CNAME</code>.</p>
162
+ * @public
163
163
  */
164
164
  Type: RecordType | undefined;
165
165
  /**
166
- * @public
167
166
  * <p>The value of the CNAME record to add to your DNS database. This is supplied by
168
167
  * ACM.</p>
168
+ * @public
169
169
  */
170
170
  Value: string | undefined;
171
171
  }
@@ -195,28 +195,27 @@ export declare const DomainStatus: {
195
195
  */
196
196
  export type DomainStatus = (typeof DomainStatus)[keyof typeof DomainStatus];
197
197
  /**
198
- * @public
199
198
  * <p>Contains information about the validation of each domain name in the certificate.</p>
199
+ * @public
200
200
  */
201
201
  export interface DomainValidation {
202
202
  /**
203
- * @public
204
203
  * <p>A fully qualified domain name (FQDN) in the certificate. For example,
205
204
  * <code>www.example.com</code> or <code>example.com</code>. </p>
205
+ * @public
206
206
  */
207
207
  DomainName: string | undefined;
208
208
  /**
209
- * @public
210
209
  * <p>A list of email addresses that ACM used to send domain validation emails.</p>
210
+ * @public
211
211
  */
212
212
  ValidationEmails?: string[];
213
213
  /**
214
- * @public
215
214
  * <p>The domain name that ACM used to send domain validation emails.</p>
215
+ * @public
216
216
  */
217
217
  ValidationDomain?: string;
218
218
  /**
219
- * @public
220
219
  * <p>The validation status of the domain name. This can be one of the following values:</p>
221
220
  * <ul>
222
221
  * <li>
@@ -233,10 +232,10 @@ export interface DomainValidation {
233
232
  * <code></code>FAILED</p>
234
233
  * </li>
235
234
  * </ul>
235
+ * @public
236
236
  */
237
237
  ValidationStatus?: DomainStatus;
238
238
  /**
239
- * @public
240
239
  * <p>Contains the CNAME record that you add to your DNS database for domain validation. For
241
240
  * more information, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-dns.html">Use DNS to Validate Domain Ownership</a>.</p>
242
241
  * <p>Note: The CNAME information that you need does not include the name of your domain. If you
@@ -245,11 +244,12 @@ export interface DomainValidation {
245
244
  For example, if
246
245
  * the name is "_a79865eb4cd1a6ab990a45779b4e0b96.yourdomain.com", only
247
246
  * "_a79865eb4cd1a6ab990a45779b4e0b96" must be used.</p>
247
+ * @public
248
248
  */
249
249
  ResourceRecord?: ResourceRecord;
250
250
  /**
251
- * @public
252
251
  * <p>Specifies the domain validation method.</p>
252
+ * @public
253
253
  */
254
254
  ValidationMethod?: ValidationMethod;
255
255
  }
@@ -276,19 +276,18 @@ export declare const ExtendedKeyUsageName: {
276
276
  */
277
277
  export type ExtendedKeyUsageName = (typeof ExtendedKeyUsageName)[keyof typeof ExtendedKeyUsageName];
278
278
  /**
279
- * @public
280
279
  * <p>The Extended Key Usage X.509 v3 extension defines one or more purposes for which the
281
280
  * public key can be used. This is in addition to or in place of the basic purposes specified by
282
281
  * the Key Usage extension. </p>
282
+ * @public
283
283
  */
284
284
  export interface ExtendedKeyUsage {
285
285
  /**
286
- * @public
287
286
  * <p>The name of an Extended Key Usage value.</p>
287
+ * @public
288
288
  */
289
289
  Name?: ExtendedKeyUsageName;
290
290
  /**
291
- * @public
292
291
  * <p>An object identifier (OID) for the extension value. OIDs are strings of numbers separated
293
292
  * by periods. The following OIDs are defined in RFC 3280 and RFC 5280. </p>
294
293
  * <ul>
@@ -338,6 +337,7 @@ export interface ExtendedKeyUsage {
338
337
  * </p>
339
338
  * </li>
340
339
  * </ul>
340
+ * @public
341
341
  */
342
342
  OID?: string;
343
343
  }
@@ -407,14 +407,14 @@ export declare const KeyUsageName: {
407
407
  */
408
408
  export type KeyUsageName = (typeof KeyUsageName)[keyof typeof KeyUsageName];
409
409
  /**
410
- * @public
411
410
  * <p>The Key Usage X.509 v3 extension defines the purpose of the public key contained in the
412
411
  * certificate.</p>
412
+ * @public
413
413
  */
414
414
  export interface KeyUsage {
415
415
  /**
416
- * @public
417
416
  * <p>A string value that contains a Key Usage extension name.</p>
417
+ * @public
418
418
  */
419
419
  Name?: KeyUsageName;
420
420
  }
@@ -431,7 +431,6 @@ export declare const CertificateTransparencyLoggingPreference: {
431
431
  */
432
432
  export type CertificateTransparencyLoggingPreference = (typeof CertificateTransparencyLoggingPreference)[keyof typeof CertificateTransparencyLoggingPreference];
433
433
  /**
434
- * @public
435
434
  * <p>Structure that contains options for your certificate. Currently, you can use this only to
436
435
  * specify whether to opt in to or out of certificate transparency logging. Some browsers require
437
436
  * that public certificates issued for your domain be recorded in a log. Certificates that are
@@ -439,12 +438,13 @@ export type CertificateTransparencyLoggingPreference = (typeof CertificateTransp
439
438
  * detect SSL/TLS certificates that have been mistakenly or maliciously issued for your domain.
440
439
  * For general information, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency">Certificate Transparency
441
440
  * Logging</a>. </p>
441
+ * @public
442
442
  */
443
443
  export interface CertificateOptions {
444
444
  /**
445
- * @public
446
445
  * <p>You can opt out of certificate transparency logging by specifying the
447
446
  * <code>DISABLED</code> option. Opt in by specifying <code>ENABLED</code>. </p>
447
+ * @public
448
448
  */
449
449
  CertificateTransparencyLoggingPreference?: CertificateTransparencyLoggingPreference;
450
450
  }
@@ -475,33 +475,33 @@ export declare const RenewalStatus: {
475
475
  */
476
476
  export type RenewalStatus = (typeof RenewalStatus)[keyof typeof RenewalStatus];
477
477
  /**
478
- * @public
479
478
  * <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
480
479
  * structure exists only when the certificate type is <code>AMAZON_ISSUED</code>.</p>
480
+ * @public
481
481
  */
482
482
  export interface RenewalSummary {
483
483
  /**
484
- * @public
485
484
  * <p>The status of ACM's <a href="https://docs.aws.amazon.com/acm/latest/userguide/acm-renewal.html">managed renewal</a> of the certificate.</p>
485
+ * @public
486
486
  */
487
487
  RenewalStatus: RenewalStatus | undefined;
488
488
  /**
489
- * @public
490
489
  * <p>Contains information about the validation of each domain name in the certificate, as it
491
490
  * pertains to ACM's <a href="https://docs.aws.amazon.com/acm/latest/userguide/acm-renewal.html">managed
492
491
  * renewal</a>. This is different from the initial validation that occurs as a result of
493
492
  * the <a>RequestCertificate</a> request. This field exists only when the certificate
494
493
  * type is <code>AMAZON_ISSUED</code>.</p>
494
+ * @public
495
495
  */
496
496
  DomainValidationOptions: DomainValidation[] | undefined;
497
497
  /**
498
- * @public
499
498
  * <p>The reason that a renewal request was unsuccessful.</p>
499
+ * @public
500
500
  */
501
501
  RenewalStatusReason?: FailureReason;
502
502
  /**
503
- * @public
504
503
  * <p>The time at which the renewal summary was last updated.</p>
504
+ * @public
505
505
  */
506
506
  UpdatedAt: Date | undefined;
507
507
  }
@@ -556,187 +556,187 @@ export declare const CertificateType: {
556
556
  */
557
557
  export type CertificateType = (typeof CertificateType)[keyof typeof CertificateType];
558
558
  /**
559
- * @public
560
559
  * <p>Contains metadata about an ACM certificate. This structure is returned in the response
561
560
  * to a <a>DescribeCertificate</a> request. </p>
561
+ * @public
562
562
  */
563
563
  export interface CertificateDetail {
564
564
  /**
565
- * @public
566
565
  * <p>The Amazon Resource Name (ARN) of the certificate. For more information about ARNs, see
567
566
  * <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in
568
567
  * the <i>Amazon Web Services General Reference</i>.</p>
568
+ * @public
569
569
  */
570
570
  CertificateArn?: string;
571
571
  /**
572
- * @public
573
572
  * <p>The fully qualified domain name for the certificate, such as www.example.com or
574
573
  * example.com.</p>
574
+ * @public
575
575
  */
576
576
  DomainName?: string;
577
577
  /**
578
- * @public
579
578
  * <p>One or more domain names (subject alternative names)
580
579
  * included in the certificate. This
581
580
  * list contains the domain names that are bound to the public key that is contained in the
582
581
  * certificate. The subject alternative names include the canonical domain name (CN) of the
583
582
  * certificate and additional domain names that can be used to connect to the website. </p>
583
+ * @public
584
584
  */
585
585
  SubjectAlternativeNames?: string[];
586
586
  /**
587
- * @public
588
587
  * <p>Contains information about the initial validation of each domain name that occurs as a
589
588
  * result of the <a>RequestCertificate</a> request. This field exists only when the
590
589
  * certificate type is <code>AMAZON_ISSUED</code>. </p>
590
+ * @public
591
591
  */
592
592
  DomainValidationOptions?: DomainValidation[];
593
593
  /**
594
- * @public
595
594
  * <p>The serial number of the certificate.</p>
595
+ * @public
596
596
  */
597
597
  Serial?: string;
598
598
  /**
599
- * @public
600
599
  * <p>The name of the entity that is associated with the public key contained in the
601
600
  * certificate.</p>
601
+ * @public
602
602
  */
603
603
  Subject?: string;
604
604
  /**
605
- * @public
606
605
  * <p>The name of the certificate authority that issued and signed the certificate.</p>
606
+ * @public
607
607
  */
608
608
  Issuer?: string;
609
609
  /**
610
- * @public
611
610
  * <p>The time at which the certificate was requested.</p>
611
+ * @public
612
612
  */
613
613
  CreatedAt?: Date;
614
614
  /**
615
- * @public
616
615
  * <p>The time at which the certificate was issued. This value exists only when the certificate
617
616
  * type is <code>AMAZON_ISSUED</code>. </p>
617
+ * @public
618
618
  */
619
619
  IssuedAt?: Date;
620
620
  /**
621
- * @public
622
621
  * <p>The date and time when the certificate was imported. This value exists only when the
623
622
  * certificate type is <code>IMPORTED</code>. </p>
623
+ * @public
624
624
  */
625
625
  ImportedAt?: Date;
626
626
  /**
627
- * @public
628
627
  * <p>The status of the certificate.</p>
629
628
  * <p>A certificate enters status PENDING_VALIDATION upon being requested, unless it fails for
630
629
  * any of the reasons given in the troubleshooting topic <a href="https://docs.aws.amazon.com/acm/latest/userguide/troubleshooting-failed.html">Certificate request fails</a>. ACM makes
631
630
  * repeated attempts to validate a certificate for 72 hours and then times out. If a certificate
632
631
  * shows status FAILED or VALIDATION_TIMED_OUT, delete the request, correct the issue with <a href="https://docs.aws.amazon.com/acm/latest/userguide/dns-validation.html">DNS validation</a> or <a href="https://docs.aws.amazon.com/acm/latest/userguide/email-validation.html">Email validation</a>, and
633
632
  * try again. If validation succeeds, the certificate enters status ISSUED. </p>
633
+ * @public
634
634
  */
635
635
  Status?: CertificateStatus;
636
636
  /**
637
- * @public
638
637
  * <p>The time at which the certificate was revoked. This value exists only when the certificate
639
638
  * status is <code>REVOKED</code>. </p>
639
+ * @public
640
640
  */
641
641
  RevokedAt?: Date;
642
642
  /**
643
- * @public
644
643
  * <p>The reason the certificate was revoked. This value exists only when the certificate status
645
644
  * is <code>REVOKED</code>. </p>
645
+ * @public
646
646
  */
647
647
  RevocationReason?: RevocationReason;
648
648
  /**
649
- * @public
650
649
  * <p>The time before which the certificate is not valid.</p>
650
+ * @public
651
651
  */
652
652
  NotBefore?: Date;
653
653
  /**
654
- * @public
655
654
  * <p>The time after which the certificate is not valid.</p>
655
+ * @public
656
656
  */
657
657
  NotAfter?: Date;
658
658
  /**
659
- * @public
660
659
  * <p>The algorithm that was used to generate the public-private key pair.</p>
660
+ * @public
661
661
  */
662
662
  KeyAlgorithm?: KeyAlgorithm;
663
663
  /**
664
- * @public
665
664
  * <p>The algorithm that was used to sign the certificate.</p>
665
+ * @public
666
666
  */
667
667
  SignatureAlgorithm?: string;
668
668
  /**
669
- * @public
670
669
  * <p>A list of ARNs for the Amazon Web Services resources that are using the certificate. A certificate can
671
670
  * be used by multiple Amazon Web Services resources. </p>
671
+ * @public
672
672
  */
673
673
  InUseBy?: string[];
674
674
  /**
675
- * @public
676
675
  * <p>The reason the certificate request failed. This value exists only when the certificate
677
676
  * status is <code>FAILED</code>. For more information, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/troubleshooting.html#troubleshooting-failed">Certificate Request
678
677
  * Failed</a> in the <i>Certificate Manager User Guide</i>. </p>
678
+ * @public
679
679
  */
680
680
  FailureReason?: FailureReason;
681
681
  /**
682
- * @public
683
682
  * <p>The source of the certificate. For certificates provided by ACM, this value is
684
683
  * <code>AMAZON_ISSUED</code>. For certificates that you imported with <a>ImportCertificate</a>, this value is <code>IMPORTED</code>. ACM does not provide
685
684
  * <a href="https://docs.aws.amazon.com/acm/latest/userguide/acm-renewal.html">managed renewal</a> for
686
685
  * imported certificates. For more information about the differences between certificates that
687
686
  * you import and those that ACM provides, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/import-certificate.html">Importing Certificates</a> in the
688
687
  * <i>Certificate Manager User Guide</i>. </p>
688
+ * @public
689
689
  */
690
690
  Type?: CertificateType;
691
691
  /**
692
- * @public
693
692
  * <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 field
694
693
  * exists only when the certificate type is <code>AMAZON_ISSUED</code>.</p>
694
+ * @public
695
695
  */
696
696
  RenewalSummary?: RenewalSummary;
697
697
  /**
698
- * @public
699
698
  * <p>A list of Key Usage X.509 v3 extension objects. Each object is a string value that
700
699
  * identifies the purpose of the public key contained in the certificate. Possible extension
701
700
  * values include DIGITAL_SIGNATURE, KEY_ENCHIPHERMENT, NON_REPUDIATION, and more.</p>
701
+ * @public
702
702
  */
703
703
  KeyUsages?: KeyUsage[];
704
704
  /**
705
- * @public
706
705
  * <p>Contains a list of Extended Key Usage X.509 v3 extension objects. Each object specifies a
707
706
  * purpose for which the certificate public key can be used and consists of a name and an object
708
707
  * identifier (OID). </p>
708
+ * @public
709
709
  */
710
710
  ExtendedKeyUsages?: ExtendedKeyUsage[];
711
711
  /**
712
- * @public
713
712
  * <p>The Amazon Resource Name (ARN) of the private certificate authority (CA) that issued the
714
713
  * certificate. This has the following format: </p>
715
714
  * <p>
716
715
  * <code>arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012</code>
717
716
  * </p>
717
+ * @public
718
718
  */
719
719
  CertificateAuthorityArn?: string;
720
720
  /**
721
- * @public
722
721
  * <p>Specifies whether the certificate is eligible for renewal. At this time, only exported
723
722
  * private certificates can be renewed with the <a>RenewCertificate</a>
724
723
  * command.</p>
724
+ * @public
725
725
  */
726
726
  RenewalEligibility?: RenewalEligibility;
727
727
  /**
728
- * @public
729
728
  * <p>Value that specifies whether to add the certificate to a transparency log. Certificate
730
729
  * transparency makes it possible to detect SSL certificates that have been mistakenly or
731
730
  * maliciously issued. A browser might respond to certificate that has not been logged by showing
732
731
  * an error message. The logs are cryptographically secure. </p>
732
+ * @public
733
733
  */
734
734
  Options?: CertificateOptions;
735
735
  }
736
736
  /**
737
- * @public
738
737
  * <p>You are trying to update a resource or configuration that is already being created or
739
738
  * updated. Wait for the previous operation to finish and try again.</p>
739
+ * @public
740
740
  */
741
741
  export declare class ConflictException extends __BaseException {
742
742
  readonly name: "ConflictException";
@@ -751,20 +751,20 @@ export declare class ConflictException extends __BaseException {
751
751
  */
752
752
  export interface DeleteCertificateRequest {
753
753
  /**
754
- * @public
755
754
  * <p>String that contains the ARN of the ACM certificate to be deleted. This must be of the
756
755
  * form:</p>
757
756
  * <p>
758
757
  * <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
759
758
  * </p>
760
759
  * <p>For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>.</p>
760
+ * @public
761
761
  */
762
762
  CertificateArn: string | undefined;
763
763
  }
764
764
  /**
765
- * @public
766
765
  * <p>The certificate is in use by another Amazon Web Services service in the caller's account. Remove the
767
766
  * association and try again.</p>
767
+ * @public
768
768
  */
769
769
  export declare class ResourceInUseException extends __BaseException {
770
770
  readonly name: "ResourceInUseException";
@@ -779,13 +779,13 @@ export declare class ResourceInUseException extends __BaseException {
779
779
  */
780
780
  export interface DescribeCertificateRequest {
781
781
  /**
782
- * @public
783
782
  * <p>The Amazon Resource Name (ARN) of the ACM certificate. The ARN must have the following
784
783
  * form:</p>
785
784
  * <p>
786
785
  * <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
787
786
  * </p>
788
787
  * <p>For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>.</p>
788
+ * @public
789
789
  */
790
790
  CertificateArn: string | undefined;
791
791
  }
@@ -794,8 +794,8 @@ export interface DescribeCertificateRequest {
794
794
  */
795
795
  export interface DescribeCertificateResponse {
796
796
  /**
797
- * @public
798
797
  * <p>Metadata about an ACM certificate.</p>
798
+ * @public
799
799
  */
800
800
  Certificate?: CertificateDetail;
801
801
  }
@@ -804,15 +804,14 @@ export interface DescribeCertificateResponse {
804
804
  */
805
805
  export interface ExportCertificateRequest {
806
806
  /**
807
- * @public
808
807
  * <p>An Amazon Resource Name (ARN) of the issued certificate. This must be of the form:</p>
809
808
  * <p>
810
809
  * <code>arn:aws:acm:region:account:certificate/12345678-1234-1234-1234-123456789012</code>
811
810
  * </p>
811
+ * @public
812
812
  */
813
813
  CertificateArn: string | undefined;
814
814
  /**
815
- * @public
816
815
  * <p>Passphrase to associate with the encrypted exported private key. </p>
817
816
  * <note>
818
817
  * <p>When creating your passphrase, you can use any ASCII character except #, $, or %.</p>
@@ -823,6 +822,7 @@ export interface ExportCertificateRequest {
823
822
  * <p>
824
823
  * <code>openssl rsa -in encrypted_key.pem -out decrypted_key.pem</code>
825
824
  * </p>
825
+ * @public
826
826
  */
827
827
  Passphrase: Uint8Array | undefined;
828
828
  }
@@ -831,27 +831,27 @@ export interface ExportCertificateRequest {
831
831
  */
832
832
  export interface ExportCertificateResponse {
833
833
  /**
834
- * @public
835
834
  * <p>The base64 PEM-encoded certificate.</p>
835
+ * @public
836
836
  */
837
837
  Certificate?: string;
838
838
  /**
839
- * @public
840
839
  * <p>The base64 PEM-encoded certificate chain. This does not include the certificate that you
841
840
  * are exporting.</p>
841
+ * @public
842
842
  */
843
843
  CertificateChain?: string;
844
844
  /**
845
- * @public
846
845
  * <p>The encrypted private key associated with the public key in the certificate. The key is
847
846
  * output in PKCS #8 format and is base64 PEM-encoded. </p>
847
+ * @public
848
848
  */
849
849
  PrivateKey?: string;
850
850
  }
851
851
  /**
852
- * @public
853
852
  * <p>The certificate request is in process and the certificate in your account has not yet been
854
853
  * issued.</p>
854
+ * @public
855
855
  */
856
856
  export declare class RequestInProgressException extends __BaseException {
857
857
  readonly name: "RequestInProgressException";
@@ -862,16 +862,16 @@ export declare class RequestInProgressException extends __BaseException {
862
862
  constructor(opts: __ExceptionOptionType<RequestInProgressException, __BaseException>);
863
863
  }
864
864
  /**
865
- * @public
866
865
  * <p>Object containing expiration events options associated with an Amazon Web Services account.</p>
866
+ * @public
867
867
  */
868
868
  export interface ExpiryEventsConfiguration {
869
869
  /**
870
- * @public
871
870
  * <p>Specifies the number of days prior to certificate expiration when ACM starts generating
872
871
  * <code>EventBridge</code> events. ACM sends one event per day per certificate until the
873
872
  * certificate expires. By default, accounts receive events starting 45 days before certificate
874
873
  * expiration.</p>
874
+ * @public
875
875
  */
876
876
  DaysBeforeExpiry?: number;
877
877
  }
@@ -880,8 +880,8 @@ export interface ExpiryEventsConfiguration {
880
880
  */
881
881
  export interface GetAccountConfigurationResponse {
882
882
  /**
883
- * @public
884
883
  * <p>Expiration events configuration options associated with the Amazon Web Services account.</p>
884
+ * @public
885
885
  */
886
886
  ExpiryEvents?: ExpiryEventsConfiguration;
887
887
  }
@@ -890,12 +890,12 @@ export interface GetAccountConfigurationResponse {
890
890
  */
891
891
  export interface GetCertificateRequest {
892
892
  /**
893
- * @public
894
893
  * <p>String that contains a certificate ARN in the following format:</p>
895
894
  * <p>
896
895
  * <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
897
896
  * </p>
898
897
  * <p>For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>.</p>
898
+ * @public
899
899
  */
900
900
  CertificateArn: string | undefined;
901
901
  }
@@ -904,15 +904,15 @@ export interface GetCertificateRequest {
904
904
  */
905
905
  export interface GetCertificateResponse {
906
906
  /**
907
- * @public
908
907
  * <p>The ACM-issued certificate corresponding to the ARN specified as input.</p>
908
+ * @public
909
909
  */
910
910
  Certificate?: string;
911
911
  /**
912
- * @public
913
912
  * <p>Certificates forming the requested certificate's chain of trust. The chain consists of the
914
913
  * certificate of the issuing CA and the intermediate certificates of any other subordinate CAs.
915
914
  * </p>
915
+ * @public
916
916
  */
917
917
  CertificateChain?: string;
918
918
  }
@@ -921,31 +921,31 @@ export interface GetCertificateResponse {
921
921
  */
922
922
  export interface ImportCertificateRequest {
923
923
  /**
924
- * @public
925
924
  * <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name
926
925
  * (ARN)</a> of an imported certificate to replace. To import a new certificate, omit this
927
926
  * field. </p>
927
+ * @public
928
928
  */
929
929
  CertificateArn?: string;
930
930
  /**
931
- * @public
932
931
  * <p>The certificate to import.</p>
932
+ * @public
933
933
  */
934
934
  Certificate: Uint8Array | undefined;
935
935
  /**
936
- * @public
937
936
  * <p>The private key that matches the public key in the certificate.</p>
937
+ * @public
938
938
  */
939
939
  PrivateKey: Uint8Array | undefined;
940
940
  /**
941
- * @public
942
941
  * <p>The PEM encoded certificate chain.</p>
942
+ * @public
943
943
  */
944
944
  CertificateChain?: Uint8Array;
945
945
  /**
946
- * @public
947
946
  * <p>One or more resource tags to associate with the imported certificate. </p>
948
947
  * <p>Note: You cannot apply tags when reimporting a certificate.</p>
948
+ * @public
949
949
  */
950
950
  Tags?: Tag[];
951
951
  }
@@ -954,15 +954,15 @@ export interface ImportCertificateRequest {
954
954
  */
955
955
  export interface ImportCertificateResponse {
956
956
  /**
957
- * @public
958
957
  * <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name
959
958
  * (ARN)</a> of the imported certificate.</p>
959
+ * @public
960
960
  */
961
961
  CertificateArn?: string;
962
962
  }
963
963
  /**
964
- * @public
965
964
  * <p>An ACM quota has been exceeded.</p>
965
+ * @public
966
966
  */
967
967
  export declare class LimitExceededException extends __BaseException {
968
968
  readonly name: "LimitExceededException";
@@ -973,8 +973,8 @@ export declare class LimitExceededException extends __BaseException {
973
973
  constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
974
974
  }
975
975
  /**
976
- * @public
977
976
  * <p>One or more of of request parameters specified is not valid.</p>
977
+ * @public
978
978
  */
979
979
  export declare class InvalidArgsException extends __BaseException {
980
980
  readonly name: "InvalidArgsException";
@@ -985,29 +985,29 @@ export declare class InvalidArgsException extends __BaseException {
985
985
  constructor(opts: __ExceptionOptionType<InvalidArgsException, __BaseException>);
986
986
  }
987
987
  /**
988
- * @public
989
988
  * <p>This structure can be used in the <a>ListCertificates</a> action to filter the
990
989
  * output of the certificate list. </p>
990
+ * @public
991
991
  */
992
992
  export interface Filters {
993
993
  /**
994
- * @public
995
994
  * <p>Specify one or more <a>ExtendedKeyUsage</a> extension values.</p>
995
+ * @public
996
996
  */
997
997
  extendedKeyUsage?: ExtendedKeyUsageName[];
998
998
  /**
999
- * @public
1000
999
  * <p>Specify one or more <a>KeyUsage</a> extension values.</p>
1000
+ * @public
1001
1001
  */
1002
1002
  keyUsage?: KeyUsageName[];
1003
1003
  /**
1004
- * @public
1005
1004
  * <p>Specify one or more algorithms that can be used to generate key pairs.</p>
1006
1005
  * <p>Default filtering returns only <code>RSA_1024</code> and <code>RSA_2048</code>
1007
1006
  * certificates that have at least one domain. To return other certificate types, provide the
1008
1007
  * desired type signatures in a comma-separated list. For example, <code>"keyTypes":
1009
1008
  * ["RSA_2048","RSA_4096"]</code> returns both <code>RSA_2048</code> and <code>RSA_4096</code>
1010
1009
  * certificates.</p>
1010
+ * @public
1011
1011
  */
1012
1012
  keyTypes?: KeyAlgorithm[];
1013
1013
  }
@@ -1039,67 +1039,66 @@ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
1039
1039
  */
1040
1040
  export interface ListCertificatesRequest {
1041
1041
  /**
1042
- * @public
1043
1042
  * <p>Filter the certificate list by status value.</p>
1043
+ * @public
1044
1044
  */
1045
1045
  CertificateStatuses?: CertificateStatus[];
1046
1046
  /**
1047
- * @public
1048
1047
  * <p>Filter the certificate list. For more information, see the <a>Filters</a>
1049
1048
  * structure.</p>
1049
+ * @public
1050
1050
  */
1051
1051
  Includes?: Filters;
1052
1052
  /**
1053
- * @public
1054
1053
  * <p>Use this parameter only when paginating results and only in a subsequent request after you
1055
1054
  * receive a response with truncated results. Set it to the value of <code>NextToken</code> from
1056
1055
  * the response you just received.</p>
1056
+ * @public
1057
1057
  */
1058
1058
  NextToken?: string;
1059
1059
  /**
1060
- * @public
1061
1060
  * <p>Use this parameter when paginating results to specify the maximum number of items to
1062
1061
  * return in the response. If additional items exist beyond the number you specify, the
1063
1062
  * <code>NextToken</code> element is sent in the response. Use this <code>NextToken</code>
1064
1063
  * value in a subsequent request to retrieve additional items.</p>
1064
+ * @public
1065
1065
  */
1066
1066
  MaxItems?: number;
1067
1067
  /**
1068
- * @public
1069
1068
  * <p>Specifies the field to sort results by. If you specify <code>SortBy</code>, you must also
1070
1069
  * specify <code>SortOrder</code>.</p>
1070
+ * @public
1071
1071
  */
1072
1072
  SortBy?: SortBy;
1073
1073
  /**
1074
- * @public
1075
1074
  * <p>Specifies the order of sorted results. If you specify <code>SortOrder</code>, you must
1076
1075
  * also specify <code>SortBy</code>.</p>
1076
+ * @public
1077
1077
  */
1078
1078
  SortOrder?: SortOrder;
1079
1079
  }
1080
1080
  /**
1081
- * @public
1082
1081
  * <p>This structure is returned in the response object of <a>ListCertificates</a>
1083
1082
  * action. </p>
1083
+ * @public
1084
1084
  */
1085
1085
  export interface CertificateSummary {
1086
1086
  /**
1087
- * @public
1088
1087
  * <p>Amazon Resource Name (ARN) of the certificate. This is of the form:</p>
1089
1088
  * <p>
1090
1089
  * <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
1091
1090
  * </p>
1092
1091
  * <p>For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>.</p>
1092
+ * @public
1093
1093
  */
1094
1094
  CertificateArn?: string;
1095
1095
  /**
1096
- * @public
1097
1096
  * <p>Fully qualified domain name (FQDN), such as www.example.com or example.com, for the
1098
1097
  * certificate.</p>
1098
+ * @public
1099
1099
  */
1100
1100
  DomainName?: string;
1101
1101
  /**
1102
- * @public
1103
1102
  * <p>One or more domain names (subject alternative names)
1104
1103
  * included in the certificate. This
1105
1104
  * list contains the domain names that are bound to the public key that is contained in the
@@ -1108,105 +1107,106 @@ export interface CertificateSummary {
1108
1107
  * <p>When called by <a href="https://docs.aws.amazon.com/acm/latestAPIReference/API_ListCertificates.html">ListCertificates</a>, this parameter will only return the first 100 subject alternative
1109
1108
  * names included in the certificate. To display the full list of subject alternative names, use
1110
1109
  * <a href="https://docs.aws.amazon.com/acm/latestAPIReference/API_DescribeCertificate.html">DescribeCertificate</a>.</p>
1110
+ * @public
1111
1111
  */
1112
1112
  SubjectAlternativeNameSummaries?: string[];
1113
1113
  /**
1114
- * @public
1115
1114
  * <p>When called by <a href="https://docs.aws.amazon.com/acm/latestAPIReference/API_ListCertificates.html">ListCertificates</a>, indicates whether the full list of subject alternative names has
1116
1115
  * been included in the response. If false, the response includes all of the subject alternative
1117
1116
  * names included in the certificate. If true, the response only includes the first 100 subject
1118
1117
  * alternative names included in the certificate. To display the full list of subject alternative
1119
1118
  * names, use <a href="https://docs.aws.amazon.com/acm/latestAPIReference/API_DescribeCertificate.html">DescribeCertificate</a>.</p>
1119
+ * @public
1120
1120
  */
1121
1121
  HasAdditionalSubjectAlternativeNames?: boolean;
1122
1122
  /**
1123
- * @public
1124
1123
  * <p>The status of the certificate.</p>
1125
1124
  * <p>A certificate enters status PENDING_VALIDATION upon being requested, unless it fails for
1126
1125
  * any of the reasons given in the troubleshooting topic <a href="https://docs.aws.amazon.com/acm/latest/userguide/troubleshooting-failed.html">Certificate request fails</a>. ACM makes
1127
1126
  * repeated attempts to validate a certificate for 72 hours and then times out. If a certificate
1128
1127
  * shows status FAILED or VALIDATION_TIMED_OUT, delete the request, correct the issue with <a href="https://docs.aws.amazon.com/acm/latest/userguide/dns-validation.html">DNS validation</a> or <a href="https://docs.aws.amazon.com/acm/latest/userguide/email-validation.html">Email validation</a>, and
1129
1128
  * try again. If validation succeeds, the certificate enters status ISSUED. </p>
1129
+ * @public
1130
1130
  */
1131
1131
  Status?: CertificateStatus;
1132
1132
  /**
1133
- * @public
1134
1133
  * <p>The source of the certificate. For certificates provided by ACM, this value is
1135
1134
  * <code>AMAZON_ISSUED</code>. For certificates that you imported with <a>ImportCertificate</a>, this value is <code>IMPORTED</code>. ACM does not provide
1136
1135
  * <a href="https://docs.aws.amazon.com/acm/latest/userguide/acm-renewal.html">managed renewal</a> for
1137
1136
  * imported certificates. For more information about the differences between certificates that
1138
1137
  * you import and those that ACM provides, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/import-certificate.html">Importing Certificates</a> in the
1139
1138
  * <i>Certificate Manager User Guide</i>. </p>
1139
+ * @public
1140
1140
  */
1141
1141
  Type?: CertificateType;
1142
1142
  /**
1143
- * @public
1144
1143
  * <p>The algorithm that was used to generate the public-private key pair.</p>
1144
+ * @public
1145
1145
  */
1146
1146
  KeyAlgorithm?: KeyAlgorithm;
1147
1147
  /**
1148
- * @public
1149
1148
  * <p>A list of Key Usage X.509 v3 extension objects. Each object is a string value that
1150
1149
  * identifies the purpose of the public key contained in the certificate. Possible extension
1151
1150
  * values include DIGITAL_SIGNATURE, KEY_ENCHIPHERMENT, NON_REPUDIATION, and more.</p>
1151
+ * @public
1152
1152
  */
1153
1153
  KeyUsages?: KeyUsageName[];
1154
1154
  /**
1155
- * @public
1156
1155
  * <p>Contains a list of Extended Key Usage X.509 v3 extension objects. Each object specifies a
1157
1156
  * purpose for which the certificate public key can be used and consists of a name and an object
1158
1157
  * identifier (OID). </p>
1158
+ * @public
1159
1159
  */
1160
1160
  ExtendedKeyUsages?: ExtendedKeyUsageName[];
1161
1161
  /**
1162
- * @public
1163
1162
  * <p>Indicates whether the certificate is currently in use by any Amazon Web Services resources.</p>
1163
+ * @public
1164
1164
  */
1165
1165
  InUse?: boolean;
1166
1166
  /**
1167
- * @public
1168
1167
  * <p>Indicates whether the certificate has been exported. This value exists only when the
1169
1168
  * certificate type is <code>PRIVATE</code>.</p>
1169
+ * @public
1170
1170
  */
1171
1171
  Exported?: boolean;
1172
1172
  /**
1173
- * @public
1174
1173
  * <p>Specifies whether the certificate is eligible for renewal. At this time, only exported
1175
1174
  * private certificates can be renewed with the <a>RenewCertificate</a>
1176
1175
  * command.</p>
1176
+ * @public
1177
1177
  */
1178
1178
  RenewalEligibility?: RenewalEligibility;
1179
1179
  /**
1180
- * @public
1181
1180
  * <p>The time before which the certificate is not valid.</p>
1181
+ * @public
1182
1182
  */
1183
1183
  NotBefore?: Date;
1184
1184
  /**
1185
- * @public
1186
1185
  * <p>The time after which the certificate is not valid.</p>
1186
+ * @public
1187
1187
  */
1188
1188
  NotAfter?: Date;
1189
1189
  /**
1190
- * @public
1191
1190
  * <p>The time at which the certificate was requested.</p>
1191
+ * @public
1192
1192
  */
1193
1193
  CreatedAt?: Date;
1194
1194
  /**
1195
- * @public
1196
1195
  * <p>The time at which the certificate was issued. This value exists only when the certificate
1197
1196
  * type is <code>AMAZON_ISSUED</code>. </p>
1197
+ * @public
1198
1198
  */
1199
1199
  IssuedAt?: Date;
1200
1200
  /**
1201
- * @public
1202
1201
  * <p>The date and time when the certificate was imported. This value exists only when the
1203
1202
  * certificate type is <code>IMPORTED</code>. </p>
1203
+ * @public
1204
1204
  */
1205
1205
  ImportedAt?: Date;
1206
1206
  /**
1207
- * @public
1208
1207
  * <p>The time at which the certificate was revoked. This value exists only when the certificate
1209
1208
  * status is <code>REVOKED</code>. </p>
1209
+ * @public
1210
1210
  */
1211
1211
  RevokedAt?: Date;
1212
1212
  }
@@ -1215,20 +1215,20 @@ export interface CertificateSummary {
1215
1215
  */
1216
1216
  export interface ListCertificatesResponse {
1217
1217
  /**
1218
- * @public
1219
1218
  * <p>When the list is truncated, this value is present and contains the value to use for the
1220
1219
  * <code>NextToken</code> parameter in a subsequent pagination request.</p>
1220
+ * @public
1221
1221
  */
1222
1222
  NextToken?: string;
1223
1223
  /**
1224
- * @public
1225
1224
  * <p>A list of ACM certificates.</p>
1225
+ * @public
1226
1226
  */
1227
1227
  CertificateSummaryList?: CertificateSummary[];
1228
1228
  }
1229
1229
  /**
1230
- * @public
1231
1230
  * <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
1231
+ * @public
1232
1232
  */
1233
1233
  export declare class ValidationException extends __BaseException {
1234
1234
  readonly name: "ValidationException";
@@ -1243,13 +1243,13 @@ export declare class ValidationException extends __BaseException {
1243
1243
  */
1244
1244
  export interface ListTagsForCertificateRequest {
1245
1245
  /**
1246
- * @public
1247
1246
  * <p>String that contains the ARN of the ACM certificate for which you want to list the tags.
1248
1247
  * This must have the following form:</p>
1249
1248
  * <p>
1250
1249
  * <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
1251
1250
  * </p>
1252
1251
  * <p>For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>.</p>
1252
+ * @public
1253
1253
  */
1254
1254
  CertificateArn: string | undefined;
1255
1255
  }
@@ -1258,8 +1258,8 @@ export interface ListTagsForCertificateRequest {
1258
1258
  */
1259
1259
  export interface ListTagsForCertificateResponse {
1260
1260
  /**
1261
- * @public
1262
1261
  * <p>The key-value pairs that define the applied tags.</p>
1262
+ * @public
1263
1263
  */
1264
1264
  Tags?: Tag[];
1265
1265
  }
@@ -1268,17 +1268,17 @@ export interface ListTagsForCertificateResponse {
1268
1268
  */
1269
1269
  export interface PutAccountConfigurationRequest {
1270
1270
  /**
1271
- * @public
1272
1271
  * <p>Specifies expiration events associated with an account.</p>
1272
+ * @public
1273
1273
  */
1274
1274
  ExpiryEvents?: ExpiryEventsConfiguration;
1275
1275
  /**
1276
- * @public
1277
1276
  * <p>Customer-chosen string used to distinguish between calls to
1278
1277
  * <code>PutAccountConfiguration</code>. Idempotency tokens time out after one hour. If you
1279
1278
  * call <code>PutAccountConfiguration</code> multiple times with the same unexpired idempotency
1280
1279
  * token, ACM treats it as the same request and returns the original result. If you change the
1281
1280
  * idempotency token for each call, ACM treats each call as a new request.</p>
1281
+ * @public
1282
1282
  */
1283
1283
  IdempotencyToken: string | undefined;
1284
1284
  }
@@ -1287,18 +1287,18 @@ export interface PutAccountConfigurationRequest {
1287
1287
  */
1288
1288
  export interface RemoveTagsFromCertificateRequest {
1289
1289
  /**
1290
- * @public
1291
1290
  * <p>String that contains the ARN of the ACM Certificate with one or more tags that you want
1292
1291
  * to remove. This must be of the form:</p>
1293
1292
  * <p>
1294
1293
  * <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
1295
1294
  * </p>
1296
1295
  * <p>For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>.</p>
1296
+ * @public
1297
1297
  */
1298
1298
  CertificateArn: string | undefined;
1299
1299
  /**
1300
- * @public
1301
1300
  * <p>The key-value pair that defines the tag to remove.</p>
1301
+ * @public
1302
1302
  */
1303
1303
  Tags: Tag[] | undefined;
1304
1304
  }
@@ -1307,20 +1307,20 @@ export interface RemoveTagsFromCertificateRequest {
1307
1307
  */
1308
1308
  export interface RenewCertificateRequest {
1309
1309
  /**
1310
- * @public
1311
1310
  * <p>String that contains the ARN of the ACM certificate to be renewed. This must be of the
1312
1311
  * form:</p>
1313
1312
  * <p>
1314
1313
  * <code>arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
1315
1314
  * </p>
1316
1315
  * <p>For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a>.</p>
1316
+ * @public
1317
1317
  */
1318
1318
  CertificateArn: string | undefined;
1319
1319
  }
1320
1320
  /**
1321
- * @public
1322
1321
  * <p>One or more values in the <a>DomainValidationOption</a> structure is
1323
1322
  * incorrect.</p>
1323
+ * @public
1324
1324
  */
1325
1325
  export declare class InvalidDomainValidationOptionsException extends __BaseException {
1326
1326
  readonly name: "InvalidDomainValidationOptionsException";
@@ -1331,18 +1331,17 @@ export declare class InvalidDomainValidationOptionsException extends __BaseExcep
1331
1331
  constructor(opts: __ExceptionOptionType<InvalidDomainValidationOptionsException, __BaseException>);
1332
1332
  }
1333
1333
  /**
1334
- * @public
1335
1334
  * <p>Contains information about the domain names that you want ACM to use to send you emails
1336
1335
  * that enable you to validate domain ownership.</p>
1336
+ * @public
1337
1337
  */
1338
1338
  export interface DomainValidationOption {
1339
1339
  /**
1340
- * @public
1341
1340
  * <p>A fully qualified domain name (FQDN) in the certificate request.</p>
1341
+ * @public
1342
1342
  */
1343
1343
  DomainName: string | undefined;
1344
1344
  /**
1345
- * @public
1346
1345
  * <p>The domain name that you want ACM to use to send you validation emails. This domain name
1347
1346
  * is the suffix of the email addresses that you want ACM to use. This must be the same as the
1348
1347
  * <code>DomainName</code> value or a superdomain of the <code>DomainName</code> value. For
@@ -1366,6 +1365,7 @@ export interface DomainValidationOption {
1366
1365
  * <p>webmaster@example.com</p>
1367
1366
  * </li>
1368
1367
  * </ul>
1368
+ * @public
1369
1369
  */
1370
1370
  ValidationDomain: string | undefined;
1371
1371
  }
@@ -1374,7 +1374,6 @@ export interface DomainValidationOption {
1374
1374
  */
1375
1375
  export interface RequestCertificateRequest {
1376
1376
  /**
1377
- * @public
1378
1377
  * <p>Fully qualified domain name (FQDN), such as www.example.com, that you want to secure with
1379
1378
  * an ACM certificate. Use an asterisk (*) to create a wildcard certificate that protects
1380
1379
  * several sites in the same domain. For example, *.example.com protects www.example.com,
@@ -1383,17 +1382,17 @@ export interface RequestCertificateRequest {
1383
1382
  * 5280</a>, the length of the domain name (technically, the Common Name) that you provide
1384
1383
  * cannot exceed 64 octets (characters), including periods. To add a longer domain name, specify it in the Subject Alternative
1385
1384
  * Name field, which supports names up to 253 octets in length. </p>
1385
+ * @public
1386
1386
  */
1387
1387
  DomainName: string | undefined;
1388
1388
  /**
1389
- * @public
1390
1389
  * <p>The method you want to use if you are requesting a public certificate to validate that you
1391
1390
  * own or control domain. You can <a href="https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-dns.html">validate with DNS</a> or <a href="https://docs.aws.amazon.com/acm/latest/userguide/gs-acm-validate-email.html">validate with
1392
1391
  * email</a>. We recommend that you use DNS validation. </p>
1392
+ * @public
1393
1393
  */
1394
1394
  ValidationMethod?: ValidationMethod;
1395
1395
  /**
1396
- * @public
1397
1396
  * <p>Additional FQDNs to be included in the Subject Alternative Name extension of the ACM
1398
1397
  * certificate. For example, add the name www.example.net to a certificate for which the
1399
1398
  * <code>DomainName</code> field is www.example.com if users can reach your site by using
@@ -1421,34 +1420,34 @@ export interface RequestCertificateRequest {
1421
1420
  * total length of the DNS name (63+1+63+1+63+1+62) exceeds 253 octets.</p>
1422
1421
  * </li>
1423
1422
  * </ul>
1423
+ * @public
1424
1424
  */
1425
1425
  SubjectAlternativeNames?: string[];
1426
1426
  /**
1427
- * @public
1428
1427
  * <p>Customer chosen string that can be used to distinguish between calls to
1429
1428
  * <code>RequestCertificate</code>. Idempotency tokens time out after one hour. Therefore, if
1430
1429
  * you call <code>RequestCertificate</code> multiple times with the same idempotency token within
1431
1430
  * one hour, ACM recognizes that you are requesting only one certificate and will issue only
1432
1431
  * one. If you change the idempotency token for each call, ACM recognizes that you are
1433
1432
  * requesting multiple certificates.</p>
1433
+ * @public
1434
1434
  */
1435
1435
  IdempotencyToken?: string;
1436
1436
  /**
1437
- * @public
1438
1437
  * <p>The domain name that you want ACM to use to send you emails so that you can validate
1439
1438
  * domain ownership.</p>
1439
+ * @public
1440
1440
  */
1441
1441
  DomainValidationOptions?: DomainValidationOption[];
1442
1442
  /**
1443
- * @public
1444
1443
  * <p>Currently, you can use this parameter to specify whether to add the certificate to a
1445
1444
  * certificate transparency log. Certificate transparency makes it possible to detect SSL/TLS
1446
1445
  * certificates that have been mistakenly or maliciously issued. Certificates that have not been
1447
1446
  * logged typically produce an error message in a browser. For more information, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/acm-bestpractices.html#best-practices-transparency">Opting Out of Certificate Transparency Logging</a>.</p>
1447
+ * @public
1448
1448
  */
1449
1449
  Options?: CertificateOptions;
1450
1450
  /**
1451
- * @public
1452
1451
  * <p>The Amazon Resource Name (ARN) of the private certificate authority (CA) that will be used
1453
1452
  * to issue the certificate. If you do not provide an ARN and you are trying to request a private
1454
1453
  * certificate, ACM will attempt to issue a public certificate. For more information about
@@ -1456,15 +1455,15 @@ export interface RequestCertificateRequest {
1456
1455
  * <p>
1457
1456
  * <code>arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012</code>
1458
1457
  * </p>
1458
+ * @public
1459
1459
  */
1460
1460
  CertificateAuthorityArn?: string;
1461
1461
  /**
1462
- * @public
1463
1462
  * <p>One or more resource tags to associate with the certificate.</p>
1463
+ * @public
1464
1464
  */
1465
1465
  Tags?: Tag[];
1466
1466
  /**
1467
- * @public
1468
1467
  * <p>Specifies the algorithm of the public and private key pair that your certificate uses to
1469
1468
  * encrypt data. RSA is the default key algorithm for ACM certificates. Elliptic Curve Digital
1470
1469
  * Signature Algorithm (ECDSA) keys are smaller, offering security comparable to RSA keys but
@@ -1473,6 +1472,7 @@ export interface RequestCertificateRequest {
1473
1472
  * others allow the use of either RSA and ECDSA keys to ensure that compatibility is not broken.
1474
1473
  * Check the requirements for the AWS service where you plan to deploy your certificate.</p>
1475
1474
  * <p>Default: RSA_2048</p>
1475
+ * @public
1476
1476
  */
1477
1477
  KeyAlgorithm?: KeyAlgorithm;
1478
1478
  }
@@ -1481,17 +1481,17 @@ export interface RequestCertificateRequest {
1481
1481
  */
1482
1482
  export interface RequestCertificateResponse {
1483
1483
  /**
1484
- * @public
1485
1484
  * <p>String that contains the ARN of the issued certificate. This must be of the form:</p>
1486
1485
  * <p>
1487
1486
  * <code>arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
1488
1487
  * </p>
1488
+ * @public
1489
1489
  */
1490
1490
  CertificateArn?: string;
1491
1491
  }
1492
1492
  /**
1493
- * @public
1494
1493
  * <p>Processing has reached an invalid state.</p>
1494
+ * @public
1495
1495
  */
1496
1496
  export declare class InvalidStateException extends __BaseException {
1497
1497
  readonly name: "InvalidStateException";
@@ -1506,7 +1506,6 @@ export declare class InvalidStateException extends __BaseException {
1506
1506
  */
1507
1507
  export interface ResendValidationEmailRequest {
1508
1508
  /**
1509
- * @public
1510
1509
  * <p>String that contains the ARN of the requested certificate. The certificate ARN is
1511
1510
  * generated and returned by the <a>RequestCertificate</a> action as soon as the
1512
1511
  * request is made. By default, using this parameter causes email to be sent to all top-level
@@ -1514,16 +1513,16 @@ export interface ResendValidationEmailRequest {
1514
1513
  * <p>
1515
1514
  * <code>arn:aws:acm:us-east-1:123456789012:certificate/12345678-1234-1234-1234-123456789012</code>
1516
1515
  * </p>
1516
+ * @public
1517
1517
  */
1518
1518
  CertificateArn: string | undefined;
1519
1519
  /**
1520
- * @public
1521
1520
  * <p>The fully qualified domain name (FQDN) of the certificate that needs to be
1522
1521
  * validated.</p>
1522
+ * @public
1523
1523
  */
1524
1524
  Domain: string | undefined;
1525
1525
  /**
1526
- * @public
1527
1526
  * <p>The base validation domain that will act as the suffix of the email addresses that are
1528
1527
  * used to send the emails. This must be the same as the <code>Domain</code> value or a
1529
1528
  * superdomain of the <code>Domain</code> value. For example, if you requested a certificate for
@@ -1547,6 +1546,7 @@ export interface ResendValidationEmailRequest {
1547
1546
  * <p>webmaster@subdomain.example.com</p>
1548
1547
  * </li>
1549
1548
  * </ul>
1549
+ * @public
1550
1550
  */
1551
1551
  ValidationDomain: string | undefined;
1552
1552
  }
@@ -1555,20 +1555,20 @@ export interface ResendValidationEmailRequest {
1555
1555
  */
1556
1556
  export interface UpdateCertificateOptionsRequest {
1557
1557
  /**
1558
- * @public
1559
1558
  * <p>ARN of the requested certificate to update. This must be of the form:</p>
1560
1559
  * <p>
1561
1560
  * <code>arn:aws:acm:us-east-1:<i>account</i>:certificate/<i>12345678-1234-1234-1234-123456789012</i>
1562
1561
  * </code>
1563
1562
  * </p>
1563
+ * @public
1564
1564
  */
1565
1565
  CertificateArn: string | undefined;
1566
1566
  /**
1567
- * @public
1568
1567
  * <p>Use to update the options for your certificate. Currently, you can specify whether to add
1569
1568
  * your certificate to a transparency log. Certificate transparency makes it possible to detect
1570
1569
  * SSL/TLS certificates that have been mistakenly or maliciously issued. Certificates that have
1571
1570
  * not been logged typically produce an error message in a browser. </p>
1571
+ * @public
1572
1572
  */
1573
1573
  Options: CertificateOptions | undefined;
1574
1574
  }