@aws-sdk/client-acm-pca 3.134.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/CreateCertificateAuthorityAuditReportCommand.js +2 -2
- package/dist-cjs/commands/CreateCertificateAuthorityCommand.js +2 -2
- package/dist-cjs/commands/CreatePermissionCommand.js +1 -1
- package/dist-cjs/commands/DeleteCertificateAuthorityCommand.js +1 -1
- package/dist-cjs/commands/DeletePermissionCommand.js +1 -1
- package/dist-cjs/commands/DeletePolicyCommand.js +1 -1
- package/dist-cjs/commands/DescribeCertificateAuthorityAuditReportCommand.js +2 -2
- package/dist-cjs/commands/DescribeCertificateAuthorityCommand.js +2 -2
- package/dist-cjs/commands/GetCertificateAuthorityCertificateCommand.js +2 -2
- package/dist-cjs/commands/GetCertificateAuthorityCsrCommand.js +2 -2
- package/dist-cjs/commands/GetCertificateCommand.js +2 -2
- package/dist-cjs/commands/GetPolicyCommand.js +2 -2
- package/dist-cjs/commands/ImportCertificateAuthorityCertificateCommand.js +1 -1
- package/dist-cjs/commands/IssueCertificateCommand.js +2 -2
- package/dist-cjs/commands/ListCertificateAuthoritiesCommand.js +2 -2
- package/dist-cjs/commands/ListPermissionsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsCommand.js +2 -2
- package/dist-cjs/commands/PutPolicyCommand.js +1 -1
- package/dist-cjs/commands/RestoreCertificateAuthorityCommand.js +1 -1
- package/dist-cjs/commands/RevokeCertificateCommand.js +1 -1
- package/dist-cjs/commands/TagCertificateAuthorityCommand.js +1 -1
- package/dist-cjs/commands/UntagCertificateAuthorityCommand.js +1 -1
- package/dist-cjs/commands/UpdateCertificateAuthorityCommand.js +1 -1
- package/dist-cjs/models/models_0.js +238 -356
- package/dist-es/commands/CreateCertificateAuthorityAuditReportCommand.js +3 -3
- package/dist-es/commands/CreateCertificateAuthorityCommand.js +3 -3
- package/dist-es/commands/CreatePermissionCommand.js +2 -2
- package/dist-es/commands/DeleteCertificateAuthorityCommand.js +2 -2
- package/dist-es/commands/DeletePermissionCommand.js +2 -2
- package/dist-es/commands/DeletePolicyCommand.js +2 -2
- package/dist-es/commands/DescribeCertificateAuthorityAuditReportCommand.js +3 -3
- package/dist-es/commands/DescribeCertificateAuthorityCommand.js +3 -3
- package/dist-es/commands/GetCertificateAuthorityCertificateCommand.js +3 -3
- package/dist-es/commands/GetCertificateAuthorityCsrCommand.js +3 -3
- package/dist-es/commands/GetCertificateCommand.js +3 -3
- package/dist-es/commands/GetPolicyCommand.js +3 -3
- package/dist-es/commands/ImportCertificateAuthorityCertificateCommand.js +2 -2
- package/dist-es/commands/IssueCertificateCommand.js +3 -3
- package/dist-es/commands/ListCertificateAuthoritiesCommand.js +3 -3
- package/dist-es/commands/ListPermissionsCommand.js +3 -3
- package/dist-es/commands/ListTagsCommand.js +3 -3
- package/dist-es/commands/PutPolicyCommand.js +2 -2
- package/dist-es/commands/RestoreCertificateAuthorityCommand.js +2 -2
- package/dist-es/commands/RevokeCertificateCommand.js +2 -2
- package/dist-es/commands/TagCertificateAuthorityCommand.js +2 -2
- package/dist-es/commands/UntagCertificateAuthorityCommand.js +2 -2
- package/dist-es/commands/UpdateCertificateAuthorityCommand.js +2 -2
- package/dist-es/models/models_0.js +59 -236
- package/dist-types/models/models_0.d.ts +236 -354
- package/dist-types/ts3.4/models/models_0.d.ts +118 -236
- package/package.json +6 -6
|
@@ -15,12 +15,6 @@ export interface CustomAttribute {
|
|
|
15
15
|
*/
|
|
16
16
|
Value: string | undefined;
|
|
17
17
|
}
|
|
18
|
-
export declare namespace CustomAttribute {
|
|
19
|
-
/**
|
|
20
|
-
* @internal
|
|
21
|
-
*/
|
|
22
|
-
const filterSensitiveLog: (obj: CustomAttribute) => any;
|
|
23
|
-
}
|
|
24
18
|
/**
|
|
25
19
|
* <p>Contains information about the certificate subject. The <code>Subject</code> field in
|
|
26
20
|
* the certificate identifies the entity that owns or controls the public key in the
|
|
@@ -109,12 +103,6 @@ export interface ASN1Subject {
|
|
|
109
103
|
*/
|
|
110
104
|
CustomAttributes?: CustomAttribute[];
|
|
111
105
|
}
|
|
112
|
-
export declare namespace ASN1Subject {
|
|
113
|
-
/**
|
|
114
|
-
* @internal
|
|
115
|
-
*/
|
|
116
|
-
const filterSensitiveLog: (obj: ASN1Subject) => any;
|
|
117
|
-
}
|
|
118
106
|
/**
|
|
119
107
|
* <p>Describes an Electronic Data Interchange (EDI) entity as described in as defined in
|
|
120
108
|
* <a href="https://datatracker.ietf.org/doc/html/rfc5280">Subject Alternative
|
|
@@ -130,12 +118,6 @@ export interface EdiPartyName {
|
|
|
130
118
|
*/
|
|
131
119
|
NameAssigner?: string;
|
|
132
120
|
}
|
|
133
|
-
export declare namespace EdiPartyName {
|
|
134
|
-
/**
|
|
135
|
-
* @internal
|
|
136
|
-
*/
|
|
137
|
-
const filterSensitiveLog: (obj: EdiPartyName) => any;
|
|
138
|
-
}
|
|
139
121
|
/**
|
|
140
122
|
* <p>Defines a custom ASN.1 X.400 <code>GeneralName</code> using an object identifier (OID)
|
|
141
123
|
* and value. The OID must satisfy the regular expression shown below. For more
|
|
@@ -152,12 +134,6 @@ export interface OtherName {
|
|
|
152
134
|
*/
|
|
153
135
|
Value: string | undefined;
|
|
154
136
|
}
|
|
155
|
-
export declare namespace OtherName {
|
|
156
|
-
/**
|
|
157
|
-
* @internal
|
|
158
|
-
*/
|
|
159
|
-
const filterSensitiveLog: (obj: OtherName) => any;
|
|
160
|
-
}
|
|
161
137
|
/**
|
|
162
138
|
* <p>Describes an ASN.1 X.400 <code>GeneralName</code> as defined in <a href="https://datatracker.ietf.org/doc/html/rfc5280">RFC 5280</a>. Only one of
|
|
163
139
|
* the following naming options should be provided. Providing more than one option results
|
|
@@ -202,12 +178,6 @@ export interface GeneralName {
|
|
|
202
178
|
*/
|
|
203
179
|
RegisteredId?: string;
|
|
204
180
|
}
|
|
205
|
-
export declare namespace GeneralName {
|
|
206
|
-
/**
|
|
207
|
-
* @internal
|
|
208
|
-
*/
|
|
209
|
-
const filterSensitiveLog: (obj: GeneralName) => any;
|
|
210
|
-
}
|
|
211
181
|
export declare enum AccessMethodType {
|
|
212
182
|
CA_REPOSITORY = "CA_REPOSITORY",
|
|
213
183
|
RESOURCE_PKI_MANIFEST = "RESOURCE_PKI_MANIFEST",
|
|
@@ -231,12 +201,6 @@ export interface AccessMethod {
|
|
|
231
201
|
*/
|
|
232
202
|
AccessMethodType?: AccessMethodType | string;
|
|
233
203
|
}
|
|
234
|
-
export declare namespace AccessMethod {
|
|
235
|
-
/**
|
|
236
|
-
* @internal
|
|
237
|
-
*/
|
|
238
|
-
const filterSensitiveLog: (obj: AccessMethod) => any;
|
|
239
|
-
}
|
|
240
204
|
/**
|
|
241
205
|
* <p>Provides access information used by the <code>authorityInfoAccess</code> and
|
|
242
206
|
* <code>subjectInfoAccess</code> extensions described in <a href="https://datatracker.ietf.org/doc/html/rfc5280">RFC 5280</a>.</p>
|
|
@@ -251,12 +215,6 @@ export interface AccessDescription {
|
|
|
251
215
|
*/
|
|
252
216
|
AccessLocation: GeneralName | undefined;
|
|
253
217
|
}
|
|
254
|
-
export declare namespace AccessDescription {
|
|
255
|
-
/**
|
|
256
|
-
* @internal
|
|
257
|
-
*/
|
|
258
|
-
const filterSensitiveLog: (obj: AccessDescription) => any;
|
|
259
|
-
}
|
|
260
218
|
/**
|
|
261
219
|
* <p>Defines one or more purposes for which the key contained in the certificate can be
|
|
262
220
|
* used. Default value for each option is false.</p>
|
|
@@ -299,12 +257,6 @@ export interface KeyUsage {
|
|
|
299
257
|
*/
|
|
300
258
|
DecipherOnly?: boolean;
|
|
301
259
|
}
|
|
302
|
-
export declare namespace KeyUsage {
|
|
303
|
-
/**
|
|
304
|
-
* @internal
|
|
305
|
-
*/
|
|
306
|
-
const filterSensitiveLog: (obj: KeyUsage) => any;
|
|
307
|
-
}
|
|
308
260
|
/**
|
|
309
261
|
* <p>Describes the certificate extensions to be added to the certificate signing request
|
|
310
262
|
* (CSR).</p>
|
|
@@ -322,12 +274,6 @@ export interface CsrExtensions {
|
|
|
322
274
|
*/
|
|
323
275
|
SubjectInformationAccess?: AccessDescription[];
|
|
324
276
|
}
|
|
325
|
-
export declare namespace CsrExtensions {
|
|
326
|
-
/**
|
|
327
|
-
* @internal
|
|
328
|
-
*/
|
|
329
|
-
const filterSensitiveLog: (obj: CsrExtensions) => any;
|
|
330
|
-
}
|
|
331
277
|
export declare enum KeyAlgorithm {
|
|
332
278
|
EC_prime256v1 = "EC_prime256v1",
|
|
333
279
|
EC_secp384r1 = "EC_secp384r1",
|
|
@@ -373,12 +319,6 @@ export interface CertificateAuthorityConfiguration {
|
|
|
373
319
|
*/
|
|
374
320
|
CsrExtensions?: CsrExtensions;
|
|
375
321
|
}
|
|
376
|
-
export declare namespace CertificateAuthorityConfiguration {
|
|
377
|
-
/**
|
|
378
|
-
* @internal
|
|
379
|
-
*/
|
|
380
|
-
const filterSensitiveLog: (obj: CertificateAuthorityConfiguration) => any;
|
|
381
|
-
}
|
|
382
322
|
export declare enum CertificateAuthorityType {
|
|
383
323
|
ROOT = "ROOT",
|
|
384
324
|
SUBORDINATE = "SUBORDINATE"
|
|
@@ -551,12 +491,6 @@ export interface CrlConfiguration {
|
|
|
551
491
|
*/
|
|
552
492
|
S3ObjectAcl?: S3ObjectAcl | string;
|
|
553
493
|
}
|
|
554
|
-
export declare namespace CrlConfiguration {
|
|
555
|
-
/**
|
|
556
|
-
* @internal
|
|
557
|
-
*/
|
|
558
|
-
const filterSensitiveLog: (obj: CrlConfiguration) => any;
|
|
559
|
-
}
|
|
560
494
|
/**
|
|
561
495
|
* <p>Contains information to enable and configure Online Certificate Status Protocol (OCSP)
|
|
562
496
|
* for validating certificate revocation status.</p>
|
|
@@ -580,12 +514,6 @@ export interface OcspConfiguration {
|
|
|
580
514
|
*/
|
|
581
515
|
OcspCustomCname?: string;
|
|
582
516
|
}
|
|
583
|
-
export declare namespace OcspConfiguration {
|
|
584
|
-
/**
|
|
585
|
-
* @internal
|
|
586
|
-
*/
|
|
587
|
-
const filterSensitiveLog: (obj: OcspConfiguration) => any;
|
|
588
|
-
}
|
|
589
517
|
/**
|
|
590
518
|
* <p>Certificate revocation information used by the <a href="https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_CreateCertificateAuthority.html">CreateCertificateAuthority</a> and <a href="https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_UpdateCertificateAuthority.html">UpdateCertificateAuthority</a> actions. Your private certificate authority (CA)
|
|
591
519
|
* can configure Online Certificate Status Protocol (OCSP) support and/or maintain a
|
|
@@ -610,12 +538,6 @@ export interface RevocationConfiguration {
|
|
|
610
538
|
*/
|
|
611
539
|
OcspConfiguration?: OcspConfiguration;
|
|
612
540
|
}
|
|
613
|
-
export declare namespace RevocationConfiguration {
|
|
614
|
-
/**
|
|
615
|
-
* @internal
|
|
616
|
-
*/
|
|
617
|
-
const filterSensitiveLog: (obj: RevocationConfiguration) => any;
|
|
618
|
-
}
|
|
619
541
|
/**
|
|
620
542
|
* <p>Tags are labels that you can use to identify and organize your private CAs. Each tag
|
|
621
543
|
* consists of a key and an optional value. You can associate up to 50 tags with a private
|
|
@@ -632,12 +554,6 @@ export interface Tag {
|
|
|
632
554
|
*/
|
|
633
555
|
Value?: string;
|
|
634
556
|
}
|
|
635
|
-
export declare namespace Tag {
|
|
636
|
-
/**
|
|
637
|
-
* @internal
|
|
638
|
-
*/
|
|
639
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
640
|
-
}
|
|
641
557
|
export interface CreateCertificateAuthorityRequest {
|
|
642
558
|
/**
|
|
643
559
|
* <p>Name and bit size of the private key algorithm, the name of the signing algorithm, and
|
|
@@ -695,12 +611,6 @@ export interface CreateCertificateAuthorityRequest {
|
|
|
695
611
|
*/
|
|
696
612
|
Tags?: Tag[];
|
|
697
613
|
}
|
|
698
|
-
export declare namespace CreateCertificateAuthorityRequest {
|
|
699
|
-
/**
|
|
700
|
-
* @internal
|
|
701
|
-
*/
|
|
702
|
-
const filterSensitiveLog: (obj: CreateCertificateAuthorityRequest) => any;
|
|
703
|
-
}
|
|
704
614
|
export interface CreateCertificateAuthorityResponse {
|
|
705
615
|
/**
|
|
706
616
|
* <p>If successful, the Amazon Resource Name (ARN) of the certificate authority (CA). This
|
|
@@ -712,12 +622,6 @@ export interface CreateCertificateAuthorityResponse {
|
|
|
712
622
|
*/
|
|
713
623
|
CertificateAuthorityArn?: string;
|
|
714
624
|
}
|
|
715
|
-
export declare namespace CreateCertificateAuthorityResponse {
|
|
716
|
-
/**
|
|
717
|
-
* @internal
|
|
718
|
-
*/
|
|
719
|
-
const filterSensitiveLog: (obj: CreateCertificateAuthorityResponse) => any;
|
|
720
|
-
}
|
|
721
625
|
/**
|
|
722
626
|
* <p>One or more of the specified arguments was not valid.</p>
|
|
723
627
|
*/
|
|
@@ -786,12 +690,6 @@ export interface CreateCertificateAuthorityAuditReportRequest {
|
|
|
786
690
|
*/
|
|
787
691
|
AuditReportResponseFormat: AuditReportResponseFormat | string | undefined;
|
|
788
692
|
}
|
|
789
|
-
export declare namespace CreateCertificateAuthorityAuditReportRequest {
|
|
790
|
-
/**
|
|
791
|
-
* @internal
|
|
792
|
-
*/
|
|
793
|
-
const filterSensitiveLog: (obj: CreateCertificateAuthorityAuditReportRequest) => any;
|
|
794
|
-
}
|
|
795
693
|
export interface CreateCertificateAuthorityAuditReportResponse {
|
|
796
694
|
/**
|
|
797
695
|
* <p>An alphanumeric string that contains a report identifier.</p>
|
|
@@ -803,12 +701,6 @@ export interface CreateCertificateAuthorityAuditReportResponse {
|
|
|
803
701
|
*/
|
|
804
702
|
S3Key?: string;
|
|
805
703
|
}
|
|
806
|
-
export declare namespace CreateCertificateAuthorityAuditReportResponse {
|
|
807
|
-
/**
|
|
808
|
-
* @internal
|
|
809
|
-
*/
|
|
810
|
-
const filterSensitiveLog: (obj: CreateCertificateAuthorityAuditReportResponse) => any;
|
|
811
|
-
}
|
|
812
704
|
/**
|
|
813
705
|
* <p>The requested Amazon Resource Name (ARN) does not refer to an existing
|
|
814
706
|
* resource.</p>
|
|
@@ -897,12 +789,6 @@ export interface CreatePermissionRequest {
|
|
|
897
789
|
*/
|
|
898
790
|
Actions: (ActionType | string)[] | undefined;
|
|
899
791
|
}
|
|
900
|
-
export declare namespace CreatePermissionRequest {
|
|
901
|
-
/**
|
|
902
|
-
* @internal
|
|
903
|
-
*/
|
|
904
|
-
const filterSensitiveLog: (obj: CreatePermissionRequest) => any;
|
|
905
|
-
}
|
|
906
792
|
/**
|
|
907
793
|
* <p>The designated permission has already been given to the user.</p>
|
|
908
794
|
*/
|
|
@@ -940,12 +826,6 @@ export interface DeleteCertificateAuthorityRequest {
|
|
|
940
826
|
*/
|
|
941
827
|
PermanentDeletionTimeInDays?: number;
|
|
942
828
|
}
|
|
943
|
-
export declare namespace DeleteCertificateAuthorityRequest {
|
|
944
|
-
/**
|
|
945
|
-
* @internal
|
|
946
|
-
*/
|
|
947
|
-
const filterSensitiveLog: (obj: DeleteCertificateAuthorityRequest) => any;
|
|
948
|
-
}
|
|
949
829
|
export interface DeletePermissionRequest {
|
|
950
830
|
/**
|
|
951
831
|
* <p>The Amazon Resource Number (ARN) of the private CA that issued the permissions. You
|
|
@@ -967,12 +847,6 @@ export interface DeletePermissionRequest {
|
|
|
967
847
|
*/
|
|
968
848
|
SourceAccount?: string;
|
|
969
849
|
}
|
|
970
|
-
export declare namespace DeletePermissionRequest {
|
|
971
|
-
/**
|
|
972
|
-
* @internal
|
|
973
|
-
*/
|
|
974
|
-
const filterSensitiveLog: (obj: DeletePermissionRequest) => any;
|
|
975
|
-
}
|
|
976
850
|
export interface DeletePolicyRequest {
|
|
977
851
|
/**
|
|
978
852
|
* <p>The Amazon Resource Number (ARN) of the private CA that will have its policy deleted.
|
|
@@ -982,12 +856,6 @@ export interface DeletePolicyRequest {
|
|
|
982
856
|
*/
|
|
983
857
|
ResourceArn: string | undefined;
|
|
984
858
|
}
|
|
985
|
-
export declare namespace DeletePolicyRequest {
|
|
986
|
-
/**
|
|
987
|
-
* @internal
|
|
988
|
-
*/
|
|
989
|
-
const filterSensitiveLog: (obj: DeletePolicyRequest) => any;
|
|
990
|
-
}
|
|
991
859
|
/**
|
|
992
860
|
* <p>The current action was prevented because it would lock the caller out from performing
|
|
993
861
|
* subsequent actions. Verify that the specified parameters would not result in the caller
|
|
@@ -1011,12 +879,6 @@ export interface DescribeCertificateAuthorityRequest {
|
|
|
1011
879
|
*/
|
|
1012
880
|
CertificateAuthorityArn: string | undefined;
|
|
1013
881
|
}
|
|
1014
|
-
export declare namespace DescribeCertificateAuthorityRequest {
|
|
1015
|
-
/**
|
|
1016
|
-
* @internal
|
|
1017
|
-
*/
|
|
1018
|
-
const filterSensitiveLog: (obj: DescribeCertificateAuthorityRequest) => any;
|
|
1019
|
-
}
|
|
1020
882
|
export declare enum FailureReason {
|
|
1021
883
|
OTHER = "OTHER",
|
|
1022
884
|
REQUEST_TIMED_OUT = "REQUEST_TIMED_OUT",
|
|
@@ -1111,12 +973,6 @@ export interface CertificateAuthority {
|
|
|
1111
973
|
*/
|
|
1112
974
|
KeyStorageSecurityStandard?: KeyStorageSecurityStandard | string;
|
|
1113
975
|
}
|
|
1114
|
-
export declare namespace CertificateAuthority {
|
|
1115
|
-
/**
|
|
1116
|
-
* @internal
|
|
1117
|
-
*/
|
|
1118
|
-
const filterSensitiveLog: (obj: CertificateAuthority) => any;
|
|
1119
|
-
}
|
|
1120
976
|
export interface DescribeCertificateAuthorityResponse {
|
|
1121
977
|
/**
|
|
1122
978
|
* <p>A <a href="https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_CertificateAuthority.html">CertificateAuthority</a> structure that contains information about your private
|
|
@@ -1124,12 +980,6 @@ export interface DescribeCertificateAuthorityResponse {
|
|
|
1124
980
|
*/
|
|
1125
981
|
CertificateAuthority?: CertificateAuthority;
|
|
1126
982
|
}
|
|
1127
|
-
export declare namespace DescribeCertificateAuthorityResponse {
|
|
1128
|
-
/**
|
|
1129
|
-
* @internal
|
|
1130
|
-
*/
|
|
1131
|
-
const filterSensitiveLog: (obj: DescribeCertificateAuthorityResponse) => any;
|
|
1132
|
-
}
|
|
1133
983
|
export interface DescribeCertificateAuthorityAuditReportRequest {
|
|
1134
984
|
/**
|
|
1135
985
|
* <p>The Amazon Resource Name (ARN) of the private CA. This must be of the form:</p>
|
|
@@ -1144,12 +994,6 @@ export interface DescribeCertificateAuthorityAuditReportRequest {
|
|
|
1144
994
|
*/
|
|
1145
995
|
AuditReportId: string | undefined;
|
|
1146
996
|
}
|
|
1147
|
-
export declare namespace DescribeCertificateAuthorityAuditReportRequest {
|
|
1148
|
-
/**
|
|
1149
|
-
* @internal
|
|
1150
|
-
*/
|
|
1151
|
-
const filterSensitiveLog: (obj: DescribeCertificateAuthorityAuditReportRequest) => any;
|
|
1152
|
-
}
|
|
1153
997
|
export declare enum AuditReportStatus {
|
|
1154
998
|
CREATING = "CREATING",
|
|
1155
999
|
FAILED = "FAILED",
|
|
@@ -1174,12 +1018,6 @@ export interface DescribeCertificateAuthorityAuditReportResponse {
|
|
|
1174
1018
|
*/
|
|
1175
1019
|
CreatedAt?: Date;
|
|
1176
1020
|
}
|
|
1177
|
-
export declare namespace DescribeCertificateAuthorityAuditReportResponse {
|
|
1178
|
-
/**
|
|
1179
|
-
* @internal
|
|
1180
|
-
*/
|
|
1181
|
-
const filterSensitiveLog: (obj: DescribeCertificateAuthorityAuditReportResponse) => any;
|
|
1182
|
-
}
|
|
1183
1021
|
export interface GetCertificateRequest {
|
|
1184
1022
|
/**
|
|
1185
1023
|
* <p>The Amazon Resource Name (ARN) that was returned when you called <a href="https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_CreateCertificateAuthority.html">CreateCertificateAuthority</a>. This must be of the form: </p>
|
|
@@ -1199,12 +1037,6 @@ export interface GetCertificateRequest {
|
|
|
1199
1037
|
*/
|
|
1200
1038
|
CertificateArn: string | undefined;
|
|
1201
1039
|
}
|
|
1202
|
-
export declare namespace GetCertificateRequest {
|
|
1203
|
-
/**
|
|
1204
|
-
* @internal
|
|
1205
|
-
*/
|
|
1206
|
-
const filterSensitiveLog: (obj: GetCertificateRequest) => any;
|
|
1207
|
-
}
|
|
1208
1040
|
export interface GetCertificateResponse {
|
|
1209
1041
|
/**
|
|
1210
1042
|
* <p>The base64 PEM-encoded certificate specified by the <code>CertificateArn</code>
|
|
@@ -1217,12 +1049,6 @@ export interface GetCertificateResponse {
|
|
|
1217
1049
|
*/
|
|
1218
1050
|
CertificateChain?: string;
|
|
1219
1051
|
}
|
|
1220
|
-
export declare namespace GetCertificateResponse {
|
|
1221
|
-
/**
|
|
1222
|
-
* @internal
|
|
1223
|
-
*/
|
|
1224
|
-
const filterSensitiveLog: (obj: GetCertificateResponse) => any;
|
|
1225
|
-
}
|
|
1226
1052
|
export interface GetCertificateAuthorityCertificateRequest {
|
|
1227
1053
|
/**
|
|
1228
1054
|
* <p>The Amazon Resource Name (ARN) of your private CA. This is of the form:</p>
|
|
@@ -1233,12 +1059,6 @@ export interface GetCertificateAuthorityCertificateRequest {
|
|
|
1233
1059
|
*/
|
|
1234
1060
|
CertificateAuthorityArn: string | undefined;
|
|
1235
1061
|
}
|
|
1236
|
-
export declare namespace GetCertificateAuthorityCertificateRequest {
|
|
1237
|
-
/**
|
|
1238
|
-
* @internal
|
|
1239
|
-
*/
|
|
1240
|
-
const filterSensitiveLog: (obj: GetCertificateAuthorityCertificateRequest) => any;
|
|
1241
|
-
}
|
|
1242
1062
|
export interface GetCertificateAuthorityCertificateResponse {
|
|
1243
1063
|
/**
|
|
1244
1064
|
* <p>Base64-encoded certificate authority (CA) certificate.</p>
|
|
@@ -1252,12 +1072,6 @@ export interface GetCertificateAuthorityCertificateResponse {
|
|
|
1252
1072
|
*/
|
|
1253
1073
|
CertificateChain?: string;
|
|
1254
1074
|
}
|
|
1255
|
-
export declare namespace GetCertificateAuthorityCertificateResponse {
|
|
1256
|
-
/**
|
|
1257
|
-
* @internal
|
|
1258
|
-
*/
|
|
1259
|
-
const filterSensitiveLog: (obj: GetCertificateAuthorityCertificateResponse) => any;
|
|
1260
|
-
}
|
|
1261
1075
|
export interface GetCertificateAuthorityCsrRequest {
|
|
1262
1076
|
/**
|
|
1263
1077
|
* <p>The Amazon Resource Name (ARN) that was returned when you called the <a href="https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_CreateCertificateAuthority.html">CreateCertificateAuthority</a> action. This must be of the form: </p>
|
|
@@ -1268,12 +1082,6 @@ export interface GetCertificateAuthorityCsrRequest {
|
|
|
1268
1082
|
*/
|
|
1269
1083
|
CertificateAuthorityArn: string | undefined;
|
|
1270
1084
|
}
|
|
1271
|
-
export declare namespace GetCertificateAuthorityCsrRequest {
|
|
1272
|
-
/**
|
|
1273
|
-
* @internal
|
|
1274
|
-
*/
|
|
1275
|
-
const filterSensitiveLog: (obj: GetCertificateAuthorityCsrRequest) => any;
|
|
1276
|
-
}
|
|
1277
1085
|
export interface GetCertificateAuthorityCsrResponse {
|
|
1278
1086
|
/**
|
|
1279
1087
|
* <p>The base64 PEM-encoded certificate signing request (CSR) for your private CA
|
|
@@ -1281,12 +1089,6 @@ export interface GetCertificateAuthorityCsrResponse {
|
|
|
1281
1089
|
*/
|
|
1282
1090
|
Csr?: string;
|
|
1283
1091
|
}
|
|
1284
|
-
export declare namespace GetCertificateAuthorityCsrResponse {
|
|
1285
|
-
/**
|
|
1286
|
-
* @internal
|
|
1287
|
-
*/
|
|
1288
|
-
const filterSensitiveLog: (obj: GetCertificateAuthorityCsrResponse) => any;
|
|
1289
|
-
}
|
|
1290
1092
|
export interface GetPolicyRequest {
|
|
1291
1093
|
/**
|
|
1292
1094
|
* <p>The Amazon Resource Number (ARN) of the private CA that will have its policy
|
|
@@ -1296,24 +1098,12 @@ export interface GetPolicyRequest {
|
|
|
1296
1098
|
*/
|
|
1297
1099
|
ResourceArn: string | undefined;
|
|
1298
1100
|
}
|
|
1299
|
-
export declare namespace GetPolicyRequest {
|
|
1300
|
-
/**
|
|
1301
|
-
* @internal
|
|
1302
|
-
*/
|
|
1303
|
-
const filterSensitiveLog: (obj: GetPolicyRequest) => any;
|
|
1304
|
-
}
|
|
1305
1101
|
export interface GetPolicyResponse {
|
|
1306
1102
|
/**
|
|
1307
1103
|
* <p>The policy attached to the private CA as a JSON document.</p>
|
|
1308
1104
|
*/
|
|
1309
1105
|
Policy?: string;
|
|
1310
1106
|
}
|
|
1311
|
-
export declare namespace GetPolicyResponse {
|
|
1312
|
-
/**
|
|
1313
|
-
* @internal
|
|
1314
|
-
*/
|
|
1315
|
-
const filterSensitiveLog: (obj: GetPolicyResponse) => any;
|
|
1316
|
-
}
|
|
1317
1107
|
/**
|
|
1318
1108
|
* <p>The certificate authority certificate you are importing does not comply with
|
|
1319
1109
|
* conditions specified in the certificate that signed it.</p>
|
|
@@ -1350,12 +1140,6 @@ export interface ImportCertificateAuthorityCertificateRequest {
|
|
|
1350
1140
|
*/
|
|
1351
1141
|
CertificateChain?: Uint8Array;
|
|
1352
1142
|
}
|
|
1353
|
-
export declare namespace ImportCertificateAuthorityCertificateRequest {
|
|
1354
|
-
/**
|
|
1355
|
-
* @internal
|
|
1356
|
-
*/
|
|
1357
|
-
const filterSensitiveLog: (obj: ImportCertificateAuthorityCertificateRequest) => any;
|
|
1358
|
-
}
|
|
1359
1143
|
/**
|
|
1360
1144
|
* <p>The request action cannot be performed or is prohibited.</p>
|
|
1361
1145
|
*/
|
|
@@ -1392,12 +1176,6 @@ export interface Qualifier {
|
|
|
1392
1176
|
*/
|
|
1393
1177
|
CpsUri: string | undefined;
|
|
1394
1178
|
}
|
|
1395
|
-
export declare namespace Qualifier {
|
|
1396
|
-
/**
|
|
1397
|
-
* @internal
|
|
1398
|
-
*/
|
|
1399
|
-
const filterSensitiveLog: (obj: Qualifier) => any;
|
|
1400
|
-
}
|
|
1401
1179
|
/**
|
|
1402
1180
|
* <p>Modifies the <code>CertPolicyId</code> of a <code>PolicyInformation</code> object with
|
|
1403
1181
|
* a qualifier. ACM Private CA supports the certification practice statement (CPS)
|
|
@@ -1414,12 +1192,6 @@ export interface PolicyQualifierInfo {
|
|
|
1414
1192
|
*/
|
|
1415
1193
|
Qualifier: Qualifier | undefined;
|
|
1416
1194
|
}
|
|
1417
|
-
export declare namespace PolicyQualifierInfo {
|
|
1418
|
-
/**
|
|
1419
|
-
* @internal
|
|
1420
|
-
*/
|
|
1421
|
-
const filterSensitiveLog: (obj: PolicyQualifierInfo) => any;
|
|
1422
|
-
}
|
|
1423
1195
|
/**
|
|
1424
1196
|
* <p>Defines the X.509 <code>CertificatePolicies</code> extension.</p>
|
|
1425
1197
|
*/
|
|
@@ -1436,12 +1208,6 @@ export interface PolicyInformation {
|
|
|
1436
1208
|
*/
|
|
1437
1209
|
PolicyQualifiers?: PolicyQualifierInfo[];
|
|
1438
1210
|
}
|
|
1439
|
-
export declare namespace PolicyInformation {
|
|
1440
|
-
/**
|
|
1441
|
-
* @internal
|
|
1442
|
-
*/
|
|
1443
|
-
const filterSensitiveLog: (obj: PolicyInformation) => any;
|
|
1444
|
-
}
|
|
1445
1211
|
/**
|
|
1446
1212
|
* <p></p>
|
|
1447
1213
|
* <p>Specifies the X.509 extension information for a certificate.</p>
|
|
@@ -1469,12 +1235,6 @@ export interface CustomExtension {
|
|
|
1469
1235
|
*/
|
|
1470
1236
|
Critical?: boolean;
|
|
1471
1237
|
}
|
|
1472
|
-
export declare namespace CustomExtension {
|
|
1473
|
-
/**
|
|
1474
|
-
* @internal
|
|
1475
|
-
*/
|
|
1476
|
-
const filterSensitiveLog: (obj: CustomExtension) => any;
|
|
1477
|
-
}
|
|
1478
1238
|
export declare enum ExtendedKeyUsageType {
|
|
1479
1239
|
CERTIFICATE_TRANSPARENCY = "CERTIFICATE_TRANSPARENCY",
|
|
1480
1240
|
CLIENT_AUTH = "CLIENT_AUTH",
|
|
@@ -1502,12 +1262,6 @@ export interface ExtendedKeyUsage {
|
|
|
1502
1262
|
*/
|
|
1503
1263
|
ExtendedKeyUsageObjectIdentifier?: string;
|
|
1504
1264
|
}
|
|
1505
|
-
export declare namespace ExtendedKeyUsage {
|
|
1506
|
-
/**
|
|
1507
|
-
* @internal
|
|
1508
|
-
*/
|
|
1509
|
-
const filterSensitiveLog: (obj: ExtendedKeyUsage) => any;
|
|
1510
|
-
}
|
|
1511
1265
|
/**
|
|
1512
1266
|
* <p>Contains X.509 extension information for a certificate.</p>
|
|
1513
1267
|
*/
|
|
@@ -1549,12 +1303,6 @@ export interface Extensions {
|
|
|
1549
1303
|
*/
|
|
1550
1304
|
CustomExtensions?: CustomExtension[];
|
|
1551
1305
|
}
|
|
1552
|
-
export declare namespace Extensions {
|
|
1553
|
-
/**
|
|
1554
|
-
* @internal
|
|
1555
|
-
*/
|
|
1556
|
-
const filterSensitiveLog: (obj: Extensions) => any;
|
|
1557
|
-
}
|
|
1558
1306
|
/**
|
|
1559
1307
|
* <p>Contains X.509 certificate information to be placed in an issued certificate. An
|
|
1560
1308
|
* <code>APIPassthrough</code> or <code>APICSRPassthrough</code> template variant must
|
|
@@ -1577,12 +1325,6 @@ export interface ApiPassthrough {
|
|
|
1577
1325
|
*/
|
|
1578
1326
|
Subject?: ASN1Subject;
|
|
1579
1327
|
}
|
|
1580
|
-
export declare namespace ApiPassthrough {
|
|
1581
|
-
/**
|
|
1582
|
-
* @internal
|
|
1583
|
-
*/
|
|
1584
|
-
const filterSensitiveLog: (obj: ApiPassthrough) => any;
|
|
1585
|
-
}
|
|
1586
1328
|
export declare enum ValidityPeriodType {
|
|
1587
1329
|
ABSOLUTE = "ABSOLUTE",
|
|
1588
1330
|
DAYS = "DAYS",
|
|
@@ -1656,12 +1398,6 @@ export interface Validity {
|
|
|
1656
1398
|
*/
|
|
1657
1399
|
Type: ValidityPeriodType | string | undefined;
|
|
1658
1400
|
}
|
|
1659
|
-
export declare namespace Validity {
|
|
1660
|
-
/**
|
|
1661
|
-
* @internal
|
|
1662
|
-
*/
|
|
1663
|
-
const filterSensitiveLog: (obj: Validity) => any;
|
|
1664
|
-
}
|
|
1665
1401
|
export interface IssueCertificateRequest {
|
|
1666
1402
|
/**
|
|
1667
1403
|
* <p>Specifies X.509 certificate information to be included in the issued certificate. An
|
|
@@ -1766,12 +1502,6 @@ export interface IssueCertificateRequest {
|
|
|
1766
1502
|
*/
|
|
1767
1503
|
IdempotencyToken?: string;
|
|
1768
1504
|
}
|
|
1769
|
-
export declare namespace IssueCertificateRequest {
|
|
1770
|
-
/**
|
|
1771
|
-
* @internal
|
|
1772
|
-
*/
|
|
1773
|
-
const filterSensitiveLog: (obj: IssueCertificateRequest) => any;
|
|
1774
|
-
}
|
|
1775
1505
|
export interface IssueCertificateResponse {
|
|
1776
1506
|
/**
|
|
1777
1507
|
* <p>The Amazon Resource Name (ARN) of the issued certificate and the certificate serial
|
|
@@ -1783,12 +1513,6 @@ export interface IssueCertificateResponse {
|
|
|
1783
1513
|
*/
|
|
1784
1514
|
CertificateArn?: string;
|
|
1785
1515
|
}
|
|
1786
|
-
export declare namespace IssueCertificateResponse {
|
|
1787
|
-
/**
|
|
1788
|
-
* @internal
|
|
1789
|
-
*/
|
|
1790
|
-
const filterSensitiveLog: (obj: IssueCertificateResponse) => any;
|
|
1791
|
-
}
|
|
1792
1516
|
/**
|
|
1793
1517
|
* <p>The certificate signing request is invalid.</p>
|
|
1794
1518
|
*/
|
|
@@ -1837,12 +1561,6 @@ export interface ListCertificateAuthoritiesRequest {
|
|
|
1837
1561
|
*/
|
|
1838
1562
|
ResourceOwner?: ResourceOwner | string;
|
|
1839
1563
|
}
|
|
1840
|
-
export declare namespace ListCertificateAuthoritiesRequest {
|
|
1841
|
-
/**
|
|
1842
|
-
* @internal
|
|
1843
|
-
*/
|
|
1844
|
-
const filterSensitiveLog: (obj: ListCertificateAuthoritiesRequest) => any;
|
|
1845
|
-
}
|
|
1846
1564
|
export interface ListCertificateAuthoritiesResponse {
|
|
1847
1565
|
/**
|
|
1848
1566
|
* <p>Summary information about each certificate authority you have created.</p>
|
|
@@ -1854,12 +1572,6 @@ export interface ListCertificateAuthoritiesResponse {
|
|
|
1854
1572
|
*/
|
|
1855
1573
|
NextToken?: string;
|
|
1856
1574
|
}
|
|
1857
|
-
export declare namespace ListCertificateAuthoritiesResponse {
|
|
1858
|
-
/**
|
|
1859
|
-
* @internal
|
|
1860
|
-
*/
|
|
1861
|
-
const filterSensitiveLog: (obj: ListCertificateAuthoritiesResponse) => any;
|
|
1862
|
-
}
|
|
1863
1575
|
export interface ListPermissionsRequest {
|
|
1864
1576
|
/**
|
|
1865
1577
|
* <p>The Amazon Resource Number (ARN) of the private CA to inspect. You can find the ARN by
|
|
@@ -1882,12 +1594,6 @@ export interface ListPermissionsRequest {
|
|
|
1882
1594
|
*/
|
|
1883
1595
|
MaxResults?: number;
|
|
1884
1596
|
}
|
|
1885
|
-
export declare namespace ListPermissionsRequest {
|
|
1886
|
-
/**
|
|
1887
|
-
* @internal
|
|
1888
|
-
*/
|
|
1889
|
-
const filterSensitiveLog: (obj: ListPermissionsRequest) => any;
|
|
1890
|
-
}
|
|
1891
1597
|
/**
|
|
1892
1598
|
* <p>Permissions designate which private CA actions can be performed by an Amazon Web Services service or
|
|
1893
1599
|
* entity. In order for ACM to automatically renew private certificates, you must give
|
|
@@ -1925,12 +1631,6 @@ export interface Permission {
|
|
|
1925
1631
|
*/
|
|
1926
1632
|
Policy?: string;
|
|
1927
1633
|
}
|
|
1928
|
-
export declare namespace Permission {
|
|
1929
|
-
/**
|
|
1930
|
-
* @internal
|
|
1931
|
-
*/
|
|
1932
|
-
const filterSensitiveLog: (obj: Permission) => any;
|
|
1933
|
-
}
|
|
1934
1634
|
export interface ListPermissionsResponse {
|
|
1935
1635
|
/**
|
|
1936
1636
|
* <p>Summary information about each permission assigned by the specified private CA,
|
|
@@ -1943,12 +1643,6 @@ export interface ListPermissionsResponse {
|
|
|
1943
1643
|
*/
|
|
1944
1644
|
NextToken?: string;
|
|
1945
1645
|
}
|
|
1946
|
-
export declare namespace ListPermissionsResponse {
|
|
1947
|
-
/**
|
|
1948
|
-
* @internal
|
|
1949
|
-
*/
|
|
1950
|
-
const filterSensitiveLog: (obj: ListPermissionsResponse) => any;
|
|
1951
|
-
}
|
|
1952
1646
|
export interface ListTagsRequest {
|
|
1953
1647
|
/**
|
|
1954
1648
|
* <p>The Amazon Resource Name (ARN) that was returned when you called the <a href="https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_CreateCertificateAuthority.html">CreateCertificateAuthority</a> action. This must be of the form: </p>
|
|
@@ -1972,12 +1666,6 @@ export interface ListTagsRequest {
|
|
|
1972
1666
|
*/
|
|
1973
1667
|
MaxResults?: number;
|
|
1974
1668
|
}
|
|
1975
|
-
export declare namespace ListTagsRequest {
|
|
1976
|
-
/**
|
|
1977
|
-
* @internal
|
|
1978
|
-
*/
|
|
1979
|
-
const filterSensitiveLog: (obj: ListTagsRequest) => any;
|
|
1980
|
-
}
|
|
1981
1669
|
export interface ListTagsResponse {
|
|
1982
1670
|
/**
|
|
1983
1671
|
* <p>The tags associated with your private CA.</p>
|
|
@@ -1989,12 +1677,6 @@ export interface ListTagsResponse {
|
|
|
1989
1677
|
*/
|
|
1990
1678
|
NextToken?: string;
|
|
1991
1679
|
}
|
|
1992
|
-
export declare namespace ListTagsResponse {
|
|
1993
|
-
/**
|
|
1994
|
-
* @internal
|
|
1995
|
-
*/
|
|
1996
|
-
const filterSensitiveLog: (obj: ListTagsResponse) => any;
|
|
1997
|
-
}
|
|
1998
1680
|
export interface PutPolicyRequest {
|
|
1999
1681
|
/**
|
|
2000
1682
|
* <p>The Amazon Resource Number (ARN) of the private CA to associate with the policy. The
|
|
@@ -2011,12 +1693,6 @@ export interface PutPolicyRequest {
|
|
|
2011
1693
|
*/
|
|
2012
1694
|
Policy: string | undefined;
|
|
2013
1695
|
}
|
|
2014
|
-
export declare namespace PutPolicyRequest {
|
|
2015
|
-
/**
|
|
2016
|
-
* @internal
|
|
2017
|
-
*/
|
|
2018
|
-
const filterSensitiveLog: (obj: PutPolicyRequest) => any;
|
|
2019
|
-
}
|
|
2020
1696
|
export interface RestoreCertificateAuthorityRequest {
|
|
2021
1697
|
/**
|
|
2022
1698
|
* <p>The Amazon Resource Name (ARN) that was returned when you called the <a href="https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_CreateCertificateAuthority.html">CreateCertificateAuthority</a> action. This must be of the form: </p>
|
|
@@ -2027,12 +1703,6 @@ export interface RestoreCertificateAuthorityRequest {
|
|
|
2027
1703
|
*/
|
|
2028
1704
|
CertificateAuthorityArn: string | undefined;
|
|
2029
1705
|
}
|
|
2030
|
-
export declare namespace RestoreCertificateAuthorityRequest {
|
|
2031
|
-
/**
|
|
2032
|
-
* @internal
|
|
2033
|
-
*/
|
|
2034
|
-
const filterSensitiveLog: (obj: RestoreCertificateAuthorityRequest) => any;
|
|
2035
|
-
}
|
|
2036
1706
|
/**
|
|
2037
1707
|
* <p>Your request has already been completed.</p>
|
|
2038
1708
|
*/
|
|
@@ -2083,12 +1753,6 @@ export interface RevokeCertificateRequest {
|
|
|
2083
1753
|
*/
|
|
2084
1754
|
RevocationReason: RevocationReason | string | undefined;
|
|
2085
1755
|
}
|
|
2086
|
-
export declare namespace RevokeCertificateRequest {
|
|
2087
|
-
/**
|
|
2088
|
-
* @internal
|
|
2089
|
-
*/
|
|
2090
|
-
const filterSensitiveLog: (obj: RevokeCertificateRequest) => any;
|
|
2091
|
-
}
|
|
2092
1756
|
export interface TagCertificateAuthorityRequest {
|
|
2093
1757
|
/**
|
|
2094
1758
|
* <p>The Amazon Resource Name (ARN) that was returned when you called <a href="https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_CreateCertificateAuthority.html">CreateCertificateAuthority</a>. This must be of the form: </p>
|
|
@@ -2103,12 +1767,6 @@ export interface TagCertificateAuthorityRequest {
|
|
|
2103
1767
|
*/
|
|
2104
1768
|
Tags: Tag[] | undefined;
|
|
2105
1769
|
}
|
|
2106
|
-
export declare namespace TagCertificateAuthorityRequest {
|
|
2107
|
-
/**
|
|
2108
|
-
* @internal
|
|
2109
|
-
*/
|
|
2110
|
-
const filterSensitiveLog: (obj: TagCertificateAuthorityRequest) => any;
|
|
2111
|
-
}
|
|
2112
1770
|
/**
|
|
2113
1771
|
* <p>You can associate up to 50 tags with a private CA. Exception information is contained
|
|
2114
1772
|
* in the exception message field.</p>
|
|
@@ -2135,12 +1793,6 @@ export interface UntagCertificateAuthorityRequest {
|
|
|
2135
1793
|
*/
|
|
2136
1794
|
Tags: Tag[] | undefined;
|
|
2137
1795
|
}
|
|
2138
|
-
export declare namespace UntagCertificateAuthorityRequest {
|
|
2139
|
-
/**
|
|
2140
|
-
* @internal
|
|
2141
|
-
*/
|
|
2142
|
-
const filterSensitiveLog: (obj: UntagCertificateAuthorityRequest) => any;
|
|
2143
|
-
}
|
|
2144
1796
|
export interface UpdateCertificateAuthorityRequest {
|
|
2145
1797
|
/**
|
|
2146
1798
|
* <p>Amazon Resource Name (ARN) of the private CA that issued the certificate to be
|
|
@@ -2163,9 +1815,239 @@ export interface UpdateCertificateAuthorityRequest {
|
|
|
2163
1815
|
*/
|
|
2164
1816
|
Status?: CertificateAuthorityStatus | string;
|
|
2165
1817
|
}
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
1818
|
+
/**
|
|
1819
|
+
* @internal
|
|
1820
|
+
*/
|
|
1821
|
+
export declare const CustomAttributeFilterSensitiveLog: (obj: CustomAttribute) => any;
|
|
1822
|
+
/**
|
|
1823
|
+
* @internal
|
|
1824
|
+
*/
|
|
1825
|
+
export declare const ASN1SubjectFilterSensitiveLog: (obj: ASN1Subject) => any;
|
|
1826
|
+
/**
|
|
1827
|
+
* @internal
|
|
1828
|
+
*/
|
|
1829
|
+
export declare const EdiPartyNameFilterSensitiveLog: (obj: EdiPartyName) => any;
|
|
1830
|
+
/**
|
|
1831
|
+
* @internal
|
|
1832
|
+
*/
|
|
1833
|
+
export declare const OtherNameFilterSensitiveLog: (obj: OtherName) => any;
|
|
1834
|
+
/**
|
|
1835
|
+
* @internal
|
|
1836
|
+
*/
|
|
1837
|
+
export declare const GeneralNameFilterSensitiveLog: (obj: GeneralName) => any;
|
|
1838
|
+
/**
|
|
1839
|
+
* @internal
|
|
1840
|
+
*/
|
|
1841
|
+
export declare const AccessMethodFilterSensitiveLog: (obj: AccessMethod) => any;
|
|
1842
|
+
/**
|
|
1843
|
+
* @internal
|
|
1844
|
+
*/
|
|
1845
|
+
export declare const AccessDescriptionFilterSensitiveLog: (obj: AccessDescription) => any;
|
|
1846
|
+
/**
|
|
1847
|
+
* @internal
|
|
1848
|
+
*/
|
|
1849
|
+
export declare const KeyUsageFilterSensitiveLog: (obj: KeyUsage) => any;
|
|
1850
|
+
/**
|
|
1851
|
+
* @internal
|
|
1852
|
+
*/
|
|
1853
|
+
export declare const CsrExtensionsFilterSensitiveLog: (obj: CsrExtensions) => any;
|
|
1854
|
+
/**
|
|
1855
|
+
* @internal
|
|
1856
|
+
*/
|
|
1857
|
+
export declare const CertificateAuthorityConfigurationFilterSensitiveLog: (obj: CertificateAuthorityConfiguration) => any;
|
|
1858
|
+
/**
|
|
1859
|
+
* @internal
|
|
1860
|
+
*/
|
|
1861
|
+
export declare const CrlConfigurationFilterSensitiveLog: (obj: CrlConfiguration) => any;
|
|
1862
|
+
/**
|
|
1863
|
+
* @internal
|
|
1864
|
+
*/
|
|
1865
|
+
export declare const OcspConfigurationFilterSensitiveLog: (obj: OcspConfiguration) => any;
|
|
1866
|
+
/**
|
|
1867
|
+
* @internal
|
|
1868
|
+
*/
|
|
1869
|
+
export declare const RevocationConfigurationFilterSensitiveLog: (obj: RevocationConfiguration) => any;
|
|
1870
|
+
/**
|
|
1871
|
+
* @internal
|
|
1872
|
+
*/
|
|
1873
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1874
|
+
/**
|
|
1875
|
+
* @internal
|
|
1876
|
+
*/
|
|
1877
|
+
export declare const CreateCertificateAuthorityRequestFilterSensitiveLog: (obj: CreateCertificateAuthorityRequest) => any;
|
|
1878
|
+
/**
|
|
1879
|
+
* @internal
|
|
1880
|
+
*/
|
|
1881
|
+
export declare const CreateCertificateAuthorityResponseFilterSensitiveLog: (obj: CreateCertificateAuthorityResponse) => any;
|
|
1882
|
+
/**
|
|
1883
|
+
* @internal
|
|
1884
|
+
*/
|
|
1885
|
+
export declare const CreateCertificateAuthorityAuditReportRequestFilterSensitiveLog: (obj: CreateCertificateAuthorityAuditReportRequest) => any;
|
|
1886
|
+
/**
|
|
1887
|
+
* @internal
|
|
1888
|
+
*/
|
|
1889
|
+
export declare const CreateCertificateAuthorityAuditReportResponseFilterSensitiveLog: (obj: CreateCertificateAuthorityAuditReportResponse) => any;
|
|
1890
|
+
/**
|
|
1891
|
+
* @internal
|
|
1892
|
+
*/
|
|
1893
|
+
export declare const CreatePermissionRequestFilterSensitiveLog: (obj: CreatePermissionRequest) => any;
|
|
1894
|
+
/**
|
|
1895
|
+
* @internal
|
|
1896
|
+
*/
|
|
1897
|
+
export declare const DeleteCertificateAuthorityRequestFilterSensitiveLog: (obj: DeleteCertificateAuthorityRequest) => any;
|
|
1898
|
+
/**
|
|
1899
|
+
* @internal
|
|
1900
|
+
*/
|
|
1901
|
+
export declare const DeletePermissionRequestFilterSensitiveLog: (obj: DeletePermissionRequest) => any;
|
|
1902
|
+
/**
|
|
1903
|
+
* @internal
|
|
1904
|
+
*/
|
|
1905
|
+
export declare const DeletePolicyRequestFilterSensitiveLog: (obj: DeletePolicyRequest) => any;
|
|
1906
|
+
/**
|
|
1907
|
+
* @internal
|
|
1908
|
+
*/
|
|
1909
|
+
export declare const DescribeCertificateAuthorityRequestFilterSensitiveLog: (obj: DescribeCertificateAuthorityRequest) => any;
|
|
1910
|
+
/**
|
|
1911
|
+
* @internal
|
|
1912
|
+
*/
|
|
1913
|
+
export declare const CertificateAuthorityFilterSensitiveLog: (obj: CertificateAuthority) => any;
|
|
1914
|
+
/**
|
|
1915
|
+
* @internal
|
|
1916
|
+
*/
|
|
1917
|
+
export declare const DescribeCertificateAuthorityResponseFilterSensitiveLog: (obj: DescribeCertificateAuthorityResponse) => any;
|
|
1918
|
+
/**
|
|
1919
|
+
* @internal
|
|
1920
|
+
*/
|
|
1921
|
+
export declare const DescribeCertificateAuthorityAuditReportRequestFilterSensitiveLog: (obj: DescribeCertificateAuthorityAuditReportRequest) => any;
|
|
1922
|
+
/**
|
|
1923
|
+
* @internal
|
|
1924
|
+
*/
|
|
1925
|
+
export declare const DescribeCertificateAuthorityAuditReportResponseFilterSensitiveLog: (obj: DescribeCertificateAuthorityAuditReportResponse) => any;
|
|
1926
|
+
/**
|
|
1927
|
+
* @internal
|
|
1928
|
+
*/
|
|
1929
|
+
export declare const GetCertificateRequestFilterSensitiveLog: (obj: GetCertificateRequest) => any;
|
|
1930
|
+
/**
|
|
1931
|
+
* @internal
|
|
1932
|
+
*/
|
|
1933
|
+
export declare const GetCertificateResponseFilterSensitiveLog: (obj: GetCertificateResponse) => any;
|
|
1934
|
+
/**
|
|
1935
|
+
* @internal
|
|
1936
|
+
*/
|
|
1937
|
+
export declare const GetCertificateAuthorityCertificateRequestFilterSensitiveLog: (obj: GetCertificateAuthorityCertificateRequest) => any;
|
|
1938
|
+
/**
|
|
1939
|
+
* @internal
|
|
1940
|
+
*/
|
|
1941
|
+
export declare const GetCertificateAuthorityCertificateResponseFilterSensitiveLog: (obj: GetCertificateAuthorityCertificateResponse) => any;
|
|
1942
|
+
/**
|
|
1943
|
+
* @internal
|
|
1944
|
+
*/
|
|
1945
|
+
export declare const GetCertificateAuthorityCsrRequestFilterSensitiveLog: (obj: GetCertificateAuthorityCsrRequest) => any;
|
|
1946
|
+
/**
|
|
1947
|
+
* @internal
|
|
1948
|
+
*/
|
|
1949
|
+
export declare const GetCertificateAuthorityCsrResponseFilterSensitiveLog: (obj: GetCertificateAuthorityCsrResponse) => any;
|
|
1950
|
+
/**
|
|
1951
|
+
* @internal
|
|
1952
|
+
*/
|
|
1953
|
+
export declare const GetPolicyRequestFilterSensitiveLog: (obj: GetPolicyRequest) => any;
|
|
1954
|
+
/**
|
|
1955
|
+
* @internal
|
|
1956
|
+
*/
|
|
1957
|
+
export declare const GetPolicyResponseFilterSensitiveLog: (obj: GetPolicyResponse) => any;
|
|
1958
|
+
/**
|
|
1959
|
+
* @internal
|
|
1960
|
+
*/
|
|
1961
|
+
export declare const ImportCertificateAuthorityCertificateRequestFilterSensitiveLog: (obj: ImportCertificateAuthorityCertificateRequest) => any;
|
|
1962
|
+
/**
|
|
1963
|
+
* @internal
|
|
1964
|
+
*/
|
|
1965
|
+
export declare const QualifierFilterSensitiveLog: (obj: Qualifier) => any;
|
|
1966
|
+
/**
|
|
1967
|
+
* @internal
|
|
1968
|
+
*/
|
|
1969
|
+
export declare const PolicyQualifierInfoFilterSensitiveLog: (obj: PolicyQualifierInfo) => any;
|
|
1970
|
+
/**
|
|
1971
|
+
* @internal
|
|
1972
|
+
*/
|
|
1973
|
+
export declare const PolicyInformationFilterSensitiveLog: (obj: PolicyInformation) => any;
|
|
1974
|
+
/**
|
|
1975
|
+
* @internal
|
|
1976
|
+
*/
|
|
1977
|
+
export declare const CustomExtensionFilterSensitiveLog: (obj: CustomExtension) => any;
|
|
1978
|
+
/**
|
|
1979
|
+
* @internal
|
|
1980
|
+
*/
|
|
1981
|
+
export declare const ExtendedKeyUsageFilterSensitiveLog: (obj: ExtendedKeyUsage) => any;
|
|
1982
|
+
/**
|
|
1983
|
+
* @internal
|
|
1984
|
+
*/
|
|
1985
|
+
export declare const ExtensionsFilterSensitiveLog: (obj: Extensions) => any;
|
|
1986
|
+
/**
|
|
1987
|
+
* @internal
|
|
1988
|
+
*/
|
|
1989
|
+
export declare const ApiPassthroughFilterSensitiveLog: (obj: ApiPassthrough) => any;
|
|
1990
|
+
/**
|
|
1991
|
+
* @internal
|
|
1992
|
+
*/
|
|
1993
|
+
export declare const ValidityFilterSensitiveLog: (obj: Validity) => any;
|
|
1994
|
+
/**
|
|
1995
|
+
* @internal
|
|
1996
|
+
*/
|
|
1997
|
+
export declare const IssueCertificateRequestFilterSensitiveLog: (obj: IssueCertificateRequest) => any;
|
|
1998
|
+
/**
|
|
1999
|
+
* @internal
|
|
2000
|
+
*/
|
|
2001
|
+
export declare const IssueCertificateResponseFilterSensitiveLog: (obj: IssueCertificateResponse) => any;
|
|
2002
|
+
/**
|
|
2003
|
+
* @internal
|
|
2004
|
+
*/
|
|
2005
|
+
export declare const ListCertificateAuthoritiesRequestFilterSensitiveLog: (obj: ListCertificateAuthoritiesRequest) => any;
|
|
2006
|
+
/**
|
|
2007
|
+
* @internal
|
|
2008
|
+
*/
|
|
2009
|
+
export declare const ListCertificateAuthoritiesResponseFilterSensitiveLog: (obj: ListCertificateAuthoritiesResponse) => any;
|
|
2010
|
+
/**
|
|
2011
|
+
* @internal
|
|
2012
|
+
*/
|
|
2013
|
+
export declare const ListPermissionsRequestFilterSensitiveLog: (obj: ListPermissionsRequest) => any;
|
|
2014
|
+
/**
|
|
2015
|
+
* @internal
|
|
2016
|
+
*/
|
|
2017
|
+
export declare const PermissionFilterSensitiveLog: (obj: Permission) => any;
|
|
2018
|
+
/**
|
|
2019
|
+
* @internal
|
|
2020
|
+
*/
|
|
2021
|
+
export declare const ListPermissionsResponseFilterSensitiveLog: (obj: ListPermissionsResponse) => any;
|
|
2022
|
+
/**
|
|
2023
|
+
* @internal
|
|
2024
|
+
*/
|
|
2025
|
+
export declare const ListTagsRequestFilterSensitiveLog: (obj: ListTagsRequest) => any;
|
|
2026
|
+
/**
|
|
2027
|
+
* @internal
|
|
2028
|
+
*/
|
|
2029
|
+
export declare const ListTagsResponseFilterSensitiveLog: (obj: ListTagsResponse) => any;
|
|
2030
|
+
/**
|
|
2031
|
+
* @internal
|
|
2032
|
+
*/
|
|
2033
|
+
export declare const PutPolicyRequestFilterSensitiveLog: (obj: PutPolicyRequest) => any;
|
|
2034
|
+
/**
|
|
2035
|
+
* @internal
|
|
2036
|
+
*/
|
|
2037
|
+
export declare const RestoreCertificateAuthorityRequestFilterSensitiveLog: (obj: RestoreCertificateAuthorityRequest) => any;
|
|
2038
|
+
/**
|
|
2039
|
+
* @internal
|
|
2040
|
+
*/
|
|
2041
|
+
export declare const RevokeCertificateRequestFilterSensitiveLog: (obj: RevokeCertificateRequest) => any;
|
|
2042
|
+
/**
|
|
2043
|
+
* @internal
|
|
2044
|
+
*/
|
|
2045
|
+
export declare const TagCertificateAuthorityRequestFilterSensitiveLog: (obj: TagCertificateAuthorityRequest) => any;
|
|
2046
|
+
/**
|
|
2047
|
+
* @internal
|
|
2048
|
+
*/
|
|
2049
|
+
export declare const UntagCertificateAuthorityRequestFilterSensitiveLog: (obj: UntagCertificateAuthorityRequest) => any;
|
|
2050
|
+
/**
|
|
2051
|
+
* @internal
|
|
2052
|
+
*/
|
|
2053
|
+
export declare const UpdateCertificateAuthorityRequestFilterSensitiveLog: (obj: UpdateCertificateAuthorityRequest) => any;
|