@aws-sdk/client-acm 3.131.0 → 3.137.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/commands/AddTagsToCertificateCommand.js +1 -1
- package/dist-cjs/commands/DeleteCertificateCommand.js +1 -1
- package/dist-cjs/commands/DescribeCertificateCommand.js +2 -2
- package/dist-cjs/commands/ExportCertificateCommand.js +2 -2
- package/dist-cjs/commands/GetAccountConfigurationCommand.js +1 -1
- package/dist-cjs/commands/GetCertificateCommand.js +2 -2
- package/dist-cjs/commands/ImportCertificateCommand.js +2 -2
- package/dist-cjs/commands/ListCertificatesCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForCertificateCommand.js +2 -2
- package/dist-cjs/commands/PutAccountConfigurationCommand.js +1 -1
- package/dist-cjs/commands/RemoveTagsFromCertificateCommand.js +1 -1
- package/dist-cjs/commands/RenewCertificateCommand.js +1 -1
- package/dist-cjs/commands/RequestCertificateCommand.js +2 -2
- package/dist-cjs/commands/ResendValidationEmailCommand.js +1 -1
- package/dist-cjs/commands/UpdateCertificateOptionsCommand.js +1 -1
- package/dist-cjs/models/models_0.js +141 -209
- package/dist-es/commands/AddTagsToCertificateCommand.js +2 -2
- package/dist-es/commands/DeleteCertificateCommand.js +2 -2
- package/dist-es/commands/DescribeCertificateCommand.js +3 -3
- package/dist-es/commands/ExportCertificateCommand.js +3 -3
- package/dist-es/commands/GetAccountConfigurationCommand.js +2 -2
- package/dist-es/commands/GetCertificateCommand.js +3 -3
- package/dist-es/commands/ImportCertificateCommand.js +3 -3
- package/dist-es/commands/ListCertificatesCommand.js +3 -3
- package/dist-es/commands/ListTagsForCertificateCommand.js +3 -3
- package/dist-es/commands/PutAccountConfigurationCommand.js +2 -2
- package/dist-es/commands/RemoveTagsFromCertificateCommand.js +2 -2
- package/dist-es/commands/RenewCertificateCommand.js +2 -2
- package/dist-es/commands/RequestCertificateCommand.js +3 -3
- package/dist-es/commands/ResendValidationEmailCommand.js +2 -2
- package/dist-es/commands/UpdateCertificateOptionsCommand.js +2 -2
- package/dist-es/models/models_0.js +34 -136
- package/dist-types/models/models_0.d.ts +136 -204
- package/dist-types/ts3.4/models/models_0.d.ts +68 -136
- package/package.json +6 -6
|
@@ -26,12 +26,6 @@ export interface Tag {
|
|
|
26
26
|
*/
|
|
27
27
|
Value?: string;
|
|
28
28
|
}
|
|
29
|
-
export declare namespace Tag {
|
|
30
|
-
/**
|
|
31
|
-
* @internal
|
|
32
|
-
*/
|
|
33
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
34
|
-
}
|
|
35
29
|
export interface AddTagsToCertificateRequest {
|
|
36
30
|
/**
|
|
37
31
|
* <p>String that contains the ARN of the ACM certificate to which the tag is to be applied.
|
|
@@ -49,12 +43,6 @@ export interface AddTagsToCertificateRequest {
|
|
|
49
43
|
*/
|
|
50
44
|
Tags: Tag[] | undefined;
|
|
51
45
|
}
|
|
52
|
-
export declare namespace AddTagsToCertificateRequest {
|
|
53
|
-
/**
|
|
54
|
-
* @internal
|
|
55
|
-
*/
|
|
56
|
-
const filterSensitiveLog: (obj: AddTagsToCertificateRequest) => any;
|
|
57
|
-
}
|
|
58
46
|
/**
|
|
59
47
|
* <p>The requested Amazon Resource Name (ARN) does not refer to an existing resource.</p>
|
|
60
48
|
*/
|
|
@@ -157,12 +145,6 @@ export interface ResourceRecord {
|
|
|
157
145
|
*/
|
|
158
146
|
Value: string | undefined;
|
|
159
147
|
}
|
|
160
|
-
export declare namespace ResourceRecord {
|
|
161
|
-
/**
|
|
162
|
-
* @internal
|
|
163
|
-
*/
|
|
164
|
-
const filterSensitiveLog: (obj: ResourceRecord) => any;
|
|
165
|
-
}
|
|
166
148
|
export declare enum ValidationMethod {
|
|
167
149
|
DNS = "DNS",
|
|
168
150
|
EMAIL = "EMAIL"
|
|
@@ -225,12 +207,6 @@ export interface DomainValidation {
|
|
|
225
207
|
*/
|
|
226
208
|
ValidationMethod?: ValidationMethod | string;
|
|
227
209
|
}
|
|
228
|
-
export declare namespace DomainValidation {
|
|
229
|
-
/**
|
|
230
|
-
* @internal
|
|
231
|
-
*/
|
|
232
|
-
const filterSensitiveLog: (obj: DomainValidation) => any;
|
|
233
|
-
}
|
|
234
210
|
export declare enum ExtendedKeyUsageName {
|
|
235
211
|
ANY = "ANY",
|
|
236
212
|
CODE_SIGNING = "CODE_SIGNING",
|
|
@@ -309,12 +285,6 @@ export interface ExtendedKeyUsage {
|
|
|
309
285
|
*/
|
|
310
286
|
OID?: string;
|
|
311
287
|
}
|
|
312
|
-
export declare namespace ExtendedKeyUsage {
|
|
313
|
-
/**
|
|
314
|
-
* @internal
|
|
315
|
-
*/
|
|
316
|
-
const filterSensitiveLog: (obj: ExtendedKeyUsage) => any;
|
|
317
|
-
}
|
|
318
288
|
export declare enum FailureReason {
|
|
319
289
|
ADDITIONAL_VERIFICATION_REQUIRED = "ADDITIONAL_VERIFICATION_REQUIRED",
|
|
320
290
|
CAA_ERROR = "CAA_ERROR",
|
|
@@ -366,12 +336,6 @@ export interface KeyUsage {
|
|
|
366
336
|
*/
|
|
367
337
|
Name?: KeyUsageName | string;
|
|
368
338
|
}
|
|
369
|
-
export declare namespace KeyUsage {
|
|
370
|
-
/**
|
|
371
|
-
* @internal
|
|
372
|
-
*/
|
|
373
|
-
const filterSensitiveLog: (obj: KeyUsage) => any;
|
|
374
|
-
}
|
|
375
339
|
export declare enum CertificateTransparencyLoggingPreference {
|
|
376
340
|
DISABLED = "DISABLED",
|
|
377
341
|
ENABLED = "ENABLED"
|
|
@@ -392,12 +356,6 @@ export interface CertificateOptions {
|
|
|
392
356
|
*/
|
|
393
357
|
CertificateTransparencyLoggingPreference?: CertificateTransparencyLoggingPreference | string;
|
|
394
358
|
}
|
|
395
|
-
export declare namespace CertificateOptions {
|
|
396
|
-
/**
|
|
397
|
-
* @internal
|
|
398
|
-
*/
|
|
399
|
-
const filterSensitiveLog: (obj: CertificateOptions) => any;
|
|
400
|
-
}
|
|
401
359
|
export declare enum RenewalEligibility {
|
|
402
360
|
ELIGIBLE = "ELIGIBLE",
|
|
403
361
|
INELIGIBLE = "INELIGIBLE"
|
|
@@ -434,12 +392,6 @@ export interface RenewalSummary {
|
|
|
434
392
|
*/
|
|
435
393
|
UpdatedAt: Date | undefined;
|
|
436
394
|
}
|
|
437
|
-
export declare namespace RenewalSummary {
|
|
438
|
-
/**
|
|
439
|
-
* @internal
|
|
440
|
-
*/
|
|
441
|
-
const filterSensitiveLog: (obj: RenewalSummary) => any;
|
|
442
|
-
}
|
|
443
395
|
export declare enum RevocationReason {
|
|
444
396
|
AFFILIATION_CHANGED = "AFFILIATION_CHANGED",
|
|
445
397
|
A_A_COMPROMISE = "A_A_COMPROMISE",
|
|
@@ -611,12 +563,6 @@ export interface CertificateDetail {
|
|
|
611
563
|
*/
|
|
612
564
|
Options?: CertificateOptions;
|
|
613
565
|
}
|
|
614
|
-
export declare namespace CertificateDetail {
|
|
615
|
-
/**
|
|
616
|
-
* @internal
|
|
617
|
-
*/
|
|
618
|
-
const filterSensitiveLog: (obj: CertificateDetail) => any;
|
|
619
|
-
}
|
|
620
566
|
export interface DeleteCertificateRequest {
|
|
621
567
|
/**
|
|
622
568
|
* <p>String that contains the ARN of the ACM certificate to be deleted. This must be of the
|
|
@@ -628,12 +574,6 @@ export interface DeleteCertificateRequest {
|
|
|
628
574
|
*/
|
|
629
575
|
CertificateArn: string | undefined;
|
|
630
576
|
}
|
|
631
|
-
export declare namespace DeleteCertificateRequest {
|
|
632
|
-
/**
|
|
633
|
-
* @internal
|
|
634
|
-
*/
|
|
635
|
-
const filterSensitiveLog: (obj: DeleteCertificateRequest) => any;
|
|
636
|
-
}
|
|
637
577
|
/**
|
|
638
578
|
* <p>The certificate is in use by another Amazon Web Services service in the caller's account. Remove the
|
|
639
579
|
* association and try again.</p>
|
|
@@ -657,24 +597,12 @@ export interface DescribeCertificateRequest {
|
|
|
657
597
|
*/
|
|
658
598
|
CertificateArn: string | undefined;
|
|
659
599
|
}
|
|
660
|
-
export declare namespace DescribeCertificateRequest {
|
|
661
|
-
/**
|
|
662
|
-
* @internal
|
|
663
|
-
*/
|
|
664
|
-
const filterSensitiveLog: (obj: DescribeCertificateRequest) => any;
|
|
665
|
-
}
|
|
666
600
|
export interface DescribeCertificateResponse {
|
|
667
601
|
/**
|
|
668
602
|
* <p>Metadata about an ACM certificate.</p>
|
|
669
603
|
*/
|
|
670
604
|
Certificate?: CertificateDetail;
|
|
671
605
|
}
|
|
672
|
-
export declare namespace DescribeCertificateResponse {
|
|
673
|
-
/**
|
|
674
|
-
* @internal
|
|
675
|
-
*/
|
|
676
|
-
const filterSensitiveLog: (obj: DescribeCertificateResponse) => any;
|
|
677
|
-
}
|
|
678
606
|
export interface ExportCertificateRequest {
|
|
679
607
|
/**
|
|
680
608
|
* <p>An Amazon Resource Name (ARN) of the issued certificate. This must be of the form:</p>
|
|
@@ -693,12 +621,6 @@ export interface ExportCertificateRequest {
|
|
|
693
621
|
*/
|
|
694
622
|
Passphrase: Uint8Array | undefined;
|
|
695
623
|
}
|
|
696
|
-
export declare namespace ExportCertificateRequest {
|
|
697
|
-
/**
|
|
698
|
-
* @internal
|
|
699
|
-
*/
|
|
700
|
-
const filterSensitiveLog: (obj: ExportCertificateRequest) => any;
|
|
701
|
-
}
|
|
702
624
|
export interface ExportCertificateResponse {
|
|
703
625
|
/**
|
|
704
626
|
* <p>The base64 PEM-encoded certificate.</p>
|
|
@@ -715,12 +637,6 @@ export interface ExportCertificateResponse {
|
|
|
715
637
|
*/
|
|
716
638
|
PrivateKey?: string;
|
|
717
639
|
}
|
|
718
|
-
export declare namespace ExportCertificateResponse {
|
|
719
|
-
/**
|
|
720
|
-
* @internal
|
|
721
|
-
*/
|
|
722
|
-
const filterSensitiveLog: (obj: ExportCertificateResponse) => any;
|
|
723
|
-
}
|
|
724
640
|
/**
|
|
725
641
|
* <p>The certificate request is in process and the certificate in your account has not yet been
|
|
726
642
|
* issued.</p>
|
|
@@ -746,12 +662,6 @@ export interface ExpiryEventsConfiguration {
|
|
|
746
662
|
*/
|
|
747
663
|
DaysBeforeExpiry?: number;
|
|
748
664
|
}
|
|
749
|
-
export declare namespace ExpiryEventsConfiguration {
|
|
750
|
-
/**
|
|
751
|
-
* @internal
|
|
752
|
-
*/
|
|
753
|
-
const filterSensitiveLog: (obj: ExpiryEventsConfiguration) => any;
|
|
754
|
-
}
|
|
755
665
|
export interface GetAccountConfigurationResponse {
|
|
756
666
|
/**
|
|
757
667
|
* <p>Expiration events
|
|
@@ -759,12 +669,6 @@ export interface GetAccountConfigurationResponse {
|
|
|
759
669
|
*/
|
|
760
670
|
ExpiryEvents?: ExpiryEventsConfiguration;
|
|
761
671
|
}
|
|
762
|
-
export declare namespace GetAccountConfigurationResponse {
|
|
763
|
-
/**
|
|
764
|
-
* @internal
|
|
765
|
-
*/
|
|
766
|
-
const filterSensitiveLog: (obj: GetAccountConfigurationResponse) => any;
|
|
767
|
-
}
|
|
768
672
|
export interface GetCertificateRequest {
|
|
769
673
|
/**
|
|
770
674
|
* <p>String that contains a certificate ARN in the following format:</p>
|
|
@@ -775,12 +679,6 @@ export interface GetCertificateRequest {
|
|
|
775
679
|
*/
|
|
776
680
|
CertificateArn: string | undefined;
|
|
777
681
|
}
|
|
778
|
-
export declare namespace GetCertificateRequest {
|
|
779
|
-
/**
|
|
780
|
-
* @internal
|
|
781
|
-
*/
|
|
782
|
-
const filterSensitiveLog: (obj: GetCertificateRequest) => any;
|
|
783
|
-
}
|
|
784
682
|
export interface GetCertificateResponse {
|
|
785
683
|
/**
|
|
786
684
|
* <p>The ACM-issued certificate corresponding to the ARN specified as input.</p>
|
|
@@ -793,12 +691,6 @@ export interface GetCertificateResponse {
|
|
|
793
691
|
*/
|
|
794
692
|
CertificateChain?: string;
|
|
795
693
|
}
|
|
796
|
-
export declare namespace GetCertificateResponse {
|
|
797
|
-
/**
|
|
798
|
-
* @internal
|
|
799
|
-
*/
|
|
800
|
-
const filterSensitiveLog: (obj: GetCertificateResponse) => any;
|
|
801
|
-
}
|
|
802
694
|
export interface ImportCertificateRequest {
|
|
803
695
|
/**
|
|
804
696
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name
|
|
@@ -824,12 +716,6 @@ export interface ImportCertificateRequest {
|
|
|
824
716
|
*/
|
|
825
717
|
Tags?: Tag[];
|
|
826
718
|
}
|
|
827
|
-
export declare namespace ImportCertificateRequest {
|
|
828
|
-
/**
|
|
829
|
-
* @internal
|
|
830
|
-
*/
|
|
831
|
-
const filterSensitiveLog: (obj: ImportCertificateRequest) => any;
|
|
832
|
-
}
|
|
833
719
|
export interface ImportCertificateResponse {
|
|
834
720
|
/**
|
|
835
721
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Name
|
|
@@ -837,12 +723,6 @@ export interface ImportCertificateResponse {
|
|
|
837
723
|
*/
|
|
838
724
|
CertificateArn?: string;
|
|
839
725
|
}
|
|
840
|
-
export declare namespace ImportCertificateResponse {
|
|
841
|
-
/**
|
|
842
|
-
* @internal
|
|
843
|
-
*/
|
|
844
|
-
const filterSensitiveLog: (obj: ImportCertificateResponse) => any;
|
|
845
|
-
}
|
|
846
726
|
/**
|
|
847
727
|
* <p>An ACM quota has been exceeded.</p>
|
|
848
728
|
*/
|
|
@@ -888,12 +768,6 @@ export interface Filters {
|
|
|
888
768
|
*/
|
|
889
769
|
keyTypes?: (KeyAlgorithm | string)[];
|
|
890
770
|
}
|
|
891
|
-
export declare namespace Filters {
|
|
892
|
-
/**
|
|
893
|
-
* @internal
|
|
894
|
-
*/
|
|
895
|
-
const filterSensitiveLog: (obj: Filters) => any;
|
|
896
|
-
}
|
|
897
771
|
export interface ListCertificatesRequest {
|
|
898
772
|
/**
|
|
899
773
|
* <p>Filter the certificate list by status value.</p>
|
|
@@ -918,12 +792,6 @@ export interface ListCertificatesRequest {
|
|
|
918
792
|
*/
|
|
919
793
|
MaxItems?: number;
|
|
920
794
|
}
|
|
921
|
-
export declare namespace ListCertificatesRequest {
|
|
922
|
-
/**
|
|
923
|
-
* @internal
|
|
924
|
-
*/
|
|
925
|
-
const filterSensitiveLog: (obj: ListCertificatesRequest) => any;
|
|
926
|
-
}
|
|
927
795
|
/**
|
|
928
796
|
* <p>This structure is returned in the response object of <a>ListCertificates</a>
|
|
929
797
|
* action. </p>
|
|
@@ -945,12 +813,6 @@ export interface CertificateSummary {
|
|
|
945
813
|
*/
|
|
946
814
|
DomainName?: string;
|
|
947
815
|
}
|
|
948
|
-
export declare namespace CertificateSummary {
|
|
949
|
-
/**
|
|
950
|
-
* @internal
|
|
951
|
-
*/
|
|
952
|
-
const filterSensitiveLog: (obj: CertificateSummary) => any;
|
|
953
|
-
}
|
|
954
816
|
export interface ListCertificatesResponse {
|
|
955
817
|
/**
|
|
956
818
|
* <p>When the list is truncated, this value is present and contains the value to use for the
|
|
@@ -962,12 +824,6 @@ export interface ListCertificatesResponse {
|
|
|
962
824
|
*/
|
|
963
825
|
CertificateSummaryList?: CertificateSummary[];
|
|
964
826
|
}
|
|
965
|
-
export declare namespace ListCertificatesResponse {
|
|
966
|
-
/**
|
|
967
|
-
* @internal
|
|
968
|
-
*/
|
|
969
|
-
const filterSensitiveLog: (obj: ListCertificatesResponse) => any;
|
|
970
|
-
}
|
|
971
827
|
export interface ListTagsForCertificateRequest {
|
|
972
828
|
/**
|
|
973
829
|
* <p>String that contains the ARN of the ACM certificate for which you want to list the tags.
|
|
@@ -979,24 +835,12 @@ export interface ListTagsForCertificateRequest {
|
|
|
979
835
|
*/
|
|
980
836
|
CertificateArn: string | undefined;
|
|
981
837
|
}
|
|
982
|
-
export declare namespace ListTagsForCertificateRequest {
|
|
983
|
-
/**
|
|
984
|
-
* @internal
|
|
985
|
-
*/
|
|
986
|
-
const filterSensitiveLog: (obj: ListTagsForCertificateRequest) => any;
|
|
987
|
-
}
|
|
988
838
|
export interface ListTagsForCertificateResponse {
|
|
989
839
|
/**
|
|
990
840
|
* <p>The key-value pairs that define the applied tags.</p>
|
|
991
841
|
*/
|
|
992
842
|
Tags?: Tag[];
|
|
993
843
|
}
|
|
994
|
-
export declare namespace ListTagsForCertificateResponse {
|
|
995
|
-
/**
|
|
996
|
-
* @internal
|
|
997
|
-
*/
|
|
998
|
-
const filterSensitiveLog: (obj: ListTagsForCertificateResponse) => any;
|
|
999
|
-
}
|
|
1000
844
|
/**
|
|
1001
845
|
* <p>You are trying to
|
|
1002
846
|
* update a resource or configuration that is already being created or updated. Wait for the
|
|
@@ -1026,12 +870,6 @@ export interface PutAccountConfigurationRequest {
|
|
|
1026
870
|
*/
|
|
1027
871
|
IdempotencyToken: string | undefined;
|
|
1028
872
|
}
|
|
1029
|
-
export declare namespace PutAccountConfigurationRequest {
|
|
1030
|
-
/**
|
|
1031
|
-
* @internal
|
|
1032
|
-
*/
|
|
1033
|
-
const filterSensitiveLog: (obj: PutAccountConfigurationRequest) => any;
|
|
1034
|
-
}
|
|
1035
873
|
/**
|
|
1036
874
|
* <p>The supplied input
|
|
1037
875
|
* failed to satisfy constraints of an Amazon Web Services service.</p>
|
|
@@ -1061,12 +899,6 @@ export interface RemoveTagsFromCertificateRequest {
|
|
|
1061
899
|
*/
|
|
1062
900
|
Tags: Tag[] | undefined;
|
|
1063
901
|
}
|
|
1064
|
-
export declare namespace RemoveTagsFromCertificateRequest {
|
|
1065
|
-
/**
|
|
1066
|
-
* @internal
|
|
1067
|
-
*/
|
|
1068
|
-
const filterSensitiveLog: (obj: RemoveTagsFromCertificateRequest) => any;
|
|
1069
|
-
}
|
|
1070
902
|
export interface RenewCertificateRequest {
|
|
1071
903
|
/**
|
|
1072
904
|
* <p>String that contains the ARN of the ACM certificate to be renewed. This must be of the
|
|
@@ -1078,12 +910,6 @@ export interface RenewCertificateRequest {
|
|
|
1078
910
|
*/
|
|
1079
911
|
CertificateArn: string | undefined;
|
|
1080
912
|
}
|
|
1081
|
-
export declare namespace RenewCertificateRequest {
|
|
1082
|
-
/**
|
|
1083
|
-
* @internal
|
|
1084
|
-
*/
|
|
1085
|
-
const filterSensitiveLog: (obj: RenewCertificateRequest) => any;
|
|
1086
|
-
}
|
|
1087
913
|
/**
|
|
1088
914
|
* <p>One or more values in the <a>DomainValidationOption</a> structure is
|
|
1089
915
|
* incorrect.</p>
|
|
@@ -1132,12 +958,6 @@ export interface DomainValidationOption {
|
|
|
1132
958
|
*/
|
|
1133
959
|
ValidationDomain: string | undefined;
|
|
1134
960
|
}
|
|
1135
|
-
export declare namespace DomainValidationOption {
|
|
1136
|
-
/**
|
|
1137
|
-
* @internal
|
|
1138
|
-
*/
|
|
1139
|
-
const filterSensitiveLog: (obj: DomainValidationOption) => any;
|
|
1140
|
-
}
|
|
1141
961
|
export interface RequestCertificateRequest {
|
|
1142
962
|
/**
|
|
1143
963
|
* <p> Fully qualified domain name (FQDN), such as www.example.com, that you want to secure with
|
|
@@ -1224,12 +1044,6 @@ export interface RequestCertificateRequest {
|
|
|
1224
1044
|
*/
|
|
1225
1045
|
Tags?: Tag[];
|
|
1226
1046
|
}
|
|
1227
|
-
export declare namespace RequestCertificateRequest {
|
|
1228
|
-
/**
|
|
1229
|
-
* @internal
|
|
1230
|
-
*/
|
|
1231
|
-
const filterSensitiveLog: (obj: RequestCertificateRequest) => any;
|
|
1232
|
-
}
|
|
1233
1047
|
export interface RequestCertificateResponse {
|
|
1234
1048
|
/**
|
|
1235
1049
|
* <p>String that contains the ARN of the issued certificate. This must be of the form:</p>
|
|
@@ -1239,12 +1053,6 @@ export interface RequestCertificateResponse {
|
|
|
1239
1053
|
*/
|
|
1240
1054
|
CertificateArn?: string;
|
|
1241
1055
|
}
|
|
1242
|
-
export declare namespace RequestCertificateResponse {
|
|
1243
|
-
/**
|
|
1244
|
-
* @internal
|
|
1245
|
-
*/
|
|
1246
|
-
const filterSensitiveLog: (obj: RequestCertificateResponse) => any;
|
|
1247
|
-
}
|
|
1248
1056
|
/**
|
|
1249
1057
|
* <p>Processing has reached an invalid state.</p>
|
|
1250
1058
|
*/
|
|
@@ -1300,12 +1108,6 @@ export interface ResendValidationEmailRequest {
|
|
|
1300
1108
|
*/
|
|
1301
1109
|
ValidationDomain: string | undefined;
|
|
1302
1110
|
}
|
|
1303
|
-
export declare namespace ResendValidationEmailRequest {
|
|
1304
|
-
/**
|
|
1305
|
-
* @internal
|
|
1306
|
-
*/
|
|
1307
|
-
const filterSensitiveLog: (obj: ResendValidationEmailRequest) => any;
|
|
1308
|
-
}
|
|
1309
1111
|
export interface UpdateCertificateOptionsRequest {
|
|
1310
1112
|
/**
|
|
1311
1113
|
* <p>ARN of the requested certificate to update. This must be of the form:</p>
|
|
@@ -1323,9 +1125,139 @@ export interface UpdateCertificateOptionsRequest {
|
|
|
1323
1125
|
*/
|
|
1324
1126
|
Options: CertificateOptions | undefined;
|
|
1325
1127
|
}
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1128
|
+
/**
|
|
1129
|
+
* @internal
|
|
1130
|
+
*/
|
|
1131
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1132
|
+
/**
|
|
1133
|
+
* @internal
|
|
1134
|
+
*/
|
|
1135
|
+
export declare const AddTagsToCertificateRequestFilterSensitiveLog: (obj: AddTagsToCertificateRequest) => any;
|
|
1136
|
+
/**
|
|
1137
|
+
* @internal
|
|
1138
|
+
*/
|
|
1139
|
+
export declare const ResourceRecordFilterSensitiveLog: (obj: ResourceRecord) => any;
|
|
1140
|
+
/**
|
|
1141
|
+
* @internal
|
|
1142
|
+
*/
|
|
1143
|
+
export declare const DomainValidationFilterSensitiveLog: (obj: DomainValidation) => any;
|
|
1144
|
+
/**
|
|
1145
|
+
* @internal
|
|
1146
|
+
*/
|
|
1147
|
+
export declare const ExtendedKeyUsageFilterSensitiveLog: (obj: ExtendedKeyUsage) => any;
|
|
1148
|
+
/**
|
|
1149
|
+
* @internal
|
|
1150
|
+
*/
|
|
1151
|
+
export declare const KeyUsageFilterSensitiveLog: (obj: KeyUsage) => any;
|
|
1152
|
+
/**
|
|
1153
|
+
* @internal
|
|
1154
|
+
*/
|
|
1155
|
+
export declare const CertificateOptionsFilterSensitiveLog: (obj: CertificateOptions) => any;
|
|
1156
|
+
/**
|
|
1157
|
+
* @internal
|
|
1158
|
+
*/
|
|
1159
|
+
export declare const RenewalSummaryFilterSensitiveLog: (obj: RenewalSummary) => any;
|
|
1160
|
+
/**
|
|
1161
|
+
* @internal
|
|
1162
|
+
*/
|
|
1163
|
+
export declare const CertificateDetailFilterSensitiveLog: (obj: CertificateDetail) => any;
|
|
1164
|
+
/**
|
|
1165
|
+
* @internal
|
|
1166
|
+
*/
|
|
1167
|
+
export declare const DeleteCertificateRequestFilterSensitiveLog: (obj: DeleteCertificateRequest) => any;
|
|
1168
|
+
/**
|
|
1169
|
+
* @internal
|
|
1170
|
+
*/
|
|
1171
|
+
export declare const DescribeCertificateRequestFilterSensitiveLog: (obj: DescribeCertificateRequest) => any;
|
|
1172
|
+
/**
|
|
1173
|
+
* @internal
|
|
1174
|
+
*/
|
|
1175
|
+
export declare const DescribeCertificateResponseFilterSensitiveLog: (obj: DescribeCertificateResponse) => any;
|
|
1176
|
+
/**
|
|
1177
|
+
* @internal
|
|
1178
|
+
*/
|
|
1179
|
+
export declare const ExportCertificateRequestFilterSensitiveLog: (obj: ExportCertificateRequest) => any;
|
|
1180
|
+
/**
|
|
1181
|
+
* @internal
|
|
1182
|
+
*/
|
|
1183
|
+
export declare const ExportCertificateResponseFilterSensitiveLog: (obj: ExportCertificateResponse) => any;
|
|
1184
|
+
/**
|
|
1185
|
+
* @internal
|
|
1186
|
+
*/
|
|
1187
|
+
export declare const ExpiryEventsConfigurationFilterSensitiveLog: (obj: ExpiryEventsConfiguration) => any;
|
|
1188
|
+
/**
|
|
1189
|
+
* @internal
|
|
1190
|
+
*/
|
|
1191
|
+
export declare const GetAccountConfigurationResponseFilterSensitiveLog: (obj: GetAccountConfigurationResponse) => any;
|
|
1192
|
+
/**
|
|
1193
|
+
* @internal
|
|
1194
|
+
*/
|
|
1195
|
+
export declare const GetCertificateRequestFilterSensitiveLog: (obj: GetCertificateRequest) => any;
|
|
1196
|
+
/**
|
|
1197
|
+
* @internal
|
|
1198
|
+
*/
|
|
1199
|
+
export declare const GetCertificateResponseFilterSensitiveLog: (obj: GetCertificateResponse) => any;
|
|
1200
|
+
/**
|
|
1201
|
+
* @internal
|
|
1202
|
+
*/
|
|
1203
|
+
export declare const ImportCertificateRequestFilterSensitiveLog: (obj: ImportCertificateRequest) => any;
|
|
1204
|
+
/**
|
|
1205
|
+
* @internal
|
|
1206
|
+
*/
|
|
1207
|
+
export declare const ImportCertificateResponseFilterSensitiveLog: (obj: ImportCertificateResponse) => any;
|
|
1208
|
+
/**
|
|
1209
|
+
* @internal
|
|
1210
|
+
*/
|
|
1211
|
+
export declare const FiltersFilterSensitiveLog: (obj: Filters) => any;
|
|
1212
|
+
/**
|
|
1213
|
+
* @internal
|
|
1214
|
+
*/
|
|
1215
|
+
export declare const ListCertificatesRequestFilterSensitiveLog: (obj: ListCertificatesRequest) => any;
|
|
1216
|
+
/**
|
|
1217
|
+
* @internal
|
|
1218
|
+
*/
|
|
1219
|
+
export declare const CertificateSummaryFilterSensitiveLog: (obj: CertificateSummary) => any;
|
|
1220
|
+
/**
|
|
1221
|
+
* @internal
|
|
1222
|
+
*/
|
|
1223
|
+
export declare const ListCertificatesResponseFilterSensitiveLog: (obj: ListCertificatesResponse) => any;
|
|
1224
|
+
/**
|
|
1225
|
+
* @internal
|
|
1226
|
+
*/
|
|
1227
|
+
export declare const ListTagsForCertificateRequestFilterSensitiveLog: (obj: ListTagsForCertificateRequest) => any;
|
|
1228
|
+
/**
|
|
1229
|
+
* @internal
|
|
1230
|
+
*/
|
|
1231
|
+
export declare const ListTagsForCertificateResponseFilterSensitiveLog: (obj: ListTagsForCertificateResponse) => any;
|
|
1232
|
+
/**
|
|
1233
|
+
* @internal
|
|
1234
|
+
*/
|
|
1235
|
+
export declare const PutAccountConfigurationRequestFilterSensitiveLog: (obj: PutAccountConfigurationRequest) => any;
|
|
1236
|
+
/**
|
|
1237
|
+
* @internal
|
|
1238
|
+
*/
|
|
1239
|
+
export declare const RemoveTagsFromCertificateRequestFilterSensitiveLog: (obj: RemoveTagsFromCertificateRequest) => any;
|
|
1240
|
+
/**
|
|
1241
|
+
* @internal
|
|
1242
|
+
*/
|
|
1243
|
+
export declare const RenewCertificateRequestFilterSensitiveLog: (obj: RenewCertificateRequest) => any;
|
|
1244
|
+
/**
|
|
1245
|
+
* @internal
|
|
1246
|
+
*/
|
|
1247
|
+
export declare const DomainValidationOptionFilterSensitiveLog: (obj: DomainValidationOption) => any;
|
|
1248
|
+
/**
|
|
1249
|
+
* @internal
|
|
1250
|
+
*/
|
|
1251
|
+
export declare const RequestCertificateRequestFilterSensitiveLog: (obj: RequestCertificateRequest) => any;
|
|
1252
|
+
/**
|
|
1253
|
+
* @internal
|
|
1254
|
+
*/
|
|
1255
|
+
export declare const RequestCertificateResponseFilterSensitiveLog: (obj: RequestCertificateResponse) => any;
|
|
1256
|
+
/**
|
|
1257
|
+
* @internal
|
|
1258
|
+
*/
|
|
1259
|
+
export declare const ResendValidationEmailRequestFilterSensitiveLog: (obj: ResendValidationEmailRequest) => any;
|
|
1260
|
+
/**
|
|
1261
|
+
* @internal
|
|
1262
|
+
*/
|
|
1263
|
+
export declare const UpdateCertificateOptionsRequestFilterSensitiveLog: (obj: UpdateCertificateOptionsRequest) => any;
|