@aws-sdk/client-acm-pca 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.
- package/dist-types/models/models_0.d.ts +122 -122
- package/dist-types/ts3.4/models/models_0.d.ts +126 -122
- package/package.json +7 -7
|
@@ -32,29 +32,29 @@ export interface ASN1Subject {
|
|
|
32
32
|
* located.</p>
|
|
33
33
|
* @public
|
|
34
34
|
*/
|
|
35
|
-
Country?: string;
|
|
35
|
+
Country?: string | undefined;
|
|
36
36
|
/**
|
|
37
37
|
* <p>Legal name of the organization with which the certificate subject is affiliated.
|
|
38
38
|
* </p>
|
|
39
39
|
* @public
|
|
40
40
|
*/
|
|
41
|
-
Organization?: string;
|
|
41
|
+
Organization?: string | undefined;
|
|
42
42
|
/**
|
|
43
43
|
* <p>A subdivision or unit of the organization (such as sales or finance) with which the
|
|
44
44
|
* certificate subject is affiliated.</p>
|
|
45
45
|
* @public
|
|
46
46
|
*/
|
|
47
|
-
OrganizationalUnit?: string;
|
|
47
|
+
OrganizationalUnit?: string | undefined;
|
|
48
48
|
/**
|
|
49
49
|
* <p>Disambiguating information for the certificate subject.</p>
|
|
50
50
|
* @public
|
|
51
51
|
*/
|
|
52
|
-
DistinguishedNameQualifier?: string;
|
|
52
|
+
DistinguishedNameQualifier?: string | undefined;
|
|
53
53
|
/**
|
|
54
54
|
* <p>State in which the subject of the certificate is located.</p>
|
|
55
55
|
* @public
|
|
56
56
|
*/
|
|
57
|
-
State?: string;
|
|
57
|
+
State?: string | undefined;
|
|
58
58
|
/**
|
|
59
59
|
* <p>For CA and end-entity certificates in a private PKI, the common name (CN) can be any
|
|
60
60
|
* string within the length limit. </p>
|
|
@@ -62,54 +62,54 @@ export interface ASN1Subject {
|
|
|
62
62
|
* domain name (FQDN) associated with the certificate subject.</p>
|
|
63
63
|
* @public
|
|
64
64
|
*/
|
|
65
|
-
CommonName?: string;
|
|
65
|
+
CommonName?: string | undefined;
|
|
66
66
|
/**
|
|
67
67
|
* <p>The certificate serial number.</p>
|
|
68
68
|
* @public
|
|
69
69
|
*/
|
|
70
|
-
SerialNumber?: string;
|
|
70
|
+
SerialNumber?: string | undefined;
|
|
71
71
|
/**
|
|
72
72
|
* <p>The locality (such as a city or town) in which the certificate subject is
|
|
73
73
|
* located.</p>
|
|
74
74
|
* @public
|
|
75
75
|
*/
|
|
76
|
-
Locality?: string;
|
|
76
|
+
Locality?: string | undefined;
|
|
77
77
|
/**
|
|
78
78
|
* <p>A title such as Mr. or Ms., which is pre-pended to the name to refer formally to the
|
|
79
79
|
* certificate subject.</p>
|
|
80
80
|
* @public
|
|
81
81
|
*/
|
|
82
|
-
Title?: string;
|
|
82
|
+
Title?: string | undefined;
|
|
83
83
|
/**
|
|
84
84
|
* <p>Family name. In the US and the UK, for example, the surname of an individual is
|
|
85
85
|
* ordered last. In Asian cultures the surname is typically ordered first.</p>
|
|
86
86
|
* @public
|
|
87
87
|
*/
|
|
88
|
-
Surname?: string;
|
|
88
|
+
Surname?: string | undefined;
|
|
89
89
|
/**
|
|
90
90
|
* <p>First name.</p>
|
|
91
91
|
* @public
|
|
92
92
|
*/
|
|
93
|
-
GivenName?: string;
|
|
93
|
+
GivenName?: string | undefined;
|
|
94
94
|
/**
|
|
95
95
|
* <p>Concatenation that typically contains the first letter of the <b>GivenName</b>, the first letter of the middle name if one exists, and the
|
|
96
96
|
* first letter of the <b>Surname</b>.</p>
|
|
97
97
|
* @public
|
|
98
98
|
*/
|
|
99
|
-
Initials?: string;
|
|
99
|
+
Initials?: string | undefined;
|
|
100
100
|
/**
|
|
101
101
|
* <p>Typically a shortened version of a longer <b>GivenName</b>.
|
|
102
102
|
* For example, Jonathan is often shortened to John. Elizabeth is often shortened to Beth,
|
|
103
103
|
* Liz, or Eliza.</p>
|
|
104
104
|
* @public
|
|
105
105
|
*/
|
|
106
|
-
Pseudonym?: string;
|
|
106
|
+
Pseudonym?: string | undefined;
|
|
107
107
|
/**
|
|
108
108
|
* <p>Typically a qualifier appended to the name of an individual. Examples include Jr. for
|
|
109
109
|
* junior, Sr. for senior, and III for third.</p>
|
|
110
110
|
* @public
|
|
111
111
|
*/
|
|
112
|
-
GenerationQualifier?: string;
|
|
112
|
+
GenerationQualifier?: string | undefined;
|
|
113
113
|
/**
|
|
114
114
|
* <p/>
|
|
115
115
|
* <p>Contains a sequence of one or more X.500 relative distinguished names (RDNs), each of
|
|
@@ -120,7 +120,7 @@ export interface ASN1Subject {
|
|
|
120
120
|
* </note>
|
|
121
121
|
* @public
|
|
122
122
|
*/
|
|
123
|
-
CustomAttributes?: CustomAttribute[];
|
|
123
|
+
CustomAttributes?: CustomAttribute[] | undefined;
|
|
124
124
|
}
|
|
125
125
|
/**
|
|
126
126
|
* <p>Describes an Electronic Data Interchange (EDI) entity as described in as defined in
|
|
@@ -138,7 +138,7 @@ export interface EdiPartyName {
|
|
|
138
138
|
* <p>Specifies the name assigner.</p>
|
|
139
139
|
* @public
|
|
140
140
|
*/
|
|
141
|
-
NameAssigner?: string;
|
|
141
|
+
NameAssigner?: string | undefined;
|
|
142
142
|
}
|
|
143
143
|
/**
|
|
144
144
|
* <p>Defines a custom ASN.1 X.400 <code>GeneralName</code> using an object identifier (OID)
|
|
@@ -170,18 +170,18 @@ export interface GeneralName {
|
|
|
170
170
|
* <p>Represents <code>GeneralName</code> using an <code>OtherName</code> object.</p>
|
|
171
171
|
* @public
|
|
172
172
|
*/
|
|
173
|
-
OtherName?: OtherName;
|
|
173
|
+
OtherName?: OtherName | undefined;
|
|
174
174
|
/**
|
|
175
175
|
* <p>Represents <code>GeneralName</code> as an <a href="https://datatracker.ietf.org/doc/html/rfc822">RFC 822</a> email
|
|
176
176
|
* address.</p>
|
|
177
177
|
* @public
|
|
178
178
|
*/
|
|
179
|
-
Rfc822Name?: string;
|
|
179
|
+
Rfc822Name?: string | undefined;
|
|
180
180
|
/**
|
|
181
181
|
* <p>Represents <code>GeneralName</code> as a DNS name.</p>
|
|
182
182
|
* @public
|
|
183
183
|
*/
|
|
184
|
-
DnsName?: string;
|
|
184
|
+
DnsName?: string | undefined;
|
|
185
185
|
/**
|
|
186
186
|
* <p>Contains information about the certificate subject. The <code>Subject</code> field in
|
|
187
187
|
* the certificate identifies the entity that owns or controls the public key in the
|
|
@@ -190,27 +190,27 @@ export interface GeneralName {
|
|
|
190
190
|
* distinguished names (RDNs). The RDNs are separated by commas in the certificate.</p>
|
|
191
191
|
* @public
|
|
192
192
|
*/
|
|
193
|
-
DirectoryName?: ASN1Subject;
|
|
193
|
+
DirectoryName?: ASN1Subject | undefined;
|
|
194
194
|
/**
|
|
195
195
|
* <p>Represents <code>GeneralName</code> as an <code>EdiPartyName</code> object.</p>
|
|
196
196
|
* @public
|
|
197
197
|
*/
|
|
198
|
-
EdiPartyName?: EdiPartyName;
|
|
198
|
+
EdiPartyName?: EdiPartyName | undefined;
|
|
199
199
|
/**
|
|
200
200
|
* <p>Represents <code>GeneralName</code> as a URI.</p>
|
|
201
201
|
* @public
|
|
202
202
|
*/
|
|
203
|
-
UniformResourceIdentifier?: string;
|
|
203
|
+
UniformResourceIdentifier?: string | undefined;
|
|
204
204
|
/**
|
|
205
205
|
* <p>Represents <code>GeneralName</code> as an IPv4 or IPv6 address.</p>
|
|
206
206
|
* @public
|
|
207
207
|
*/
|
|
208
|
-
IpAddress?: string;
|
|
208
|
+
IpAddress?: string | undefined;
|
|
209
209
|
/**
|
|
210
210
|
* <p> Represents <code>GeneralName</code> as an object identifier (OID).</p>
|
|
211
211
|
* @public
|
|
212
212
|
*/
|
|
213
|
-
RegisteredId?: string;
|
|
213
|
+
RegisteredId?: string | undefined;
|
|
214
214
|
}
|
|
215
215
|
/**
|
|
216
216
|
* @public
|
|
@@ -239,12 +239,12 @@ export interface AccessMethod {
|
|
|
239
239
|
* (OID)</a>.</p>
|
|
240
240
|
* @public
|
|
241
241
|
*/
|
|
242
|
-
CustomObjectIdentifier?: string;
|
|
242
|
+
CustomObjectIdentifier?: string | undefined;
|
|
243
243
|
/**
|
|
244
244
|
* <p>Specifies the <code>AccessMethod</code>.</p>
|
|
245
245
|
* @public
|
|
246
246
|
*/
|
|
247
|
-
AccessMethodType?: AccessMethodType;
|
|
247
|
+
AccessMethodType?: AccessMethodType | undefined;
|
|
248
248
|
}
|
|
249
249
|
/**
|
|
250
250
|
* <p>Provides access information used by the <code>authorityInfoAccess</code> and
|
|
@@ -273,47 +273,47 @@ export interface KeyUsage {
|
|
|
273
273
|
* <p> Key can be used for digital signing.</p>
|
|
274
274
|
* @public
|
|
275
275
|
*/
|
|
276
|
-
DigitalSignature?: boolean;
|
|
276
|
+
DigitalSignature?: boolean | undefined;
|
|
277
277
|
/**
|
|
278
278
|
* <p>Key can be used for non-repudiation.</p>
|
|
279
279
|
* @public
|
|
280
280
|
*/
|
|
281
|
-
NonRepudiation?: boolean;
|
|
281
|
+
NonRepudiation?: boolean | undefined;
|
|
282
282
|
/**
|
|
283
283
|
* <p>Key can be used to encipher data.</p>
|
|
284
284
|
* @public
|
|
285
285
|
*/
|
|
286
|
-
KeyEncipherment?: boolean;
|
|
286
|
+
KeyEncipherment?: boolean | undefined;
|
|
287
287
|
/**
|
|
288
288
|
* <p>Key can be used to decipher data.</p>
|
|
289
289
|
* @public
|
|
290
290
|
*/
|
|
291
|
-
DataEncipherment?: boolean;
|
|
291
|
+
DataEncipherment?: boolean | undefined;
|
|
292
292
|
/**
|
|
293
293
|
* <p>Key can be used in a key-agreement protocol.</p>
|
|
294
294
|
* @public
|
|
295
295
|
*/
|
|
296
|
-
KeyAgreement?: boolean;
|
|
296
|
+
KeyAgreement?: boolean | undefined;
|
|
297
297
|
/**
|
|
298
298
|
* <p>Key can be used to sign certificates.</p>
|
|
299
299
|
* @public
|
|
300
300
|
*/
|
|
301
|
-
KeyCertSign?: boolean;
|
|
301
|
+
KeyCertSign?: boolean | undefined;
|
|
302
302
|
/**
|
|
303
303
|
* <p>Key can be used to sign CRLs.</p>
|
|
304
304
|
* @public
|
|
305
305
|
*/
|
|
306
|
-
CRLSign?: boolean;
|
|
306
|
+
CRLSign?: boolean | undefined;
|
|
307
307
|
/**
|
|
308
308
|
* <p>Key can be used only to encipher data.</p>
|
|
309
309
|
* @public
|
|
310
310
|
*/
|
|
311
|
-
EncipherOnly?: boolean;
|
|
311
|
+
EncipherOnly?: boolean | undefined;
|
|
312
312
|
/**
|
|
313
313
|
* <p>Key can be used only to decipher data.</p>
|
|
314
314
|
* @public
|
|
315
315
|
*/
|
|
316
|
-
DecipherOnly?: boolean;
|
|
316
|
+
DecipherOnly?: boolean | undefined;
|
|
317
317
|
}
|
|
318
318
|
/**
|
|
319
319
|
* <p>Describes the certificate extensions to be added to the certificate signing request
|
|
@@ -326,14 +326,14 @@ export interface CsrExtensions {
|
|
|
326
326
|
* certificate.</p>
|
|
327
327
|
* @public
|
|
328
328
|
*/
|
|
329
|
-
KeyUsage?: KeyUsage;
|
|
329
|
+
KeyUsage?: KeyUsage | undefined;
|
|
330
330
|
/**
|
|
331
331
|
* <p>For CA certificates, provides a path to additional information pertaining to the CA,
|
|
332
332
|
* such as revocation and policy. For more information, see <a href="https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.2.2">Subject
|
|
333
333
|
* Information Access</a> in RFC 5280.</p>
|
|
334
334
|
* @public
|
|
335
335
|
*/
|
|
336
|
-
SubjectInformationAccess?: AccessDescription[];
|
|
336
|
+
SubjectInformationAccess?: AccessDescription[] | undefined;
|
|
337
337
|
}
|
|
338
338
|
/**
|
|
339
339
|
* @public
|
|
@@ -401,7 +401,7 @@ export interface CertificateAuthorityConfiguration {
|
|
|
401
401
|
* request (CSR).</p>
|
|
402
402
|
* @public
|
|
403
403
|
*/
|
|
404
|
-
CsrExtensions?: CsrExtensions;
|
|
404
|
+
CsrExtensions?: CsrExtensions | undefined;
|
|
405
405
|
}
|
|
406
406
|
/**
|
|
407
407
|
* @public
|
|
@@ -588,7 +588,7 @@ export interface CrlConfiguration {
|
|
|
588
588
|
* <p>Validity period of the CRL in days.</p>
|
|
589
589
|
* @public
|
|
590
590
|
*/
|
|
591
|
-
ExpirationInDays?: number;
|
|
591
|
+
ExpirationInDays?: number | undefined;
|
|
592
592
|
/**
|
|
593
593
|
* <p>Name inserted into the certificate <b>CRL Distribution
|
|
594
594
|
* Points</b> extension that enables the use of an alias for the CRL
|
|
@@ -601,7 +601,7 @@ export interface CrlConfiguration {
|
|
|
601
601
|
* </note>
|
|
602
602
|
* @public
|
|
603
603
|
*/
|
|
604
|
-
CustomCname?: string;
|
|
604
|
+
CustomCname?: string | undefined;
|
|
605
605
|
/**
|
|
606
606
|
* <p>Name of the S3 bucket that contains the CRL. If you do not provide a value for the
|
|
607
607
|
* <b>CustomCname</b> argument, the name of your S3 bucket
|
|
@@ -614,7 +614,7 @@ export interface CrlConfiguration {
|
|
|
614
614
|
* </note>
|
|
615
615
|
* @public
|
|
616
616
|
*/
|
|
617
|
-
S3BucketName?: string;
|
|
617
|
+
S3BucketName?: string | undefined;
|
|
618
618
|
/**
|
|
619
619
|
* <p>Determines whether the CRL will be publicly readable or privately held in the CRL
|
|
620
620
|
* Amazon S3 bucket. If you choose PUBLIC_READ, the CRL will be accessible over the public
|
|
@@ -633,12 +633,12 @@ export interface CrlConfiguration {
|
|
|
633
633
|
* bucket</a>.</p>
|
|
634
634
|
* @public
|
|
635
635
|
*/
|
|
636
|
-
S3ObjectAcl?: S3ObjectAcl;
|
|
636
|
+
S3ObjectAcl?: S3ObjectAcl | undefined;
|
|
637
637
|
/**
|
|
638
638
|
* <p>Configures the behavior of the CRL Distribution Point extension for certificates issued by your certificate authority. If this field is not provided, then the CRl Distribution Point Extension will be present and contain the default CRL URL.</p>
|
|
639
639
|
* @public
|
|
640
640
|
*/
|
|
641
|
-
CrlDistributionPointExtensionConfiguration?: CrlDistributionPointExtensionConfiguration;
|
|
641
|
+
CrlDistributionPointExtensionConfiguration?: CrlDistributionPointExtensionConfiguration | undefined;
|
|
642
642
|
}
|
|
643
643
|
/**
|
|
644
644
|
* <p>Contains information to enable and configure Online Certificate Status Protocol (OCSP)
|
|
@@ -667,7 +667,7 @@ export interface OcspConfiguration {
|
|
|
667
667
|
* (OCSP) </a> in the <i>Amazon Web Services Private Certificate Authority User Guide</i>.</p>
|
|
668
668
|
* @public
|
|
669
669
|
*/
|
|
670
|
-
OcspCustomCname?: string;
|
|
670
|
+
OcspCustomCname?: string | undefined;
|
|
671
671
|
}
|
|
672
672
|
/**
|
|
673
673
|
* <p>Certificate revocation information used by the <a href="https://docs.aws.amazon.com/privateca/latest/APIReference/API_CreateCertificateAuthority.html">CreateCertificateAuthority</a> and <a href="https://docs.aws.amazon.com/privateca/latest/APIReference/API_UpdateCertificateAuthority.html">UpdateCertificateAuthority</a> actions. Your private certificate authority (CA)
|
|
@@ -687,14 +687,14 @@ export interface RevocationConfiguration {
|
|
|
687
687
|
* every 15 minutes.</p>
|
|
688
688
|
* @public
|
|
689
689
|
*/
|
|
690
|
-
CrlConfiguration?: CrlConfiguration;
|
|
690
|
+
CrlConfiguration?: CrlConfiguration | undefined;
|
|
691
691
|
/**
|
|
692
692
|
* <p>Configuration of Online Certificate Status Protocol (OCSP) support, if any, maintained
|
|
693
693
|
* by your private CA. When you revoke a certificate, OCSP responses may take up to 60 minutes
|
|
694
694
|
* to reflect the new status.</p>
|
|
695
695
|
* @public
|
|
696
696
|
*/
|
|
697
|
-
OcspConfiguration?: OcspConfiguration;
|
|
697
|
+
OcspConfiguration?: OcspConfiguration | undefined;
|
|
698
698
|
}
|
|
699
699
|
/**
|
|
700
700
|
* <p>Tags are labels that you can use to identify and organize your private CAs. Each tag
|
|
@@ -713,7 +713,7 @@ export interface Tag {
|
|
|
713
713
|
* <p>Value of the tag.</p>
|
|
714
714
|
* @public
|
|
715
715
|
*/
|
|
716
|
-
Value?: string;
|
|
716
|
+
Value?: string | undefined;
|
|
717
717
|
}
|
|
718
718
|
/**
|
|
719
719
|
* @public
|
|
@@ -765,7 +765,7 @@ export interface CreateCertificateAuthorityRequest {
|
|
|
765
765
|
* types.</p>
|
|
766
766
|
* @public
|
|
767
767
|
*/
|
|
768
|
-
RevocationConfiguration?: RevocationConfiguration;
|
|
768
|
+
RevocationConfiguration?: RevocationConfiguration | undefined;
|
|
769
769
|
/**
|
|
770
770
|
* <p>The type of the certificate authority.</p>
|
|
771
771
|
* @public
|
|
@@ -781,7 +781,7 @@ export interface CreateCertificateAuthorityRequest {
|
|
|
781
781
|
* authorities.</p>
|
|
782
782
|
* @public
|
|
783
783
|
*/
|
|
784
|
-
IdempotencyToken?: string;
|
|
784
|
+
IdempotencyToken?: string | undefined;
|
|
785
785
|
/**
|
|
786
786
|
* <p>Specifies a cryptographic key management compliance standard used for handling CA
|
|
787
787
|
* keys.</p>
|
|
@@ -797,14 +797,14 @@ export interface CreateCertificateAuthorityRequest {
|
|
|
797
797
|
* </note>
|
|
798
798
|
* @public
|
|
799
799
|
*/
|
|
800
|
-
KeyStorageSecurityStandard?: KeyStorageSecurityStandard;
|
|
800
|
+
KeyStorageSecurityStandard?: KeyStorageSecurityStandard | undefined;
|
|
801
801
|
/**
|
|
802
802
|
* <p>Key-value pairs that will be attached to the new private CA. You can associate up to
|
|
803
803
|
* 50 tags with a private CA. For information using tags with IAM to manage permissions,
|
|
804
804
|
* see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_iam-tags.html">Controlling Access Using IAM Tags</a>.</p>
|
|
805
805
|
* @public
|
|
806
806
|
*/
|
|
807
|
-
Tags?: Tag[];
|
|
807
|
+
Tags?: Tag[] | undefined;
|
|
808
808
|
/**
|
|
809
809
|
* <p>Specifies whether the CA issues general-purpose certificates that typically require a
|
|
810
810
|
* revocation mechanism, or short-lived certificates that may optionally omit revocation
|
|
@@ -813,7 +813,7 @@ export interface CreateCertificateAuthorityRequest {
|
|
|
813
813
|
* <p>The default value is GENERAL_PURPOSE.</p>
|
|
814
814
|
* @public
|
|
815
815
|
*/
|
|
816
|
-
UsageMode?: CertificateAuthorityUsageMode;
|
|
816
|
+
UsageMode?: CertificateAuthorityUsageMode | undefined;
|
|
817
817
|
}
|
|
818
818
|
/**
|
|
819
819
|
* @public
|
|
@@ -828,7 +828,7 @@ export interface CreateCertificateAuthorityResponse {
|
|
|
828
828
|
* </p>
|
|
829
829
|
* @public
|
|
830
830
|
*/
|
|
831
|
-
CertificateAuthorityArn?: string;
|
|
831
|
+
CertificateAuthorityArn?: string | undefined;
|
|
832
832
|
}
|
|
833
833
|
/**
|
|
834
834
|
* <p>One or more of the specified arguments was not valid.</p>
|
|
@@ -924,13 +924,13 @@ export interface CreateCertificateAuthorityAuditReportResponse {
|
|
|
924
924
|
* <p>An alphanumeric string that contains a report identifier.</p>
|
|
925
925
|
* @public
|
|
926
926
|
*/
|
|
927
|
-
AuditReportId?: string;
|
|
927
|
+
AuditReportId?: string | undefined;
|
|
928
928
|
/**
|
|
929
929
|
* <p>The <b>key</b> that uniquely identifies the report file in
|
|
930
930
|
* your S3 bucket.</p>
|
|
931
931
|
* @public
|
|
932
932
|
*/
|
|
933
|
-
S3Key?: string;
|
|
933
|
+
S3Key?: string | undefined;
|
|
934
934
|
}
|
|
935
935
|
/**
|
|
936
936
|
* <p>The requested Amazon Resource Name (ARN) does not refer to an existing
|
|
@@ -1031,7 +1031,7 @@ export interface CreatePermissionRequest {
|
|
|
1031
1031
|
* <p>The ID of the calling account.</p>
|
|
1032
1032
|
* @public
|
|
1033
1033
|
*/
|
|
1034
|
-
SourceAccount?: string;
|
|
1034
|
+
SourceAccount?: string | undefined;
|
|
1035
1035
|
/**
|
|
1036
1036
|
* <p>The actions that the specified Amazon Web Services service principal can use. These include
|
|
1037
1037
|
* <code>IssueCertificate</code>, <code>GetCertificate</code>, and
|
|
@@ -1082,7 +1082,7 @@ export interface DeleteCertificateAuthorityRequest {
|
|
|
1082
1082
|
* anywhere from 7 to 30 days, with 30 being the default.</p>
|
|
1083
1083
|
* @public
|
|
1084
1084
|
*/
|
|
1085
|
-
PermanentDeletionTimeInDays?: number;
|
|
1085
|
+
PermanentDeletionTimeInDays?: number | undefined;
|
|
1086
1086
|
}
|
|
1087
1087
|
/**
|
|
1088
1088
|
* @public
|
|
@@ -1109,7 +1109,7 @@ export interface DeletePermissionRequest {
|
|
|
1109
1109
|
* <p>The Amazon Web Services account that calls this action.</p>
|
|
1110
1110
|
* @public
|
|
1111
1111
|
*/
|
|
1112
|
-
SourceAccount?: string;
|
|
1112
|
+
SourceAccount?: string | undefined;
|
|
1113
1113
|
}
|
|
1114
1114
|
/**
|
|
1115
1115
|
* @public
|
|
@@ -1202,69 +1202,69 @@ export interface CertificateAuthority {
|
|
|
1202
1202
|
* </code>.</p>
|
|
1203
1203
|
* @public
|
|
1204
1204
|
*/
|
|
1205
|
-
Arn?: string;
|
|
1205
|
+
Arn?: string | undefined;
|
|
1206
1206
|
/**
|
|
1207
1207
|
* <p>The Amazon Web Services account ID that owns the certificate authority.</p>
|
|
1208
1208
|
* @public
|
|
1209
1209
|
*/
|
|
1210
|
-
OwnerAccount?: string;
|
|
1210
|
+
OwnerAccount?: string | undefined;
|
|
1211
1211
|
/**
|
|
1212
1212
|
* <p>Date and time at which your private CA was created.</p>
|
|
1213
1213
|
* @public
|
|
1214
1214
|
*/
|
|
1215
|
-
CreatedAt?: Date;
|
|
1215
|
+
CreatedAt?: Date | undefined;
|
|
1216
1216
|
/**
|
|
1217
1217
|
* <p>Date and time at which your private CA was last updated.</p>
|
|
1218
1218
|
* @public
|
|
1219
1219
|
*/
|
|
1220
|
-
LastStateChangeAt?: Date;
|
|
1220
|
+
LastStateChangeAt?: Date | undefined;
|
|
1221
1221
|
/**
|
|
1222
1222
|
* <p>Type of your private CA.</p>
|
|
1223
1223
|
* @public
|
|
1224
1224
|
*/
|
|
1225
|
-
Type?: CertificateAuthorityType;
|
|
1225
|
+
Type?: CertificateAuthorityType | undefined;
|
|
1226
1226
|
/**
|
|
1227
1227
|
* <p>Serial number of your private CA.</p>
|
|
1228
1228
|
* @public
|
|
1229
1229
|
*/
|
|
1230
|
-
Serial?: string;
|
|
1230
|
+
Serial?: string | undefined;
|
|
1231
1231
|
/**
|
|
1232
1232
|
* <p>Status of your private CA.</p>
|
|
1233
1233
|
* @public
|
|
1234
1234
|
*/
|
|
1235
|
-
Status?: CertificateAuthorityStatus;
|
|
1235
|
+
Status?: CertificateAuthorityStatus | undefined;
|
|
1236
1236
|
/**
|
|
1237
1237
|
* <p>Date and time before which your private CA certificate is not valid.</p>
|
|
1238
1238
|
* @public
|
|
1239
1239
|
*/
|
|
1240
|
-
NotBefore?: Date;
|
|
1240
|
+
NotBefore?: Date | undefined;
|
|
1241
1241
|
/**
|
|
1242
1242
|
* <p>Date and time after which your private CA certificate is not valid.</p>
|
|
1243
1243
|
* @public
|
|
1244
1244
|
*/
|
|
1245
|
-
NotAfter?: Date;
|
|
1245
|
+
NotAfter?: Date | undefined;
|
|
1246
1246
|
/**
|
|
1247
1247
|
* <p>Reason the request to create your private CA failed.</p>
|
|
1248
1248
|
* @public
|
|
1249
1249
|
*/
|
|
1250
|
-
FailureReason?: FailureReason;
|
|
1250
|
+
FailureReason?: FailureReason | undefined;
|
|
1251
1251
|
/**
|
|
1252
1252
|
* <p>Your private CA configuration.</p>
|
|
1253
1253
|
* @public
|
|
1254
1254
|
*/
|
|
1255
|
-
CertificateAuthorityConfiguration?: CertificateAuthorityConfiguration;
|
|
1255
|
+
CertificateAuthorityConfiguration?: CertificateAuthorityConfiguration | undefined;
|
|
1256
1256
|
/**
|
|
1257
1257
|
* <p>Information about the Online Certificate Status Protocol (OCSP) configuration or
|
|
1258
1258
|
* certificate revocation list (CRL) created and maintained by your private CA. </p>
|
|
1259
1259
|
* @public
|
|
1260
1260
|
*/
|
|
1261
|
-
RevocationConfiguration?: RevocationConfiguration;
|
|
1261
|
+
RevocationConfiguration?: RevocationConfiguration | undefined;
|
|
1262
1262
|
/**
|
|
1263
1263
|
* <p>The period during which a deleted CA can be restored. For more information, see the
|
|
1264
1264
|
* <code>PermanentDeletionTimeInDays</code> parameter of the <a href="https://docs.aws.amazon.com/privateca/latest/APIReference/API_DeleteCertificateAuthorityRequest.html">DeleteCertificateAuthorityRequest</a> action. </p>
|
|
1265
1265
|
* @public
|
|
1266
1266
|
*/
|
|
1267
|
-
RestorableUntil?: Date;
|
|
1267
|
+
RestorableUntil?: Date | undefined;
|
|
1268
1268
|
/**
|
|
1269
1269
|
* <p>Defines a cryptographic key management compliance standard used for handling CA keys. </p>
|
|
1270
1270
|
* <p>Default: FIPS_140_2_LEVEL_3_OR_HIGHER</p>
|
|
@@ -1275,7 +1275,7 @@ export interface CertificateAuthority {
|
|
|
1275
1275
|
* be created in this region with the specified security standard."</p>
|
|
1276
1276
|
* @public
|
|
1277
1277
|
*/
|
|
1278
|
-
KeyStorageSecurityStandard?: KeyStorageSecurityStandard;
|
|
1278
|
+
KeyStorageSecurityStandard?: KeyStorageSecurityStandard | undefined;
|
|
1279
1279
|
/**
|
|
1280
1280
|
* <p>Specifies whether the CA issues general-purpose certificates that typically require a
|
|
1281
1281
|
* revocation mechanism, or short-lived certificates that may optionally omit revocation
|
|
@@ -1284,7 +1284,7 @@ export interface CertificateAuthority {
|
|
|
1284
1284
|
* <p>The default value is GENERAL_PURPOSE.</p>
|
|
1285
1285
|
* @public
|
|
1286
1286
|
*/
|
|
1287
|
-
UsageMode?: CertificateAuthorityUsageMode;
|
|
1287
|
+
UsageMode?: CertificateAuthorityUsageMode | undefined;
|
|
1288
1288
|
}
|
|
1289
1289
|
/**
|
|
1290
1290
|
* @public
|
|
@@ -1295,7 +1295,7 @@ export interface DescribeCertificateAuthorityResponse {
|
|
|
1295
1295
|
* CA.</p>
|
|
1296
1296
|
* @public
|
|
1297
1297
|
*/
|
|
1298
|
-
CertificateAuthority?: CertificateAuthority;
|
|
1298
|
+
CertificateAuthority?: CertificateAuthority | undefined;
|
|
1299
1299
|
}
|
|
1300
1300
|
/**
|
|
1301
1301
|
* @public
|
|
@@ -1337,23 +1337,23 @@ export interface DescribeCertificateAuthorityAuditReportResponse {
|
|
|
1337
1337
|
* <p>Specifies whether report creation is in progress, has succeeded, or has failed.</p>
|
|
1338
1338
|
* @public
|
|
1339
1339
|
*/
|
|
1340
|
-
AuditReportStatus?: AuditReportStatus;
|
|
1340
|
+
AuditReportStatus?: AuditReportStatus | undefined;
|
|
1341
1341
|
/**
|
|
1342
1342
|
* <p>Name of the S3 bucket that contains the report.</p>
|
|
1343
1343
|
* @public
|
|
1344
1344
|
*/
|
|
1345
|
-
S3BucketName?: string;
|
|
1345
|
+
S3BucketName?: string | undefined;
|
|
1346
1346
|
/**
|
|
1347
1347
|
* <p>S3 <b>key</b> that uniquely identifies the report file in
|
|
1348
1348
|
* your S3 bucket.</p>
|
|
1349
1349
|
* @public
|
|
1350
1350
|
*/
|
|
1351
|
-
S3Key?: string;
|
|
1351
|
+
S3Key?: string | undefined;
|
|
1352
1352
|
/**
|
|
1353
1353
|
* <p>The date and time at which the report was created.</p>
|
|
1354
1354
|
* @public
|
|
1355
1355
|
*/
|
|
1356
|
-
CreatedAt?: Date;
|
|
1356
|
+
CreatedAt?: Date | undefined;
|
|
1357
1357
|
}
|
|
1358
1358
|
/**
|
|
1359
1359
|
* @public
|
|
@@ -1388,13 +1388,13 @@ export interface GetCertificateResponse {
|
|
|
1388
1388
|
* parameter.</p>
|
|
1389
1389
|
* @public
|
|
1390
1390
|
*/
|
|
1391
|
-
Certificate?: string;
|
|
1391
|
+
Certificate?: string | undefined;
|
|
1392
1392
|
/**
|
|
1393
1393
|
* <p>The base64 PEM-encoded certificate chain that chains up to the root CA certificate
|
|
1394
1394
|
* that you used to sign your private CA certificate. </p>
|
|
1395
1395
|
* @public
|
|
1396
1396
|
*/
|
|
1397
|
-
CertificateChain?: string;
|
|
1397
|
+
CertificateChain?: string | undefined;
|
|
1398
1398
|
}
|
|
1399
1399
|
/**
|
|
1400
1400
|
* @public
|
|
@@ -1418,7 +1418,7 @@ export interface GetCertificateAuthorityCertificateResponse {
|
|
|
1418
1418
|
* <p>Base64-encoded certificate authority (CA) certificate.</p>
|
|
1419
1419
|
* @public
|
|
1420
1420
|
*/
|
|
1421
|
-
Certificate?: string;
|
|
1421
|
+
Certificate?: string | undefined;
|
|
1422
1422
|
/**
|
|
1423
1423
|
* <p>Base64-encoded certificate chain that includes any intermediate certificates and
|
|
1424
1424
|
* chains up to root certificate that you used to sign your private CA certificate. The
|
|
@@ -1426,7 +1426,7 @@ export interface GetCertificateAuthorityCertificateResponse {
|
|
|
1426
1426
|
* be null.</p>
|
|
1427
1427
|
* @public
|
|
1428
1428
|
*/
|
|
1429
|
-
CertificateChain?: string;
|
|
1429
|
+
CertificateChain?: string | undefined;
|
|
1430
1430
|
}
|
|
1431
1431
|
/**
|
|
1432
1432
|
* @public
|
|
@@ -1451,7 +1451,7 @@ export interface GetCertificateAuthorityCsrResponse {
|
|
|
1451
1451
|
* certificate.</p>
|
|
1452
1452
|
* @public
|
|
1453
1453
|
*/
|
|
1454
|
-
Csr?: string;
|
|
1454
|
+
Csr?: string | undefined;
|
|
1455
1455
|
}
|
|
1456
1456
|
/**
|
|
1457
1457
|
* @public
|
|
@@ -1474,7 +1474,7 @@ export interface GetPolicyResponse {
|
|
|
1474
1474
|
* <p>The policy attached to the private CA as a JSON document.</p>
|
|
1475
1475
|
* @public
|
|
1476
1476
|
*/
|
|
1477
|
-
Policy?: string;
|
|
1477
|
+
Policy?: string | undefined;
|
|
1478
1478
|
}
|
|
1479
1479
|
/**
|
|
1480
1480
|
* <p>The certificate authority certificate you are importing does not comply with
|
|
@@ -1517,7 +1517,7 @@ export interface ImportCertificateAuthorityCertificateRequest {
|
|
|
1517
1517
|
* root CA, there is no chain.</p>
|
|
1518
1518
|
* @public
|
|
1519
1519
|
*/
|
|
1520
|
-
CertificateChain?: Uint8Array;
|
|
1520
|
+
CertificateChain?: Uint8Array | undefined;
|
|
1521
1521
|
}
|
|
1522
1522
|
/**
|
|
1523
1523
|
* <p>The request action cannot be performed or is prohibited.</p>
|
|
@@ -1603,7 +1603,7 @@ export interface PolicyInformation {
|
|
|
1603
1603
|
* certification practice statement (CPS) qualifier.</p>
|
|
1604
1604
|
* @public
|
|
1605
1605
|
*/
|
|
1606
|
-
PolicyQualifiers?: PolicyQualifierInfo[];
|
|
1606
|
+
PolicyQualifiers?: PolicyQualifierInfo[] | undefined;
|
|
1607
1607
|
}
|
|
1608
1608
|
/**
|
|
1609
1609
|
* <p/>
|
|
@@ -1634,7 +1634,7 @@ export interface CustomExtension {
|
|
|
1634
1634
|
* <p>Specifies the critical flag of the X.509 extension.</p>
|
|
1635
1635
|
* @public
|
|
1636
1636
|
*/
|
|
1637
|
-
Critical?: boolean;
|
|
1637
|
+
Critical?: boolean | undefined;
|
|
1638
1638
|
}
|
|
1639
1639
|
/**
|
|
1640
1640
|
* @public
|
|
@@ -1666,13 +1666,13 @@ export interface ExtendedKeyUsage {
|
|
|
1666
1666
|
* 5280</a>.</p>
|
|
1667
1667
|
* @public
|
|
1668
1668
|
*/
|
|
1669
|
-
ExtendedKeyUsageType?: ExtendedKeyUsageType;
|
|
1669
|
+
ExtendedKeyUsageType?: ExtendedKeyUsageType | undefined;
|
|
1670
1670
|
/**
|
|
1671
1671
|
* <p>Specifies a custom <code>ExtendedKeyUsage</code> with an object identifier
|
|
1672
1672
|
* (OID).</p>
|
|
1673
1673
|
* @public
|
|
1674
1674
|
*/
|
|
1675
|
-
ExtendedKeyUsageObjectIdentifier?: string;
|
|
1675
|
+
ExtendedKeyUsageObjectIdentifier?: string | undefined;
|
|
1676
1676
|
}
|
|
1677
1677
|
/**
|
|
1678
1678
|
* <p>Contains X.509 extension information for a certificate.</p>
|
|
@@ -1690,26 +1690,26 @@ export interface Extensions {
|
|
|
1690
1690
|
* certificate.</p>
|
|
1691
1691
|
* @public
|
|
1692
1692
|
*/
|
|
1693
|
-
CertificatePolicies?: PolicyInformation[];
|
|
1693
|
+
CertificatePolicies?: PolicyInformation[] | undefined;
|
|
1694
1694
|
/**
|
|
1695
1695
|
* <p>Specifies additional purposes for which the certified public key may be used other
|
|
1696
1696
|
* than basic purposes indicated in the <code>KeyUsage</code> extension.</p>
|
|
1697
1697
|
* @public
|
|
1698
1698
|
*/
|
|
1699
|
-
ExtendedKeyUsage?: ExtendedKeyUsage[];
|
|
1699
|
+
ExtendedKeyUsage?: ExtendedKeyUsage[] | undefined;
|
|
1700
1700
|
/**
|
|
1701
1701
|
* <p>Defines one or more purposes for which the key contained in the certificate can be
|
|
1702
1702
|
* used. Default value for each option is false.</p>
|
|
1703
1703
|
* @public
|
|
1704
1704
|
*/
|
|
1705
|
-
KeyUsage?: KeyUsage;
|
|
1705
|
+
KeyUsage?: KeyUsage | undefined;
|
|
1706
1706
|
/**
|
|
1707
1707
|
* <p>The subject alternative name extension allows identities to be bound to the subject of
|
|
1708
1708
|
* the certificate. These identities may be included in addition to or in place of the
|
|
1709
1709
|
* identity in the subject field of the certificate.</p>
|
|
1710
1710
|
* @public
|
|
1711
1711
|
*/
|
|
1712
|
-
SubjectAlternativeNames?: GeneralName[];
|
|
1712
|
+
SubjectAlternativeNames?: GeneralName[] | undefined;
|
|
1713
1713
|
/**
|
|
1714
1714
|
* <p/>
|
|
1715
1715
|
* <p>Contains a sequence of one or more X.509 extensions, each of which consists of an
|
|
@@ -1719,7 +1719,7 @@ export interface Extensions {
|
|
|
1719
1719
|
* </p>
|
|
1720
1720
|
* @public
|
|
1721
1721
|
*/
|
|
1722
|
-
CustomExtensions?: CustomExtension[];
|
|
1722
|
+
CustomExtensions?: CustomExtension[] | undefined;
|
|
1723
1723
|
}
|
|
1724
1724
|
/**
|
|
1725
1725
|
* <p>Contains X.509 certificate information to be placed in an issued certificate. An
|
|
@@ -1735,7 +1735,7 @@ export interface ApiPassthrough {
|
|
|
1735
1735
|
* <p>Specifies X.509 extension information for a certificate.</p>
|
|
1736
1736
|
* @public
|
|
1737
1737
|
*/
|
|
1738
|
-
Extensions?: Extensions;
|
|
1738
|
+
Extensions?: Extensions | undefined;
|
|
1739
1739
|
/**
|
|
1740
1740
|
* <p>Contains information about the certificate subject. The <code>Subject</code> field in
|
|
1741
1741
|
* the certificate identifies the entity that owns or controls the public key in the
|
|
@@ -1744,7 +1744,7 @@ export interface ApiPassthrough {
|
|
|
1744
1744
|
* distinguished names (RDNs). The RDNs are separated by commas in the certificate.</p>
|
|
1745
1745
|
* @public
|
|
1746
1746
|
*/
|
|
1747
|
-
Subject?: ASN1Subject;
|
|
1747
|
+
Subject?: ASN1Subject | undefined;
|
|
1748
1748
|
}
|
|
1749
1749
|
/**
|
|
1750
1750
|
* @public
|
|
@@ -1843,7 +1843,7 @@ export interface IssueCertificateRequest {
|
|
|
1843
1843
|
* operation rules</a> to determine what information is used.</p>
|
|
1844
1844
|
* @public
|
|
1845
1845
|
*/
|
|
1846
|
-
ApiPassthrough?: ApiPassthrough;
|
|
1846
|
+
ApiPassthrough?: ApiPassthrough | undefined;
|
|
1847
1847
|
/**
|
|
1848
1848
|
* <p>The Amazon Resource Name (ARN) that was returned when you called <a href="https://docs.aws.amazon.com/privateca/latest/APIReference/API_CreateCertificateAuthority.html">CreateCertificateAuthority</a>. This must be of the form:</p>
|
|
1849
1849
|
* <p>
|
|
@@ -1900,7 +1900,7 @@ export interface IssueCertificateRequest {
|
|
|
1900
1900
|
* Templates</a>.</p>
|
|
1901
1901
|
* @public
|
|
1902
1902
|
*/
|
|
1903
|
-
TemplateArn?: string;
|
|
1903
|
+
TemplateArn?: string | undefined;
|
|
1904
1904
|
/**
|
|
1905
1905
|
* <p>Information describing the end of the validity period of the certificate. This
|
|
1906
1906
|
* parameter sets the “Not After” date for the certificate.</p>
|
|
@@ -1934,7 +1934,7 @@ export interface IssueCertificateRequest {
|
|
|
1934
1934
|
* in RFC 5280.</p>
|
|
1935
1935
|
* @public
|
|
1936
1936
|
*/
|
|
1937
|
-
ValidityNotBefore?: Validity;
|
|
1937
|
+
ValidityNotBefore?: Validity | undefined;
|
|
1938
1938
|
/**
|
|
1939
1939
|
* <p>Alphanumeric string that can be used to distinguish between calls to the <b>IssueCertificate</b> action. Idempotency tokens for <b>IssueCertificate</b> time out after five minutes. Therefore, if
|
|
1940
1940
|
* you call <b>IssueCertificate</b> multiple times with the same
|
|
@@ -1943,7 +1943,7 @@ export interface IssueCertificateRequest {
|
|
|
1943
1943
|
* each call, Amazon Web Services Private CA recognizes that you are requesting multiple certificates.</p>
|
|
1944
1944
|
* @public
|
|
1945
1945
|
*/
|
|
1946
|
-
IdempotencyToken?: string;
|
|
1946
|
+
IdempotencyToken?: string | undefined;
|
|
1947
1947
|
}
|
|
1948
1948
|
/**
|
|
1949
1949
|
* @public
|
|
@@ -1958,7 +1958,7 @@ export interface IssueCertificateResponse {
|
|
|
1958
1958
|
* </p>
|
|
1959
1959
|
* @public
|
|
1960
1960
|
*/
|
|
1961
|
-
CertificateArn?: string;
|
|
1961
|
+
CertificateArn?: string | undefined;
|
|
1962
1962
|
}
|
|
1963
1963
|
/**
|
|
1964
1964
|
* <p>The certificate signing request is invalid.</p>
|
|
@@ -2010,20 +2010,20 @@ export interface ListCertificateAuthoritiesRequest {
|
|
|
2010
2010
|
* <p>Although the maximum value is 1000, the action only returns a maximum of 100 items.</p>
|
|
2011
2011
|
* @public
|
|
2012
2012
|
*/
|
|
2013
|
-
MaxResults?: number;
|
|
2013
|
+
MaxResults?: number | undefined;
|
|
2014
2014
|
/**
|
|
2015
2015
|
* <p>Use this parameter when paginating results in a subsequent request after you receive a
|
|
2016
2016
|
* response with truncated results. Set it to the value of the <code>NextToken</code>
|
|
2017
2017
|
* parameter from the response you just received.</p>
|
|
2018
2018
|
* @public
|
|
2019
2019
|
*/
|
|
2020
|
-
NextToken?: string;
|
|
2020
|
+
NextToken?: string | undefined;
|
|
2021
2021
|
/**
|
|
2022
2022
|
* <p>Use this parameter to filter the returned set of certificate authorities based on
|
|
2023
2023
|
* their owner. The default is SELF.</p>
|
|
2024
2024
|
* @public
|
|
2025
2025
|
*/
|
|
2026
|
-
ResourceOwner?: ResourceOwner;
|
|
2026
|
+
ResourceOwner?: ResourceOwner | undefined;
|
|
2027
2027
|
}
|
|
2028
2028
|
/**
|
|
2029
2029
|
* @public
|
|
@@ -2034,12 +2034,12 @@ export interface ListCertificateAuthoritiesResponse {
|
|
|
2034
2034
|
* <code>NextToken</code> parameter in a subsequent pagination request.</p>
|
|
2035
2035
|
* @public
|
|
2036
2036
|
*/
|
|
2037
|
-
NextToken?: string;
|
|
2037
|
+
NextToken?: string | undefined;
|
|
2038
2038
|
/**
|
|
2039
2039
|
* <p>Summary information about each certificate authority you have created.</p>
|
|
2040
2040
|
* @public
|
|
2041
2041
|
*/
|
|
2042
|
-
CertificateAuthorities?: CertificateAuthority[];
|
|
2042
|
+
CertificateAuthorities?: CertificateAuthority[] | undefined;
|
|
2043
2043
|
}
|
|
2044
2044
|
/**
|
|
2045
2045
|
* @public
|
|
@@ -2053,13 +2053,13 @@ export interface ListPermissionsRequest {
|
|
|
2053
2053
|
* additional items.</p>
|
|
2054
2054
|
* @public
|
|
2055
2055
|
*/
|
|
2056
|
-
MaxResults?: number;
|
|
2056
|
+
MaxResults?: number | undefined;
|
|
2057
2057
|
/**
|
|
2058
2058
|
* <p>When paginating results, use this parameter in a subsequent request after you receive
|
|
2059
2059
|
* a response with truncated results. Set it to the value of <b>NextToken</b> from the response you just received.</p>
|
|
2060
2060
|
* @public
|
|
2061
2061
|
*/
|
|
2062
|
-
NextToken?: string;
|
|
2062
|
+
NextToken?: string | undefined;
|
|
2063
2063
|
/**
|
|
2064
2064
|
* <p>The Amazon Resource Number (ARN) of the private CA to inspect. You can find the ARN by
|
|
2065
2065
|
* calling the <a href="https://docs.aws.amazon.com/privateca/latest/APIReference/API_ListCertificateAuthorities.html">ListCertificateAuthorities</a> action. This must be of the form:
|
|
@@ -2085,33 +2085,33 @@ export interface Permission {
|
|
|
2085
2085
|
* issued.</p>
|
|
2086
2086
|
* @public
|
|
2087
2087
|
*/
|
|
2088
|
-
CertificateAuthorityArn?: string;
|
|
2088
|
+
CertificateAuthorityArn?: string | undefined;
|
|
2089
2089
|
/**
|
|
2090
2090
|
* <p>The time at which the permission was created.</p>
|
|
2091
2091
|
* @public
|
|
2092
2092
|
*/
|
|
2093
|
-
CreatedAt?: Date;
|
|
2093
|
+
CreatedAt?: Date | undefined;
|
|
2094
2094
|
/**
|
|
2095
2095
|
* <p>The Amazon Web Services service or entity that holds the permission. At this time, the only valid
|
|
2096
2096
|
* principal is <code>acm.amazonaws.com</code>.</p>
|
|
2097
2097
|
* @public
|
|
2098
2098
|
*/
|
|
2099
|
-
Principal?: string;
|
|
2099
|
+
Principal?: string | undefined;
|
|
2100
2100
|
/**
|
|
2101
2101
|
* <p>The ID of the account that assigned the permission.</p>
|
|
2102
2102
|
* @public
|
|
2103
2103
|
*/
|
|
2104
|
-
SourceAccount?: string;
|
|
2104
|
+
SourceAccount?: string | undefined;
|
|
2105
2105
|
/**
|
|
2106
2106
|
* <p>The private CA actions that can be performed by the designated Amazon Web Services service.</p>
|
|
2107
2107
|
* @public
|
|
2108
2108
|
*/
|
|
2109
|
-
Actions?: ActionType[];
|
|
2109
|
+
Actions?: ActionType[] | undefined;
|
|
2110
2110
|
/**
|
|
2111
2111
|
* <p>The name of the policy that is associated with the permission.</p>
|
|
2112
2112
|
* @public
|
|
2113
2113
|
*/
|
|
2114
|
-
Policy?: string;
|
|
2114
|
+
Policy?: string | undefined;
|
|
2115
2115
|
}
|
|
2116
2116
|
/**
|
|
2117
2117
|
* @public
|
|
@@ -2122,13 +2122,13 @@ export interface ListPermissionsResponse {
|
|
|
2122
2122
|
* </p>
|
|
2123
2123
|
* @public
|
|
2124
2124
|
*/
|
|
2125
|
-
NextToken?: string;
|
|
2125
|
+
NextToken?: string | undefined;
|
|
2126
2126
|
/**
|
|
2127
2127
|
* <p>Summary information about each permission assigned by the specified private CA,
|
|
2128
2128
|
* including the action enabled, the policy provided, and the time of creation.</p>
|
|
2129
2129
|
* @public
|
|
2130
2130
|
*/
|
|
2131
|
-
Permissions?: Permission[];
|
|
2131
|
+
Permissions?: Permission[] | undefined;
|
|
2132
2132
|
}
|
|
2133
2133
|
/**
|
|
2134
2134
|
* @public
|
|
@@ -2142,13 +2142,13 @@ export interface ListTagsRequest {
|
|
|
2142
2142
|
* additional items.</p>
|
|
2143
2143
|
* @public
|
|
2144
2144
|
*/
|
|
2145
|
-
MaxResults?: number;
|
|
2145
|
+
MaxResults?: number | undefined;
|
|
2146
2146
|
/**
|
|
2147
2147
|
* <p>Use this parameter when paginating results in a subsequent request after you receive a
|
|
2148
2148
|
* response with truncated results. Set it to the value of <b>NextToken</b> from the response you just received.</p>
|
|
2149
2149
|
* @public
|
|
2150
2150
|
*/
|
|
2151
|
-
NextToken?: string;
|
|
2151
|
+
NextToken?: string | undefined;
|
|
2152
2152
|
/**
|
|
2153
2153
|
* <p>The Amazon Resource Name (ARN) that was returned when you called the <a href="https://docs.aws.amazon.com/privateca/latest/APIReference/API_CreateCertificateAuthority.html">CreateCertificateAuthority</a> action. This must be of the form: </p>
|
|
2154
2154
|
* <p>
|
|
@@ -2168,12 +2168,12 @@ export interface ListTagsResponse {
|
|
|
2168
2168
|
* </p>
|
|
2169
2169
|
* @public
|
|
2170
2170
|
*/
|
|
2171
|
-
NextToken?: string;
|
|
2171
|
+
NextToken?: string | undefined;
|
|
2172
2172
|
/**
|
|
2173
2173
|
* <p>The tags associated with your private CA.</p>
|
|
2174
2174
|
* @public
|
|
2175
2175
|
*/
|
|
2176
|
-
Tags?: Tag[];
|
|
2176
|
+
Tags?: Tag[] | undefined;
|
|
2177
2177
|
}
|
|
2178
2178
|
/**
|
|
2179
2179
|
* @public
|
|
@@ -2370,10 +2370,10 @@ export interface UpdateCertificateAuthorityRequest {
|
|
|
2370
2370
|
* </important>
|
|
2371
2371
|
* @public
|
|
2372
2372
|
*/
|
|
2373
|
-
RevocationConfiguration?: RevocationConfiguration;
|
|
2373
|
+
RevocationConfiguration?: RevocationConfiguration | undefined;
|
|
2374
2374
|
/**
|
|
2375
2375
|
* <p>Status of your private CA.</p>
|
|
2376
2376
|
* @public
|
|
2377
2377
|
*/
|
|
2378
|
-
Status?: CertificateAuthorityStatus;
|
|
2378
|
+
Status?: CertificateAuthorityStatus | undefined;
|
|
2379
2379
|
}
|