@aws-sdk/client-acm 3.686.0 → 3.691.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.
|
@@ -7,7 +7,7 @@ import { ACMServiceException as __BaseException } from "./ACMServiceException";
|
|
|
7
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
8
8
|
readonly name: "AccessDeniedException";
|
|
9
9
|
readonly $fault: "client";
|
|
10
|
-
Message?: string;
|
|
10
|
+
Message?: string | undefined;
|
|
11
11
|
/**
|
|
12
12
|
* @internal
|
|
13
13
|
*/
|
|
@@ -27,7 +27,7 @@ export interface Tag {
|
|
|
27
27
|
* <p>The value of the tag.</p>
|
|
28
28
|
* @public
|
|
29
29
|
*/
|
|
30
|
-
Value?: string;
|
|
30
|
+
Value?: string | undefined;
|
|
31
31
|
}
|
|
32
32
|
/**
|
|
33
33
|
* @public
|
|
@@ -209,12 +209,12 @@ export interface DomainValidation {
|
|
|
209
209
|
* <p>A list of email addresses that ACM used to send domain validation emails.</p>
|
|
210
210
|
* @public
|
|
211
211
|
*/
|
|
212
|
-
ValidationEmails?: string[];
|
|
212
|
+
ValidationEmails?: string[] | undefined;
|
|
213
213
|
/**
|
|
214
214
|
* <p>The domain name that ACM used to send domain validation emails.</p>
|
|
215
215
|
* @public
|
|
216
216
|
*/
|
|
217
|
-
ValidationDomain?: string;
|
|
217
|
+
ValidationDomain?: string | undefined;
|
|
218
218
|
/**
|
|
219
219
|
* <p>The validation status of the domain name. This can be one of the following values:</p>
|
|
220
220
|
* <ul>
|
|
@@ -236,7 +236,7 @@ export interface DomainValidation {
|
|
|
236
236
|
* </ul>
|
|
237
237
|
* @public
|
|
238
238
|
*/
|
|
239
|
-
ValidationStatus?: DomainStatus;
|
|
239
|
+
ValidationStatus?: DomainStatus | undefined;
|
|
240
240
|
/**
|
|
241
241
|
* <p>Contains the CNAME record that you add to your DNS database for domain validation. For
|
|
242
242
|
* 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>
|
|
@@ -248,12 +248,12 @@ export interface DomainValidation {
|
|
|
248
248
|
* "_a79865eb4cd1a6ab990a45779b4e0b96" must be used.</p>
|
|
249
249
|
* @public
|
|
250
250
|
*/
|
|
251
|
-
ResourceRecord?: ResourceRecord;
|
|
251
|
+
ResourceRecord?: ResourceRecord | undefined;
|
|
252
252
|
/**
|
|
253
253
|
* <p>Specifies the domain validation method.</p>
|
|
254
254
|
* @public
|
|
255
255
|
*/
|
|
256
|
-
ValidationMethod?: ValidationMethod;
|
|
256
|
+
ValidationMethod?: ValidationMethod | undefined;
|
|
257
257
|
}
|
|
258
258
|
/**
|
|
259
259
|
* @public
|
|
@@ -288,7 +288,7 @@ export interface ExtendedKeyUsage {
|
|
|
288
288
|
* <p>The name of an Extended Key Usage value.</p>
|
|
289
289
|
* @public
|
|
290
290
|
*/
|
|
291
|
-
Name?: ExtendedKeyUsageName;
|
|
291
|
+
Name?: ExtendedKeyUsageName | undefined;
|
|
292
292
|
/**
|
|
293
293
|
* <p>An object identifier (OID) for the extension value. OIDs are strings of numbers separated
|
|
294
294
|
* by periods. The following OIDs are defined in RFC 3280 and RFC 5280. </p>
|
|
@@ -341,7 +341,7 @@ export interface ExtendedKeyUsage {
|
|
|
341
341
|
* </ul>
|
|
342
342
|
* @public
|
|
343
343
|
*/
|
|
344
|
-
OID?: string;
|
|
344
|
+
OID?: string | undefined;
|
|
345
345
|
}
|
|
346
346
|
/**
|
|
347
347
|
* @public
|
|
@@ -418,7 +418,7 @@ export interface KeyUsage {
|
|
|
418
418
|
* <p>A string value that contains a Key Usage extension name.</p>
|
|
419
419
|
* @public
|
|
420
420
|
*/
|
|
421
|
-
Name?: KeyUsageName;
|
|
421
|
+
Name?: KeyUsageName | undefined;
|
|
422
422
|
}
|
|
423
423
|
/**
|
|
424
424
|
* @public
|
|
@@ -448,7 +448,7 @@ export interface CertificateOptions {
|
|
|
448
448
|
* <code>DISABLED</code> option. Opt in by specifying <code>ENABLED</code>. </p>
|
|
449
449
|
* @public
|
|
450
450
|
*/
|
|
451
|
-
CertificateTransparencyLoggingPreference?: CertificateTransparencyLoggingPreference;
|
|
451
|
+
CertificateTransparencyLoggingPreference?: CertificateTransparencyLoggingPreference | undefined;
|
|
452
452
|
}
|
|
453
453
|
/**
|
|
454
454
|
* @public
|
|
@@ -500,7 +500,7 @@ export interface RenewalSummary {
|
|
|
500
500
|
* <p>The reason that a renewal request was unsuccessful.</p>
|
|
501
501
|
* @public
|
|
502
502
|
*/
|
|
503
|
-
RenewalStatusReason?: FailureReason;
|
|
503
|
+
RenewalStatusReason?: FailureReason | undefined;
|
|
504
504
|
/**
|
|
505
505
|
* <p>The time at which the renewal summary was last updated.</p>
|
|
506
506
|
* @public
|
|
@@ -569,13 +569,13 @@ export interface CertificateDetail {
|
|
|
569
569
|
* the <i>Amazon Web Services General Reference</i>.</p>
|
|
570
570
|
* @public
|
|
571
571
|
*/
|
|
572
|
-
CertificateArn?: string;
|
|
572
|
+
CertificateArn?: string | undefined;
|
|
573
573
|
/**
|
|
574
574
|
* <p>The fully qualified domain name for the certificate, such as www.example.com or
|
|
575
575
|
* example.com.</p>
|
|
576
576
|
* @public
|
|
577
577
|
*/
|
|
578
|
-
DomainName?: string;
|
|
578
|
+
DomainName?: string | undefined;
|
|
579
579
|
/**
|
|
580
580
|
* <p>One or more domain names (subject alternative names)
|
|
581
581
|
* included in the certificate. This
|
|
@@ -584,47 +584,47 @@ export interface CertificateDetail {
|
|
|
584
584
|
* certificate and additional domain names that can be used to connect to the website. </p>
|
|
585
585
|
* @public
|
|
586
586
|
*/
|
|
587
|
-
SubjectAlternativeNames?: string[];
|
|
587
|
+
SubjectAlternativeNames?: string[] | undefined;
|
|
588
588
|
/**
|
|
589
589
|
* <p>Contains information about the initial validation of each domain name that occurs as a
|
|
590
590
|
* result of the <a>RequestCertificate</a> request. This field exists only when the
|
|
591
591
|
* certificate type is <code>AMAZON_ISSUED</code>. </p>
|
|
592
592
|
* @public
|
|
593
593
|
*/
|
|
594
|
-
DomainValidationOptions?: DomainValidation[];
|
|
594
|
+
DomainValidationOptions?: DomainValidation[] | undefined;
|
|
595
595
|
/**
|
|
596
596
|
* <p>The serial number of the certificate.</p>
|
|
597
597
|
* @public
|
|
598
598
|
*/
|
|
599
|
-
Serial?: string;
|
|
599
|
+
Serial?: string | undefined;
|
|
600
600
|
/**
|
|
601
601
|
* <p>The name of the entity that is associated with the public key contained in the
|
|
602
602
|
* certificate.</p>
|
|
603
603
|
* @public
|
|
604
604
|
*/
|
|
605
|
-
Subject?: string;
|
|
605
|
+
Subject?: string | undefined;
|
|
606
606
|
/**
|
|
607
607
|
* <p>The name of the certificate authority that issued and signed the certificate.</p>
|
|
608
608
|
* @public
|
|
609
609
|
*/
|
|
610
|
-
Issuer?: string;
|
|
610
|
+
Issuer?: string | undefined;
|
|
611
611
|
/**
|
|
612
612
|
* <p>The time at which the certificate was requested.</p>
|
|
613
613
|
* @public
|
|
614
614
|
*/
|
|
615
|
-
CreatedAt?: Date;
|
|
615
|
+
CreatedAt?: Date | undefined;
|
|
616
616
|
/**
|
|
617
617
|
* <p>The time at which the certificate was issued. This value exists only when the certificate
|
|
618
618
|
* type is <code>AMAZON_ISSUED</code>. </p>
|
|
619
619
|
* @public
|
|
620
620
|
*/
|
|
621
|
-
IssuedAt?: Date;
|
|
621
|
+
IssuedAt?: Date | undefined;
|
|
622
622
|
/**
|
|
623
623
|
* <p>The date and time when the certificate was imported. This value exists only when the
|
|
624
624
|
* certificate type is <code>IMPORTED</code>. </p>
|
|
625
625
|
* @public
|
|
626
626
|
*/
|
|
627
|
-
ImportedAt?: Date;
|
|
627
|
+
ImportedAt?: Date | undefined;
|
|
628
628
|
/**
|
|
629
629
|
* <p>The status of the certificate.</p>
|
|
630
630
|
* <p>A certificate enters status PENDING_VALIDATION upon being requested, unless it fails for
|
|
@@ -634,52 +634,52 @@ export interface CertificateDetail {
|
|
|
634
634
|
* try again. If validation succeeds, the certificate enters status ISSUED. </p>
|
|
635
635
|
* @public
|
|
636
636
|
*/
|
|
637
|
-
Status?: CertificateStatus;
|
|
637
|
+
Status?: CertificateStatus | undefined;
|
|
638
638
|
/**
|
|
639
639
|
* <p>The time at which the certificate was revoked. This value exists only when the certificate
|
|
640
640
|
* status is <code>REVOKED</code>. </p>
|
|
641
641
|
* @public
|
|
642
642
|
*/
|
|
643
|
-
RevokedAt?: Date;
|
|
643
|
+
RevokedAt?: Date | undefined;
|
|
644
644
|
/**
|
|
645
645
|
* <p>The reason the certificate was revoked. This value exists only when the certificate status
|
|
646
646
|
* is <code>REVOKED</code>. </p>
|
|
647
647
|
* @public
|
|
648
648
|
*/
|
|
649
|
-
RevocationReason?: RevocationReason;
|
|
649
|
+
RevocationReason?: RevocationReason | undefined;
|
|
650
650
|
/**
|
|
651
651
|
* <p>The time before which the certificate is not valid.</p>
|
|
652
652
|
* @public
|
|
653
653
|
*/
|
|
654
|
-
NotBefore?: Date;
|
|
654
|
+
NotBefore?: Date | undefined;
|
|
655
655
|
/**
|
|
656
656
|
* <p>The time after which the certificate is not valid.</p>
|
|
657
657
|
* @public
|
|
658
658
|
*/
|
|
659
|
-
NotAfter?: Date;
|
|
659
|
+
NotAfter?: Date | undefined;
|
|
660
660
|
/**
|
|
661
661
|
* <p>The algorithm that was used to generate the public-private key pair.</p>
|
|
662
662
|
* @public
|
|
663
663
|
*/
|
|
664
|
-
KeyAlgorithm?: KeyAlgorithm;
|
|
664
|
+
KeyAlgorithm?: KeyAlgorithm | undefined;
|
|
665
665
|
/**
|
|
666
666
|
* <p>The algorithm that was used to sign the certificate.</p>
|
|
667
667
|
* @public
|
|
668
668
|
*/
|
|
669
|
-
SignatureAlgorithm?: string;
|
|
669
|
+
SignatureAlgorithm?: string | undefined;
|
|
670
670
|
/**
|
|
671
671
|
* <p>A list of ARNs for the Amazon Web Services resources that are using the certificate. A certificate can
|
|
672
672
|
* be used by multiple Amazon Web Services resources. </p>
|
|
673
673
|
* @public
|
|
674
674
|
*/
|
|
675
|
-
InUseBy?: string[];
|
|
675
|
+
InUseBy?: string[] | undefined;
|
|
676
676
|
/**
|
|
677
677
|
* <p>The reason the certificate request failed. This value exists only when the certificate
|
|
678
678
|
* 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
|
|
679
679
|
* Failed</a> in the <i>Certificate Manager User Guide</i>. </p>
|
|
680
680
|
* @public
|
|
681
681
|
*/
|
|
682
|
-
FailureReason?: FailureReason;
|
|
682
|
+
FailureReason?: FailureReason | undefined;
|
|
683
683
|
/**
|
|
684
684
|
* <p>The source of the certificate. For certificates provided by ACM, this value is
|
|
685
685
|
* <code>AMAZON_ISSUED</code>. For certificates that you imported with <a>ImportCertificate</a>, this value is <code>IMPORTED</code>. ACM does not provide
|
|
@@ -689,27 +689,27 @@ export interface CertificateDetail {
|
|
|
689
689
|
* <i>Certificate Manager User Guide</i>. </p>
|
|
690
690
|
* @public
|
|
691
691
|
*/
|
|
692
|
-
Type?: CertificateType;
|
|
692
|
+
Type?: CertificateType | undefined;
|
|
693
693
|
/**
|
|
694
694
|
* <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
|
|
695
695
|
* exists only when the certificate type is <code>AMAZON_ISSUED</code>.</p>
|
|
696
696
|
* @public
|
|
697
697
|
*/
|
|
698
|
-
RenewalSummary?: RenewalSummary;
|
|
698
|
+
RenewalSummary?: RenewalSummary | undefined;
|
|
699
699
|
/**
|
|
700
700
|
* <p>A list of Key Usage X.509 v3 extension objects. Each object is a string value that
|
|
701
701
|
* identifies the purpose of the public key contained in the certificate. Possible extension
|
|
702
702
|
* values include DIGITAL_SIGNATURE, KEY_ENCHIPHERMENT, NON_REPUDIATION, and more.</p>
|
|
703
703
|
* @public
|
|
704
704
|
*/
|
|
705
|
-
KeyUsages?: KeyUsage[];
|
|
705
|
+
KeyUsages?: KeyUsage[] | undefined;
|
|
706
706
|
/**
|
|
707
707
|
* <p>Contains a list of Extended Key Usage X.509 v3 extension objects. Each object specifies a
|
|
708
708
|
* purpose for which the certificate public key can be used and consists of a name and an object
|
|
709
709
|
* identifier (OID). </p>
|
|
710
710
|
* @public
|
|
711
711
|
*/
|
|
712
|
-
ExtendedKeyUsages?: ExtendedKeyUsage[];
|
|
712
|
+
ExtendedKeyUsages?: ExtendedKeyUsage[] | undefined;
|
|
713
713
|
/**
|
|
714
714
|
* <p>The Amazon Resource Name (ARN) of the private certificate authority (CA) that issued the
|
|
715
715
|
* certificate. This has the following format: </p>
|
|
@@ -718,14 +718,14 @@ export interface CertificateDetail {
|
|
|
718
718
|
* </p>
|
|
719
719
|
* @public
|
|
720
720
|
*/
|
|
721
|
-
CertificateAuthorityArn?: string;
|
|
721
|
+
CertificateAuthorityArn?: string | undefined;
|
|
722
722
|
/**
|
|
723
723
|
* <p>Specifies whether the certificate is eligible for renewal. At this time, only exported
|
|
724
724
|
* private certificates can be renewed with the <a>RenewCertificate</a>
|
|
725
725
|
* command.</p>
|
|
726
726
|
* @public
|
|
727
727
|
*/
|
|
728
|
-
RenewalEligibility?: RenewalEligibility;
|
|
728
|
+
RenewalEligibility?: RenewalEligibility | undefined;
|
|
729
729
|
/**
|
|
730
730
|
* <p>Value that specifies whether to add the certificate to a transparency log. Certificate
|
|
731
731
|
* transparency makes it possible to detect SSL certificates that have been mistakenly or
|
|
@@ -733,7 +733,7 @@ export interface CertificateDetail {
|
|
|
733
733
|
* an error message. The logs are cryptographically secure. </p>
|
|
734
734
|
* @public
|
|
735
735
|
*/
|
|
736
|
-
Options?: CertificateOptions;
|
|
736
|
+
Options?: CertificateOptions | undefined;
|
|
737
737
|
}
|
|
738
738
|
/**
|
|
739
739
|
* <p>You are trying to update a resource or configuration that is already being created or
|
|
@@ -799,7 +799,7 @@ export interface DescribeCertificateResponse {
|
|
|
799
799
|
* <p>Metadata about an ACM certificate.</p>
|
|
800
800
|
* @public
|
|
801
801
|
*/
|
|
802
|
-
Certificate?: CertificateDetail;
|
|
802
|
+
Certificate?: CertificateDetail | undefined;
|
|
803
803
|
}
|
|
804
804
|
/**
|
|
805
805
|
* @public
|
|
@@ -836,19 +836,19 @@ export interface ExportCertificateResponse {
|
|
|
836
836
|
* <p>The base64 PEM-encoded certificate.</p>
|
|
837
837
|
* @public
|
|
838
838
|
*/
|
|
839
|
-
Certificate?: string;
|
|
839
|
+
Certificate?: string | undefined;
|
|
840
840
|
/**
|
|
841
841
|
* <p>The base64 PEM-encoded certificate chain. This does not include the certificate that you
|
|
842
842
|
* are exporting.</p>
|
|
843
843
|
* @public
|
|
844
844
|
*/
|
|
845
|
-
CertificateChain?: string;
|
|
845
|
+
CertificateChain?: string | undefined;
|
|
846
846
|
/**
|
|
847
847
|
* <p>The encrypted private key associated with the public key in the certificate. The key is
|
|
848
848
|
* output in PKCS #8 format and is base64 PEM-encoded. </p>
|
|
849
849
|
* @public
|
|
850
850
|
*/
|
|
851
|
-
PrivateKey?: string;
|
|
851
|
+
PrivateKey?: string | undefined;
|
|
852
852
|
}
|
|
853
853
|
/**
|
|
854
854
|
* <p>The certificate request is in process and the certificate in your account has not yet been
|
|
@@ -875,7 +875,7 @@ export interface ExpiryEventsConfiguration {
|
|
|
875
875
|
* expiration.</p>
|
|
876
876
|
* @public
|
|
877
877
|
*/
|
|
878
|
-
DaysBeforeExpiry?: number;
|
|
878
|
+
DaysBeforeExpiry?: number | undefined;
|
|
879
879
|
}
|
|
880
880
|
/**
|
|
881
881
|
* @public
|
|
@@ -885,7 +885,7 @@ export interface GetAccountConfigurationResponse {
|
|
|
885
885
|
* <p>Expiration events configuration options associated with the Amazon Web Services account.</p>
|
|
886
886
|
* @public
|
|
887
887
|
*/
|
|
888
|
-
ExpiryEvents?: ExpiryEventsConfiguration;
|
|
888
|
+
ExpiryEvents?: ExpiryEventsConfiguration | undefined;
|
|
889
889
|
}
|
|
890
890
|
/**
|
|
891
891
|
* @public
|
|
@@ -909,14 +909,14 @@ export interface GetCertificateResponse {
|
|
|
909
909
|
* <p>The ACM-issued certificate corresponding to the ARN specified as input.</p>
|
|
910
910
|
* @public
|
|
911
911
|
*/
|
|
912
|
-
Certificate?: string;
|
|
912
|
+
Certificate?: string | undefined;
|
|
913
913
|
/**
|
|
914
914
|
* <p>Certificates forming the requested certificate's chain of trust. The chain consists of the
|
|
915
915
|
* certificate of the issuing CA and the intermediate certificates of any other subordinate CAs.
|
|
916
916
|
* </p>
|
|
917
917
|
* @public
|
|
918
918
|
*/
|
|
919
|
-
CertificateChain?: string;
|
|
919
|
+
CertificateChain?: string | undefined;
|
|
920
920
|
}
|
|
921
921
|
/**
|
|
922
922
|
* @public
|
|
@@ -928,7 +928,7 @@ export interface ImportCertificateRequest {
|
|
|
928
928
|
* field. </p>
|
|
929
929
|
* @public
|
|
930
930
|
*/
|
|
931
|
-
CertificateArn?: string;
|
|
931
|
+
CertificateArn?: string | undefined;
|
|
932
932
|
/**
|
|
933
933
|
* <p>The certificate to import.</p>
|
|
934
934
|
* @public
|
|
@@ -943,13 +943,13 @@ export interface ImportCertificateRequest {
|
|
|
943
943
|
* <p>The PEM encoded certificate chain.</p>
|
|
944
944
|
* @public
|
|
945
945
|
*/
|
|
946
|
-
CertificateChain?: Uint8Array;
|
|
946
|
+
CertificateChain?: Uint8Array | undefined;
|
|
947
947
|
/**
|
|
948
948
|
* <p>One or more resource tags to associate with the imported certificate. </p>
|
|
949
949
|
* <p>Note: You cannot apply tags when reimporting a certificate.</p>
|
|
950
950
|
* @public
|
|
951
951
|
*/
|
|
952
|
-
Tags?: Tag[];
|
|
952
|
+
Tags?: Tag[] | undefined;
|
|
953
953
|
}
|
|
954
954
|
/**
|
|
955
955
|
* @public
|
|
@@ -960,7 +960,7 @@ export interface ImportCertificateResponse {
|
|
|
960
960
|
* (ARN)</a> of the imported certificate.</p>
|
|
961
961
|
* @public
|
|
962
962
|
*/
|
|
963
|
-
CertificateArn?: string;
|
|
963
|
+
CertificateArn?: string | undefined;
|
|
964
964
|
}
|
|
965
965
|
/**
|
|
966
966
|
* <p>An ACM quota has been exceeded.</p>
|
|
@@ -996,12 +996,12 @@ export interface Filters {
|
|
|
996
996
|
* <p>Specify one or more <a>ExtendedKeyUsage</a> extension values.</p>
|
|
997
997
|
* @public
|
|
998
998
|
*/
|
|
999
|
-
extendedKeyUsage?: ExtendedKeyUsageName[];
|
|
999
|
+
extendedKeyUsage?: ExtendedKeyUsageName[] | undefined;
|
|
1000
1000
|
/**
|
|
1001
1001
|
* <p>Specify one or more <a>KeyUsage</a> extension values.</p>
|
|
1002
1002
|
* @public
|
|
1003
1003
|
*/
|
|
1004
|
-
keyUsage?: KeyUsageName[];
|
|
1004
|
+
keyUsage?: KeyUsageName[] | undefined;
|
|
1005
1005
|
/**
|
|
1006
1006
|
* <p>Specify one or more algorithms that can be used to generate key pairs.</p>
|
|
1007
1007
|
* <p>Default filtering returns only <code>RSA_1024</code> and <code>RSA_2048</code>
|
|
@@ -1011,7 +1011,7 @@ export interface Filters {
|
|
|
1011
1011
|
* certificates.</p>
|
|
1012
1012
|
* @public
|
|
1013
1013
|
*/
|
|
1014
|
-
keyTypes?: KeyAlgorithm[];
|
|
1014
|
+
keyTypes?: KeyAlgorithm[] | undefined;
|
|
1015
1015
|
}
|
|
1016
1016
|
/**
|
|
1017
1017
|
* @public
|
|
@@ -1044,20 +1044,20 @@ export interface ListCertificatesRequest {
|
|
|
1044
1044
|
* <p>Filter the certificate list by status value.</p>
|
|
1045
1045
|
* @public
|
|
1046
1046
|
*/
|
|
1047
|
-
CertificateStatuses?: CertificateStatus[];
|
|
1047
|
+
CertificateStatuses?: CertificateStatus[] | undefined;
|
|
1048
1048
|
/**
|
|
1049
1049
|
* <p>Filter the certificate list. For more information, see the <a>Filters</a>
|
|
1050
1050
|
* structure.</p>
|
|
1051
1051
|
* @public
|
|
1052
1052
|
*/
|
|
1053
|
-
Includes?: Filters;
|
|
1053
|
+
Includes?: Filters | undefined;
|
|
1054
1054
|
/**
|
|
1055
1055
|
* <p>Use this parameter only when paginating results and only in a subsequent request after you
|
|
1056
1056
|
* receive a response with truncated results. Set it to the value of <code>NextToken</code> from
|
|
1057
1057
|
* the response you just received.</p>
|
|
1058
1058
|
* @public
|
|
1059
1059
|
*/
|
|
1060
|
-
NextToken?: string;
|
|
1060
|
+
NextToken?: string | undefined;
|
|
1061
1061
|
/**
|
|
1062
1062
|
* <p>Use this parameter when paginating results to specify the maximum number of items to
|
|
1063
1063
|
* return in the response. If additional items exist beyond the number you specify, the
|
|
@@ -1065,19 +1065,19 @@ export interface ListCertificatesRequest {
|
|
|
1065
1065
|
* value in a subsequent request to retrieve additional items.</p>
|
|
1066
1066
|
* @public
|
|
1067
1067
|
*/
|
|
1068
|
-
MaxItems?: number;
|
|
1068
|
+
MaxItems?: number | undefined;
|
|
1069
1069
|
/**
|
|
1070
1070
|
* <p>Specifies the field to sort results by. If you specify <code>SortBy</code>, you must also
|
|
1071
1071
|
* specify <code>SortOrder</code>.</p>
|
|
1072
1072
|
* @public
|
|
1073
1073
|
*/
|
|
1074
|
-
SortBy?: SortBy;
|
|
1074
|
+
SortBy?: SortBy | undefined;
|
|
1075
1075
|
/**
|
|
1076
1076
|
* <p>Specifies the order of sorted results. If you specify <code>SortOrder</code>, you must
|
|
1077
1077
|
* also specify <code>SortBy</code>.</p>
|
|
1078
1078
|
* @public
|
|
1079
1079
|
*/
|
|
1080
|
-
SortOrder?: SortOrder;
|
|
1080
|
+
SortOrder?: SortOrder | undefined;
|
|
1081
1081
|
}
|
|
1082
1082
|
/**
|
|
1083
1083
|
* <p>This structure is returned in the response object of <a>ListCertificates</a>
|
|
@@ -1093,13 +1093,13 @@ export interface CertificateSummary {
|
|
|
1093
1093
|
* <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>
|
|
1094
1094
|
* @public
|
|
1095
1095
|
*/
|
|
1096
|
-
CertificateArn?: string;
|
|
1096
|
+
CertificateArn?: string | undefined;
|
|
1097
1097
|
/**
|
|
1098
1098
|
* <p>Fully qualified domain name (FQDN), such as www.example.com or example.com, for the
|
|
1099
1099
|
* certificate.</p>
|
|
1100
1100
|
* @public
|
|
1101
1101
|
*/
|
|
1102
|
-
DomainName?: string;
|
|
1102
|
+
DomainName?: string | undefined;
|
|
1103
1103
|
/**
|
|
1104
1104
|
* <p>One or more domain names (subject alternative names)
|
|
1105
1105
|
* included in the certificate. This
|
|
@@ -1111,7 +1111,7 @@ export interface CertificateSummary {
|
|
|
1111
1111
|
* <a>DescribeCertificate</a>.</p>
|
|
1112
1112
|
* @public
|
|
1113
1113
|
*/
|
|
1114
|
-
SubjectAlternativeNameSummaries?: string[];
|
|
1114
|
+
SubjectAlternativeNameSummaries?: string[] | undefined;
|
|
1115
1115
|
/**
|
|
1116
1116
|
* <p>When called by <a>ListCertificates</a>, indicates whether the full list of subject alternative names has
|
|
1117
1117
|
* been included in the response. If false, the response includes all of the subject alternative
|
|
@@ -1120,7 +1120,7 @@ export interface CertificateSummary {
|
|
|
1120
1120
|
* names, use <a>DescribeCertificate</a>.</p>
|
|
1121
1121
|
* @public
|
|
1122
1122
|
*/
|
|
1123
|
-
HasAdditionalSubjectAlternativeNames?: boolean;
|
|
1123
|
+
HasAdditionalSubjectAlternativeNames?: boolean | undefined;
|
|
1124
1124
|
/**
|
|
1125
1125
|
* <p>The status of the certificate.</p>
|
|
1126
1126
|
* <p>A certificate enters status PENDING_VALIDATION upon being requested, unless it fails for
|
|
@@ -1130,7 +1130,7 @@ export interface CertificateSummary {
|
|
|
1130
1130
|
* try again. If validation succeeds, the certificate enters status ISSUED. </p>
|
|
1131
1131
|
* @public
|
|
1132
1132
|
*/
|
|
1133
|
-
Status?: CertificateStatus;
|
|
1133
|
+
Status?: CertificateStatus | undefined;
|
|
1134
1134
|
/**
|
|
1135
1135
|
* <p>The source of the certificate. For certificates provided by ACM, this value is
|
|
1136
1136
|
* <code>AMAZON_ISSUED</code>. For certificates that you imported with <a>ImportCertificate</a>, this value is <code>IMPORTED</code>. ACM does not provide
|
|
@@ -1140,77 +1140,77 @@ export interface CertificateSummary {
|
|
|
1140
1140
|
* <i>Certificate Manager User Guide</i>. </p>
|
|
1141
1141
|
* @public
|
|
1142
1142
|
*/
|
|
1143
|
-
Type?: CertificateType;
|
|
1143
|
+
Type?: CertificateType | undefined;
|
|
1144
1144
|
/**
|
|
1145
1145
|
* <p>The algorithm that was used to generate the public-private key pair.</p>
|
|
1146
1146
|
* @public
|
|
1147
1147
|
*/
|
|
1148
|
-
KeyAlgorithm?: KeyAlgorithm;
|
|
1148
|
+
KeyAlgorithm?: KeyAlgorithm | undefined;
|
|
1149
1149
|
/**
|
|
1150
1150
|
* <p>A list of Key Usage X.509 v3 extension objects. Each object is a string value that
|
|
1151
1151
|
* identifies the purpose of the public key contained in the certificate. Possible extension
|
|
1152
1152
|
* values include DIGITAL_SIGNATURE, KEY_ENCHIPHERMENT, NON_REPUDIATION, and more.</p>
|
|
1153
1153
|
* @public
|
|
1154
1154
|
*/
|
|
1155
|
-
KeyUsages?: KeyUsageName[];
|
|
1155
|
+
KeyUsages?: KeyUsageName[] | undefined;
|
|
1156
1156
|
/**
|
|
1157
1157
|
* <p>Contains a list of Extended Key Usage X.509 v3 extension objects. Each object specifies a
|
|
1158
1158
|
* purpose for which the certificate public key can be used and consists of a name and an object
|
|
1159
1159
|
* identifier (OID). </p>
|
|
1160
1160
|
* @public
|
|
1161
1161
|
*/
|
|
1162
|
-
ExtendedKeyUsages?: ExtendedKeyUsageName[];
|
|
1162
|
+
ExtendedKeyUsages?: ExtendedKeyUsageName[] | undefined;
|
|
1163
1163
|
/**
|
|
1164
1164
|
* <p>Indicates whether the certificate is currently in use by any Amazon Web Services resources.</p>
|
|
1165
1165
|
* @public
|
|
1166
1166
|
*/
|
|
1167
|
-
InUse?: boolean;
|
|
1167
|
+
InUse?: boolean | undefined;
|
|
1168
1168
|
/**
|
|
1169
1169
|
* <p>Indicates whether the certificate has been exported. This value exists only when the
|
|
1170
1170
|
* certificate type is <code>PRIVATE</code>.</p>
|
|
1171
1171
|
* @public
|
|
1172
1172
|
*/
|
|
1173
|
-
Exported?: boolean;
|
|
1173
|
+
Exported?: boolean | undefined;
|
|
1174
1174
|
/**
|
|
1175
1175
|
* <p>Specifies whether the certificate is eligible for renewal. At this time, only exported
|
|
1176
1176
|
* private certificates can be renewed with the <a>RenewCertificate</a>
|
|
1177
1177
|
* command.</p>
|
|
1178
1178
|
* @public
|
|
1179
1179
|
*/
|
|
1180
|
-
RenewalEligibility?: RenewalEligibility;
|
|
1180
|
+
RenewalEligibility?: RenewalEligibility | undefined;
|
|
1181
1181
|
/**
|
|
1182
1182
|
* <p>The time before which the certificate is not valid.</p>
|
|
1183
1183
|
* @public
|
|
1184
1184
|
*/
|
|
1185
|
-
NotBefore?: Date;
|
|
1185
|
+
NotBefore?: Date | undefined;
|
|
1186
1186
|
/**
|
|
1187
1187
|
* <p>The time after which the certificate is not valid.</p>
|
|
1188
1188
|
* @public
|
|
1189
1189
|
*/
|
|
1190
|
-
NotAfter?: Date;
|
|
1190
|
+
NotAfter?: Date | undefined;
|
|
1191
1191
|
/**
|
|
1192
1192
|
* <p>The time at which the certificate was requested.</p>
|
|
1193
1193
|
* @public
|
|
1194
1194
|
*/
|
|
1195
|
-
CreatedAt?: Date;
|
|
1195
|
+
CreatedAt?: Date | undefined;
|
|
1196
1196
|
/**
|
|
1197
1197
|
* <p>The time at which the certificate was issued. This value exists only when the certificate
|
|
1198
1198
|
* type is <code>AMAZON_ISSUED</code>. </p>
|
|
1199
1199
|
* @public
|
|
1200
1200
|
*/
|
|
1201
|
-
IssuedAt?: Date;
|
|
1201
|
+
IssuedAt?: Date | undefined;
|
|
1202
1202
|
/**
|
|
1203
1203
|
* <p>The date and time when the certificate was imported. This value exists only when the
|
|
1204
1204
|
* certificate type is <code>IMPORTED</code>. </p>
|
|
1205
1205
|
* @public
|
|
1206
1206
|
*/
|
|
1207
|
-
ImportedAt?: Date;
|
|
1207
|
+
ImportedAt?: Date | undefined;
|
|
1208
1208
|
/**
|
|
1209
1209
|
* <p>The time at which the certificate was revoked. This value exists only when the certificate
|
|
1210
1210
|
* status is <code>REVOKED</code>. </p>
|
|
1211
1211
|
* @public
|
|
1212
1212
|
*/
|
|
1213
|
-
RevokedAt?: Date;
|
|
1213
|
+
RevokedAt?: Date | undefined;
|
|
1214
1214
|
}
|
|
1215
1215
|
/**
|
|
1216
1216
|
* @public
|
|
@@ -1221,12 +1221,12 @@ export interface ListCertificatesResponse {
|
|
|
1221
1221
|
* <code>NextToken</code> parameter in a subsequent pagination request.</p>
|
|
1222
1222
|
* @public
|
|
1223
1223
|
*/
|
|
1224
|
-
NextToken?: string;
|
|
1224
|
+
NextToken?: string | undefined;
|
|
1225
1225
|
/**
|
|
1226
1226
|
* <p>A list of ACM certificates.</p>
|
|
1227
1227
|
* @public
|
|
1228
1228
|
*/
|
|
1229
|
-
CertificateSummaryList?: CertificateSummary[];
|
|
1229
|
+
CertificateSummaryList?: CertificateSummary[] | undefined;
|
|
1230
1230
|
}
|
|
1231
1231
|
/**
|
|
1232
1232
|
* <p>The supplied input failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
@@ -1263,7 +1263,7 @@ export interface ListTagsForCertificateResponse {
|
|
|
1263
1263
|
* <p>The key-value pairs that define the applied tags.</p>
|
|
1264
1264
|
* @public
|
|
1265
1265
|
*/
|
|
1266
|
-
Tags?: Tag[];
|
|
1266
|
+
Tags?: Tag[] | undefined;
|
|
1267
1267
|
}
|
|
1268
1268
|
/**
|
|
1269
1269
|
* @public
|
|
@@ -1273,7 +1273,7 @@ export interface PutAccountConfigurationRequest {
|
|
|
1273
1273
|
* <p>Specifies expiration events associated with an account.</p>
|
|
1274
1274
|
* @public
|
|
1275
1275
|
*/
|
|
1276
|
-
ExpiryEvents?: ExpiryEventsConfiguration;
|
|
1276
|
+
ExpiryEvents?: ExpiryEventsConfiguration | undefined;
|
|
1277
1277
|
/**
|
|
1278
1278
|
* <p>Customer-chosen string used to distinguish between calls to
|
|
1279
1279
|
* <code>PutAccountConfiguration</code>. Idempotency tokens time out after one hour. If you
|
|
@@ -1393,7 +1393,7 @@ export interface RequestCertificateRequest {
|
|
|
1393
1393
|
* email</a>. We recommend that you use DNS validation. </p>
|
|
1394
1394
|
* @public
|
|
1395
1395
|
*/
|
|
1396
|
-
ValidationMethod?: ValidationMethod;
|
|
1396
|
+
ValidationMethod?: ValidationMethod | undefined;
|
|
1397
1397
|
/**
|
|
1398
1398
|
* <p>Additional FQDNs to be included in the Subject Alternative Name extension of the ACM
|
|
1399
1399
|
* certificate. For example, add the name www.example.net to a certificate for which the
|
|
@@ -1424,7 +1424,7 @@ export interface RequestCertificateRequest {
|
|
|
1424
1424
|
* </ul>
|
|
1425
1425
|
* @public
|
|
1426
1426
|
*/
|
|
1427
|
-
SubjectAlternativeNames?: string[];
|
|
1427
|
+
SubjectAlternativeNames?: string[] | undefined;
|
|
1428
1428
|
/**
|
|
1429
1429
|
* <p>Customer chosen string that can be used to distinguish between calls to
|
|
1430
1430
|
* <code>RequestCertificate</code>. Idempotency tokens time out after one hour. Therefore, if
|
|
@@ -1434,13 +1434,13 @@ export interface RequestCertificateRequest {
|
|
|
1434
1434
|
* requesting multiple certificates.</p>
|
|
1435
1435
|
* @public
|
|
1436
1436
|
*/
|
|
1437
|
-
IdempotencyToken?: string;
|
|
1437
|
+
IdempotencyToken?: string | undefined;
|
|
1438
1438
|
/**
|
|
1439
1439
|
* <p>The domain name that you want ACM to use to send you emails so that you can validate
|
|
1440
1440
|
* domain ownership.</p>
|
|
1441
1441
|
* @public
|
|
1442
1442
|
*/
|
|
1443
|
-
DomainValidationOptions?: DomainValidationOption[];
|
|
1443
|
+
DomainValidationOptions?: DomainValidationOption[] | undefined;
|
|
1444
1444
|
/**
|
|
1445
1445
|
* <p>Currently, you can use this parameter to specify whether to add the certificate to a
|
|
1446
1446
|
* certificate transparency log. Certificate transparency makes it possible to detect SSL/TLS
|
|
@@ -1448,7 +1448,7 @@ export interface RequestCertificateRequest {
|
|
|
1448
1448
|
* 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>
|
|
1449
1449
|
* @public
|
|
1450
1450
|
*/
|
|
1451
|
-
Options?: CertificateOptions;
|
|
1451
|
+
Options?: CertificateOptions | undefined;
|
|
1452
1452
|
/**
|
|
1453
1453
|
* <p>The Amazon Resource Name (ARN) of the private certificate authority (CA) that will be used
|
|
1454
1454
|
* to issue the certificate. If you do not provide an ARN and you are trying to request a private
|
|
@@ -1459,12 +1459,12 @@ export interface RequestCertificateRequest {
|
|
|
1459
1459
|
* </p>
|
|
1460
1460
|
* @public
|
|
1461
1461
|
*/
|
|
1462
|
-
CertificateAuthorityArn?: string;
|
|
1462
|
+
CertificateAuthorityArn?: string | undefined;
|
|
1463
1463
|
/**
|
|
1464
1464
|
* <p>One or more resource tags to associate with the certificate.</p>
|
|
1465
1465
|
* @public
|
|
1466
1466
|
*/
|
|
1467
|
-
Tags?: Tag[];
|
|
1467
|
+
Tags?: Tag[] | undefined;
|
|
1468
1468
|
/**
|
|
1469
1469
|
* <p>Specifies the algorithm of the public and private key pair that your certificate uses to
|
|
1470
1470
|
* encrypt data. RSA is the default key algorithm for ACM certificates. Elliptic Curve Digital
|
|
@@ -1504,7 +1504,7 @@ export interface RequestCertificateRequest {
|
|
|
1504
1504
|
* <p>Default: RSA_2048</p>
|
|
1505
1505
|
* @public
|
|
1506
1506
|
*/
|
|
1507
|
-
KeyAlgorithm?: KeyAlgorithm;
|
|
1507
|
+
KeyAlgorithm?: KeyAlgorithm | undefined;
|
|
1508
1508
|
}
|
|
1509
1509
|
/**
|
|
1510
1510
|
* @public
|
|
@@ -1517,7 +1517,7 @@ export interface RequestCertificateResponse {
|
|
|
1517
1517
|
* </p>
|
|
1518
1518
|
* @public
|
|
1519
1519
|
*/
|
|
1520
|
-
CertificateArn?: string;
|
|
1520
|
+
CertificateArn?: string | undefined;
|
|
1521
1521
|
}
|
|
1522
1522
|
/**
|
|
1523
1523
|
* <p>Processing has reached an invalid state.</p>
|
|
@@ -3,14 +3,14 @@ import { ACMServiceException as __BaseException } from "./ACMServiceException";
|
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
Message?: string;
|
|
6
|
+
Message?: string | undefined;
|
|
7
7
|
constructor(
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
10
10
|
}
|
|
11
11
|
export interface Tag {
|
|
12
12
|
Key: string | undefined;
|
|
13
|
-
Value?: string;
|
|
13
|
+
Value?: string | undefined;
|
|
14
14
|
}
|
|
15
15
|
export interface AddTagsToCertificateRequest {
|
|
16
16
|
CertificateArn: string | undefined;
|
|
@@ -86,11 +86,11 @@ export declare const DomainStatus: {
|
|
|
86
86
|
export type DomainStatus = (typeof DomainStatus)[keyof typeof DomainStatus];
|
|
87
87
|
export interface DomainValidation {
|
|
88
88
|
DomainName: string | undefined;
|
|
89
|
-
ValidationEmails?: string[];
|
|
90
|
-
ValidationDomain?: string;
|
|
91
|
-
ValidationStatus?: DomainStatus;
|
|
92
|
-
ResourceRecord?: ResourceRecord;
|
|
93
|
-
ValidationMethod?: ValidationMethod;
|
|
89
|
+
ValidationEmails?: string[] | undefined;
|
|
90
|
+
ValidationDomain?: string | undefined;
|
|
91
|
+
ValidationStatus?: DomainStatus | undefined;
|
|
92
|
+
ResourceRecord?: ResourceRecord | undefined;
|
|
93
|
+
ValidationMethod?: ValidationMethod | undefined;
|
|
94
94
|
}
|
|
95
95
|
export declare const ExtendedKeyUsageName: {
|
|
96
96
|
readonly ANY: "ANY";
|
|
@@ -109,8 +109,8 @@ export declare const ExtendedKeyUsageName: {
|
|
|
109
109
|
export type ExtendedKeyUsageName =
|
|
110
110
|
(typeof ExtendedKeyUsageName)[keyof typeof ExtendedKeyUsageName];
|
|
111
111
|
export interface ExtendedKeyUsage {
|
|
112
|
-
Name?: ExtendedKeyUsageName;
|
|
113
|
-
OID?: string;
|
|
112
|
+
Name?: ExtendedKeyUsageName | undefined;
|
|
113
|
+
OID?: string | undefined;
|
|
114
114
|
}
|
|
115
115
|
export declare const FailureReason: {
|
|
116
116
|
readonly ADDITIONAL_VERIFICATION_REQUIRED: "ADDITIONAL_VERIFICATION_REQUIRED";
|
|
@@ -157,7 +157,7 @@ export declare const KeyUsageName: {
|
|
|
157
157
|
};
|
|
158
158
|
export type KeyUsageName = (typeof KeyUsageName)[keyof typeof KeyUsageName];
|
|
159
159
|
export interface KeyUsage {
|
|
160
|
-
Name?: KeyUsageName;
|
|
160
|
+
Name?: KeyUsageName | undefined;
|
|
161
161
|
}
|
|
162
162
|
export declare const CertificateTransparencyLoggingPreference: {
|
|
163
163
|
readonly DISABLED: "DISABLED";
|
|
@@ -166,7 +166,9 @@ export declare const CertificateTransparencyLoggingPreference: {
|
|
|
166
166
|
export type CertificateTransparencyLoggingPreference =
|
|
167
167
|
(typeof CertificateTransparencyLoggingPreference)[keyof typeof CertificateTransparencyLoggingPreference];
|
|
168
168
|
export interface CertificateOptions {
|
|
169
|
-
CertificateTransparencyLoggingPreference?:
|
|
169
|
+
CertificateTransparencyLoggingPreference?:
|
|
170
|
+
| CertificateTransparencyLoggingPreference
|
|
171
|
+
| undefined;
|
|
170
172
|
}
|
|
171
173
|
export declare const RenewalEligibility: {
|
|
172
174
|
readonly ELIGIBLE: "ELIGIBLE";
|
|
@@ -184,7 +186,7 @@ export type RenewalStatus = (typeof RenewalStatus)[keyof typeof RenewalStatus];
|
|
|
184
186
|
export interface RenewalSummary {
|
|
185
187
|
RenewalStatus: RenewalStatus | undefined;
|
|
186
188
|
DomainValidationOptions: DomainValidation[] | undefined;
|
|
187
|
-
RenewalStatusReason?: FailureReason;
|
|
189
|
+
RenewalStatusReason?: FailureReason | undefined;
|
|
188
190
|
UpdatedAt: Date | undefined;
|
|
189
191
|
}
|
|
190
192
|
export declare const RevocationReason: {
|
|
@@ -220,32 +222,32 @@ export declare const CertificateType: {
|
|
|
220
222
|
export type CertificateType =
|
|
221
223
|
(typeof CertificateType)[keyof typeof CertificateType];
|
|
222
224
|
export interface CertificateDetail {
|
|
223
|
-
CertificateArn?: string;
|
|
224
|
-
DomainName?: string;
|
|
225
|
-
SubjectAlternativeNames?: string[];
|
|
226
|
-
DomainValidationOptions?: DomainValidation[];
|
|
227
|
-
Serial?: string;
|
|
228
|
-
Subject?: string;
|
|
229
|
-
Issuer?: string;
|
|
230
|
-
CreatedAt?: Date;
|
|
231
|
-
IssuedAt?: Date;
|
|
232
|
-
ImportedAt?: Date;
|
|
233
|
-
Status?: CertificateStatus;
|
|
234
|
-
RevokedAt?: Date;
|
|
235
|
-
RevocationReason?: RevocationReason;
|
|
236
|
-
NotBefore?: Date;
|
|
237
|
-
NotAfter?: Date;
|
|
238
|
-
KeyAlgorithm?: KeyAlgorithm;
|
|
239
|
-
SignatureAlgorithm?: string;
|
|
240
|
-
InUseBy?: string[];
|
|
241
|
-
FailureReason?: FailureReason;
|
|
242
|
-
Type?: CertificateType;
|
|
243
|
-
RenewalSummary?: RenewalSummary;
|
|
244
|
-
KeyUsages?: KeyUsage[];
|
|
245
|
-
ExtendedKeyUsages?: ExtendedKeyUsage[];
|
|
246
|
-
CertificateAuthorityArn?: string;
|
|
247
|
-
RenewalEligibility?: RenewalEligibility;
|
|
248
|
-
Options?: CertificateOptions;
|
|
225
|
+
CertificateArn?: string | undefined;
|
|
226
|
+
DomainName?: string | undefined;
|
|
227
|
+
SubjectAlternativeNames?: string[] | undefined;
|
|
228
|
+
DomainValidationOptions?: DomainValidation[] | undefined;
|
|
229
|
+
Serial?: string | undefined;
|
|
230
|
+
Subject?: string | undefined;
|
|
231
|
+
Issuer?: string | undefined;
|
|
232
|
+
CreatedAt?: Date | undefined;
|
|
233
|
+
IssuedAt?: Date | undefined;
|
|
234
|
+
ImportedAt?: Date | undefined;
|
|
235
|
+
Status?: CertificateStatus | undefined;
|
|
236
|
+
RevokedAt?: Date | undefined;
|
|
237
|
+
RevocationReason?: RevocationReason | undefined;
|
|
238
|
+
NotBefore?: Date | undefined;
|
|
239
|
+
NotAfter?: Date | undefined;
|
|
240
|
+
KeyAlgorithm?: KeyAlgorithm | undefined;
|
|
241
|
+
SignatureAlgorithm?: string | undefined;
|
|
242
|
+
InUseBy?: string[] | undefined;
|
|
243
|
+
FailureReason?: FailureReason | undefined;
|
|
244
|
+
Type?: CertificateType | undefined;
|
|
245
|
+
RenewalSummary?: RenewalSummary | undefined;
|
|
246
|
+
KeyUsages?: KeyUsage[] | undefined;
|
|
247
|
+
ExtendedKeyUsages?: ExtendedKeyUsage[] | undefined;
|
|
248
|
+
CertificateAuthorityArn?: string | undefined;
|
|
249
|
+
RenewalEligibility?: RenewalEligibility | undefined;
|
|
250
|
+
Options?: CertificateOptions | undefined;
|
|
249
251
|
}
|
|
250
252
|
export declare class ConflictException extends __BaseException {
|
|
251
253
|
readonly name: "ConflictException";
|
|
@@ -266,16 +268,16 @@ export interface DescribeCertificateRequest {
|
|
|
266
268
|
CertificateArn: string | undefined;
|
|
267
269
|
}
|
|
268
270
|
export interface DescribeCertificateResponse {
|
|
269
|
-
Certificate?: CertificateDetail;
|
|
271
|
+
Certificate?: CertificateDetail | undefined;
|
|
270
272
|
}
|
|
271
273
|
export interface ExportCertificateRequest {
|
|
272
274
|
CertificateArn: string | undefined;
|
|
273
275
|
Passphrase: Uint8Array | undefined;
|
|
274
276
|
}
|
|
275
277
|
export interface ExportCertificateResponse {
|
|
276
|
-
Certificate?: string;
|
|
277
|
-
CertificateChain?: string;
|
|
278
|
-
PrivateKey?: string;
|
|
278
|
+
Certificate?: string | undefined;
|
|
279
|
+
CertificateChain?: string | undefined;
|
|
280
|
+
PrivateKey?: string | undefined;
|
|
279
281
|
}
|
|
280
282
|
export declare class RequestInProgressException extends __BaseException {
|
|
281
283
|
readonly name: "RequestInProgressException";
|
|
@@ -285,27 +287,27 @@ export declare class RequestInProgressException extends __BaseException {
|
|
|
285
287
|
);
|
|
286
288
|
}
|
|
287
289
|
export interface ExpiryEventsConfiguration {
|
|
288
|
-
DaysBeforeExpiry?: number;
|
|
290
|
+
DaysBeforeExpiry?: number | undefined;
|
|
289
291
|
}
|
|
290
292
|
export interface GetAccountConfigurationResponse {
|
|
291
|
-
ExpiryEvents?: ExpiryEventsConfiguration;
|
|
293
|
+
ExpiryEvents?: ExpiryEventsConfiguration | undefined;
|
|
292
294
|
}
|
|
293
295
|
export interface GetCertificateRequest {
|
|
294
296
|
CertificateArn: string | undefined;
|
|
295
297
|
}
|
|
296
298
|
export interface GetCertificateResponse {
|
|
297
|
-
Certificate?: string;
|
|
298
|
-
CertificateChain?: string;
|
|
299
|
+
Certificate?: string | undefined;
|
|
300
|
+
CertificateChain?: string | undefined;
|
|
299
301
|
}
|
|
300
302
|
export interface ImportCertificateRequest {
|
|
301
|
-
CertificateArn?: string;
|
|
303
|
+
CertificateArn?: string | undefined;
|
|
302
304
|
Certificate: Uint8Array | undefined;
|
|
303
305
|
PrivateKey: Uint8Array | undefined;
|
|
304
|
-
CertificateChain?: Uint8Array;
|
|
305
|
-
Tags?: Tag[];
|
|
306
|
+
CertificateChain?: Uint8Array | undefined;
|
|
307
|
+
Tags?: Tag[] | undefined;
|
|
306
308
|
}
|
|
307
309
|
export interface ImportCertificateResponse {
|
|
308
|
-
CertificateArn?: string;
|
|
310
|
+
CertificateArn?: string | undefined;
|
|
309
311
|
}
|
|
310
312
|
export declare class LimitExceededException extends __BaseException {
|
|
311
313
|
readonly name: "LimitExceededException";
|
|
@@ -322,9 +324,9 @@ export declare class InvalidArgsException extends __BaseException {
|
|
|
322
324
|
);
|
|
323
325
|
}
|
|
324
326
|
export interface Filters {
|
|
325
|
-
extendedKeyUsage?: ExtendedKeyUsageName[];
|
|
326
|
-
keyUsage?: KeyUsageName[];
|
|
327
|
-
keyTypes?: KeyAlgorithm[];
|
|
327
|
+
extendedKeyUsage?: ExtendedKeyUsageName[] | undefined;
|
|
328
|
+
keyUsage?: KeyUsageName[] | undefined;
|
|
329
|
+
keyTypes?: KeyAlgorithm[] | undefined;
|
|
328
330
|
}
|
|
329
331
|
export declare const SortBy: {
|
|
330
332
|
readonly CREATED_AT: "CREATED_AT";
|
|
@@ -336,36 +338,36 @@ export declare const SortOrder: {
|
|
|
336
338
|
};
|
|
337
339
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
338
340
|
export interface ListCertificatesRequest {
|
|
339
|
-
CertificateStatuses?: CertificateStatus[];
|
|
340
|
-
Includes?: Filters;
|
|
341
|
-
NextToken?: string;
|
|
342
|
-
MaxItems?: number;
|
|
343
|
-
SortBy?: SortBy;
|
|
344
|
-
SortOrder?: SortOrder;
|
|
341
|
+
CertificateStatuses?: CertificateStatus[] | undefined;
|
|
342
|
+
Includes?: Filters | undefined;
|
|
343
|
+
NextToken?: string | undefined;
|
|
344
|
+
MaxItems?: number | undefined;
|
|
345
|
+
SortBy?: SortBy | undefined;
|
|
346
|
+
SortOrder?: SortOrder | undefined;
|
|
345
347
|
}
|
|
346
348
|
export interface CertificateSummary {
|
|
347
|
-
CertificateArn?: string;
|
|
348
|
-
DomainName?: string;
|
|
349
|
-
SubjectAlternativeNameSummaries?: string[];
|
|
350
|
-
HasAdditionalSubjectAlternativeNames?: boolean;
|
|
351
|
-
Status?: CertificateStatus;
|
|
352
|
-
Type?: CertificateType;
|
|
353
|
-
KeyAlgorithm?: KeyAlgorithm;
|
|
354
|
-
KeyUsages?: KeyUsageName[];
|
|
355
|
-
ExtendedKeyUsages?: ExtendedKeyUsageName[];
|
|
356
|
-
InUse?: boolean;
|
|
357
|
-
Exported?: boolean;
|
|
358
|
-
RenewalEligibility?: RenewalEligibility;
|
|
359
|
-
NotBefore?: Date;
|
|
360
|
-
NotAfter?: Date;
|
|
361
|
-
CreatedAt?: Date;
|
|
362
|
-
IssuedAt?: Date;
|
|
363
|
-
ImportedAt?: Date;
|
|
364
|
-
RevokedAt?: Date;
|
|
349
|
+
CertificateArn?: string | undefined;
|
|
350
|
+
DomainName?: string | undefined;
|
|
351
|
+
SubjectAlternativeNameSummaries?: string[] | undefined;
|
|
352
|
+
HasAdditionalSubjectAlternativeNames?: boolean | undefined;
|
|
353
|
+
Status?: CertificateStatus | undefined;
|
|
354
|
+
Type?: CertificateType | undefined;
|
|
355
|
+
KeyAlgorithm?: KeyAlgorithm | undefined;
|
|
356
|
+
KeyUsages?: KeyUsageName[] | undefined;
|
|
357
|
+
ExtendedKeyUsages?: ExtendedKeyUsageName[] | undefined;
|
|
358
|
+
InUse?: boolean | undefined;
|
|
359
|
+
Exported?: boolean | undefined;
|
|
360
|
+
RenewalEligibility?: RenewalEligibility | undefined;
|
|
361
|
+
NotBefore?: Date | undefined;
|
|
362
|
+
NotAfter?: Date | undefined;
|
|
363
|
+
CreatedAt?: Date | undefined;
|
|
364
|
+
IssuedAt?: Date | undefined;
|
|
365
|
+
ImportedAt?: Date | undefined;
|
|
366
|
+
RevokedAt?: Date | undefined;
|
|
365
367
|
}
|
|
366
368
|
export interface ListCertificatesResponse {
|
|
367
|
-
NextToken?: string;
|
|
368
|
-
CertificateSummaryList?: CertificateSummary[];
|
|
369
|
+
NextToken?: string | undefined;
|
|
370
|
+
CertificateSummaryList?: CertificateSummary[] | undefined;
|
|
369
371
|
}
|
|
370
372
|
export declare class ValidationException extends __BaseException {
|
|
371
373
|
readonly name: "ValidationException";
|
|
@@ -378,10 +380,10 @@ export interface ListTagsForCertificateRequest {
|
|
|
378
380
|
CertificateArn: string | undefined;
|
|
379
381
|
}
|
|
380
382
|
export interface ListTagsForCertificateResponse {
|
|
381
|
-
Tags?: Tag[];
|
|
383
|
+
Tags?: Tag[] | undefined;
|
|
382
384
|
}
|
|
383
385
|
export interface PutAccountConfigurationRequest {
|
|
384
|
-
ExpiryEvents?: ExpiryEventsConfiguration;
|
|
386
|
+
ExpiryEvents?: ExpiryEventsConfiguration | undefined;
|
|
385
387
|
IdempotencyToken: string | undefined;
|
|
386
388
|
}
|
|
387
389
|
export interface RemoveTagsFromCertificateRequest {
|
|
@@ -407,17 +409,17 @@ export interface DomainValidationOption {
|
|
|
407
409
|
}
|
|
408
410
|
export interface RequestCertificateRequest {
|
|
409
411
|
DomainName: string | undefined;
|
|
410
|
-
ValidationMethod?: ValidationMethod;
|
|
411
|
-
SubjectAlternativeNames?: string[];
|
|
412
|
-
IdempotencyToken?: string;
|
|
413
|
-
DomainValidationOptions?: DomainValidationOption[];
|
|
414
|
-
Options?: CertificateOptions;
|
|
415
|
-
CertificateAuthorityArn?: string;
|
|
416
|
-
Tags?: Tag[];
|
|
417
|
-
KeyAlgorithm?: KeyAlgorithm;
|
|
412
|
+
ValidationMethod?: ValidationMethod | undefined;
|
|
413
|
+
SubjectAlternativeNames?: string[] | undefined;
|
|
414
|
+
IdempotencyToken?: string | undefined;
|
|
415
|
+
DomainValidationOptions?: DomainValidationOption[] | undefined;
|
|
416
|
+
Options?: CertificateOptions | undefined;
|
|
417
|
+
CertificateAuthorityArn?: string | undefined;
|
|
418
|
+
Tags?: Tag[] | undefined;
|
|
419
|
+
KeyAlgorithm?: KeyAlgorithm | undefined;
|
|
418
420
|
}
|
|
419
421
|
export interface RequestCertificateResponse {
|
|
420
|
-
CertificateArn?: string;
|
|
422
|
+
CertificateArn?: string | undefined;
|
|
421
423
|
}
|
|
422
424
|
export declare class InvalidStateException extends __BaseException {
|
|
423
425
|
readonly name: "InvalidStateException";
|
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.691.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-acm",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|