@aws-sdk/client-acm 3.933.0 → 3.935.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.
@@ -0,0 +1,149 @@
1
+ export declare const RecordType: {
2
+ readonly CNAME: "CNAME";
3
+ };
4
+ export type RecordType = (typeof RecordType)[keyof typeof RecordType];
5
+ export declare const ValidationMethod: {
6
+ readonly DNS: "DNS";
7
+ readonly EMAIL: "EMAIL";
8
+ readonly HTTP: "HTTP";
9
+ };
10
+ export type ValidationMethod =
11
+ (typeof ValidationMethod)[keyof typeof ValidationMethod];
12
+ export declare const DomainStatus: {
13
+ readonly FAILED: "FAILED";
14
+ readonly PENDING_VALIDATION: "PENDING_VALIDATION";
15
+ readonly SUCCESS: "SUCCESS";
16
+ };
17
+ export type DomainStatus = (typeof DomainStatus)[keyof typeof DomainStatus];
18
+ export declare const ExtendedKeyUsageName: {
19
+ readonly ANY: "ANY";
20
+ readonly CODE_SIGNING: "CODE_SIGNING";
21
+ readonly CUSTOM: "CUSTOM";
22
+ readonly EMAIL_PROTECTION: "EMAIL_PROTECTION";
23
+ readonly IPSEC_END_SYSTEM: "IPSEC_END_SYSTEM";
24
+ readonly IPSEC_TUNNEL: "IPSEC_TUNNEL";
25
+ readonly IPSEC_USER: "IPSEC_USER";
26
+ readonly NONE: "NONE";
27
+ readonly OCSP_SIGNING: "OCSP_SIGNING";
28
+ readonly TIME_STAMPING: "TIME_STAMPING";
29
+ readonly TLS_WEB_CLIENT_AUTHENTICATION: "TLS_WEB_CLIENT_AUTHENTICATION";
30
+ readonly TLS_WEB_SERVER_AUTHENTICATION: "TLS_WEB_SERVER_AUTHENTICATION";
31
+ };
32
+ export type ExtendedKeyUsageName =
33
+ (typeof ExtendedKeyUsageName)[keyof typeof ExtendedKeyUsageName];
34
+ export declare const FailureReason: {
35
+ readonly ADDITIONAL_VERIFICATION_REQUIRED: "ADDITIONAL_VERIFICATION_REQUIRED";
36
+ readonly CAA_ERROR: "CAA_ERROR";
37
+ readonly DOMAIN_NOT_ALLOWED: "DOMAIN_NOT_ALLOWED";
38
+ readonly DOMAIN_VALIDATION_DENIED: "DOMAIN_VALIDATION_DENIED";
39
+ readonly INVALID_PUBLIC_DOMAIN: "INVALID_PUBLIC_DOMAIN";
40
+ readonly NO_AVAILABLE_CONTACTS: "NO_AVAILABLE_CONTACTS";
41
+ readonly OTHER: "OTHER";
42
+ readonly PCA_ACCESS_DENIED: "PCA_ACCESS_DENIED";
43
+ readonly PCA_INVALID_ARGS: "PCA_INVALID_ARGS";
44
+ readonly PCA_INVALID_ARN: "PCA_INVALID_ARN";
45
+ readonly PCA_INVALID_DURATION: "PCA_INVALID_DURATION";
46
+ readonly PCA_INVALID_STATE: "PCA_INVALID_STATE";
47
+ readonly PCA_LIMIT_EXCEEDED: "PCA_LIMIT_EXCEEDED";
48
+ readonly PCA_NAME_CONSTRAINTS_VALIDATION: "PCA_NAME_CONSTRAINTS_VALIDATION";
49
+ readonly PCA_REQUEST_FAILED: "PCA_REQUEST_FAILED";
50
+ readonly PCA_RESOURCE_NOT_FOUND: "PCA_RESOURCE_NOT_FOUND";
51
+ readonly SLR_NOT_FOUND: "SLR_NOT_FOUND";
52
+ };
53
+ export type FailureReason = (typeof FailureReason)[keyof typeof FailureReason];
54
+ export declare const KeyAlgorithm: {
55
+ readonly EC_prime256v1: "EC_prime256v1";
56
+ readonly EC_secp384r1: "EC_secp384r1";
57
+ readonly EC_secp521r1: "EC_secp521r1";
58
+ readonly RSA_1024: "RSA_1024";
59
+ readonly RSA_2048: "RSA_2048";
60
+ readonly RSA_3072: "RSA_3072";
61
+ readonly RSA_4096: "RSA_4096";
62
+ };
63
+ export type KeyAlgorithm = (typeof KeyAlgorithm)[keyof typeof KeyAlgorithm];
64
+ export declare const KeyUsageName: {
65
+ readonly ANY: "ANY";
66
+ readonly CERTIFICATE_SIGNING: "CERTIFICATE_SIGNING";
67
+ readonly CRL_SIGNING: "CRL_SIGNING";
68
+ readonly CUSTOM: "CUSTOM";
69
+ readonly DATA_ENCIPHERMENT: "DATA_ENCIPHERMENT";
70
+ readonly DECIPHER_ONLY: "DECIPHER_ONLY";
71
+ readonly DIGITAL_SIGNATURE: "DIGITAL_SIGNATURE";
72
+ readonly ENCHIPER_ONLY: "ENCIPHER_ONLY";
73
+ readonly KEY_AGREEMENT: "KEY_AGREEMENT";
74
+ readonly KEY_ENCIPHERMENT: "KEY_ENCIPHERMENT";
75
+ readonly NON_REPUDATION: "NON_REPUDIATION";
76
+ };
77
+ export type KeyUsageName = (typeof KeyUsageName)[keyof typeof KeyUsageName];
78
+ export declare const CertificateManagedBy: {
79
+ readonly CLOUDFRONT: "CLOUDFRONT";
80
+ };
81
+ export type CertificateManagedBy =
82
+ (typeof CertificateManagedBy)[keyof typeof CertificateManagedBy];
83
+ export declare const CertificateTransparencyLoggingPreference: {
84
+ readonly DISABLED: "DISABLED";
85
+ readonly ENABLED: "ENABLED";
86
+ };
87
+ export type CertificateTransparencyLoggingPreference =
88
+ (typeof CertificateTransparencyLoggingPreference)[keyof typeof CertificateTransparencyLoggingPreference];
89
+ export declare const CertificateExport: {
90
+ readonly DISABLED: "DISABLED";
91
+ readonly ENABLED: "ENABLED";
92
+ };
93
+ export type CertificateExport =
94
+ (typeof CertificateExport)[keyof typeof CertificateExport];
95
+ export declare const RenewalEligibility: {
96
+ readonly ELIGIBLE: "ELIGIBLE";
97
+ readonly INELIGIBLE: "INELIGIBLE";
98
+ };
99
+ export type RenewalEligibility =
100
+ (typeof RenewalEligibility)[keyof typeof RenewalEligibility];
101
+ export declare const RenewalStatus: {
102
+ readonly FAILED: "FAILED";
103
+ readonly PENDING_AUTO_RENEWAL: "PENDING_AUTO_RENEWAL";
104
+ readonly PENDING_VALIDATION: "PENDING_VALIDATION";
105
+ readonly SUCCESS: "SUCCESS";
106
+ };
107
+ export type RenewalStatus = (typeof RenewalStatus)[keyof typeof RenewalStatus];
108
+ export declare const RevocationReason: {
109
+ readonly AFFILIATION_CHANGED: "AFFILIATION_CHANGED";
110
+ readonly A_A_COMPROMISE: "A_A_COMPROMISE";
111
+ readonly CA_COMPROMISE: "CA_COMPROMISE";
112
+ readonly CERTIFICATE_HOLD: "CERTIFICATE_HOLD";
113
+ readonly CESSATION_OF_OPERATION: "CESSATION_OF_OPERATION";
114
+ readonly KEY_COMPROMISE: "KEY_COMPROMISE";
115
+ readonly PRIVILEGE_WITHDRAWN: "PRIVILEGE_WITHDRAWN";
116
+ readonly REMOVE_FROM_CRL: "REMOVE_FROM_CRL";
117
+ readonly SUPERCEDED: "SUPERCEDED";
118
+ readonly SUPERSEDED: "SUPERSEDED";
119
+ readonly UNSPECIFIED: "UNSPECIFIED";
120
+ };
121
+ export type RevocationReason =
122
+ (typeof RevocationReason)[keyof typeof RevocationReason];
123
+ export declare const CertificateStatus: {
124
+ readonly EXPIRED: "EXPIRED";
125
+ readonly FAILED: "FAILED";
126
+ readonly INACTIVE: "INACTIVE";
127
+ readonly ISSUED: "ISSUED";
128
+ readonly PENDING_VALIDATION: "PENDING_VALIDATION";
129
+ readonly REVOKED: "REVOKED";
130
+ readonly VALIDATION_TIMED_OUT: "VALIDATION_TIMED_OUT";
131
+ };
132
+ export type CertificateStatus =
133
+ (typeof CertificateStatus)[keyof typeof CertificateStatus];
134
+ export declare const CertificateType: {
135
+ readonly AMAZON_ISSUED: "AMAZON_ISSUED";
136
+ readonly IMPORTED: "IMPORTED";
137
+ readonly PRIVATE: "PRIVATE";
138
+ };
139
+ export type CertificateType =
140
+ (typeof CertificateType)[keyof typeof CertificateType];
141
+ export declare const SortBy: {
142
+ readonly CREATED_AT: "CREATED_AT";
143
+ };
144
+ export type SortBy = (typeof SortBy)[keyof typeof SortBy];
145
+ export declare const SortOrder: {
146
+ readonly ASCENDING: "ASCENDING";
147
+ readonly DESCENDING: "DESCENDING";
148
+ };
149
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
@@ -0,0 +1,114 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { ACMServiceException as __BaseException } from "./ACMServiceException";
3
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ Message?: string | undefined;
7
+ constructor(
8
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
+ );
10
+ }
11
+ export declare class InvalidArnException extends __BaseException {
12
+ readonly name: "InvalidArnException";
13
+ readonly $fault: "client";
14
+ constructor(
15
+ opts: __ExceptionOptionType<InvalidArnException, __BaseException>
16
+ );
17
+ }
18
+ export declare class InvalidParameterException extends __BaseException {
19
+ readonly name: "InvalidParameterException";
20
+ readonly $fault: "client";
21
+ constructor(
22
+ opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
23
+ );
24
+ }
25
+ export declare class InvalidTagException extends __BaseException {
26
+ readonly name: "InvalidTagException";
27
+ readonly $fault: "client";
28
+ constructor(
29
+ opts: __ExceptionOptionType<InvalidTagException, __BaseException>
30
+ );
31
+ }
32
+ export declare class ResourceNotFoundException extends __BaseException {
33
+ readonly name: "ResourceNotFoundException";
34
+ readonly $fault: "client";
35
+ constructor(
36
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
37
+ );
38
+ }
39
+ export declare class TagPolicyException extends __BaseException {
40
+ readonly name: "TagPolicyException";
41
+ readonly $fault: "client";
42
+ constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
43
+ }
44
+ export declare class ThrottlingException extends __BaseException {
45
+ readonly name: "ThrottlingException";
46
+ readonly $fault: "client";
47
+ constructor(
48
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
49
+ );
50
+ }
51
+ export declare class TooManyTagsException extends __BaseException {
52
+ readonly name: "TooManyTagsException";
53
+ readonly $fault: "client";
54
+ constructor(
55
+ opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
56
+ );
57
+ }
58
+ export declare class ConflictException extends __BaseException {
59
+ readonly name: "ConflictException";
60
+ readonly $fault: "client";
61
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
62
+ }
63
+ export declare class ResourceInUseException extends __BaseException {
64
+ readonly name: "ResourceInUseException";
65
+ readonly $fault: "client";
66
+ constructor(
67
+ opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
68
+ );
69
+ }
70
+ export declare class RequestInProgressException extends __BaseException {
71
+ readonly name: "RequestInProgressException";
72
+ readonly $fault: "client";
73
+ constructor(
74
+ opts: __ExceptionOptionType<RequestInProgressException, __BaseException>
75
+ );
76
+ }
77
+ export declare class LimitExceededException extends __BaseException {
78
+ readonly name: "LimitExceededException";
79
+ readonly $fault: "client";
80
+ constructor(
81
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
82
+ );
83
+ }
84
+ export declare class InvalidArgsException extends __BaseException {
85
+ readonly name: "InvalidArgsException";
86
+ readonly $fault: "client";
87
+ constructor(
88
+ opts: __ExceptionOptionType<InvalidArgsException, __BaseException>
89
+ );
90
+ }
91
+ export declare class ValidationException extends __BaseException {
92
+ readonly name: "ValidationException";
93
+ readonly $fault: "client";
94
+ constructor(
95
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
96
+ );
97
+ }
98
+ export declare class InvalidDomainValidationOptionsException extends __BaseException {
99
+ readonly name: "InvalidDomainValidationOptionsException";
100
+ readonly $fault: "client";
101
+ constructor(
102
+ opts: __ExceptionOptionType<
103
+ InvalidDomainValidationOptionsException,
104
+ __BaseException
105
+ >
106
+ );
107
+ }
108
+ export declare class InvalidStateException extends __BaseException {
109
+ readonly name: "InvalidStateException";
110
+ readonly $fault: "client";
111
+ constructor(
112
+ opts: __ExceptionOptionType<InvalidStateException, __BaseException>
113
+ );
114
+ }
@@ -1,13 +1,22 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { ACMServiceException as __BaseException } from "./ACMServiceException";
3
- export declare class AccessDeniedException extends __BaseException {
4
- readonly name: "AccessDeniedException";
5
- readonly $fault: "client";
6
- Message?: string | undefined;
7
- constructor(
8
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
- );
10
- }
1
+ import {
2
+ CertificateExport,
3
+ CertificateManagedBy,
4
+ CertificateStatus,
5
+ CertificateTransparencyLoggingPreference,
6
+ CertificateType,
7
+ DomainStatus,
8
+ ExtendedKeyUsageName,
9
+ FailureReason,
10
+ KeyAlgorithm,
11
+ KeyUsageName,
12
+ RecordType,
13
+ RenewalEligibility,
14
+ RenewalStatus,
15
+ RevocationReason,
16
+ SortBy,
17
+ SortOrder,
18
+ ValidationMethod,
19
+ } from "./enums";
11
20
  export interface Tag {
12
21
  Key: string | undefined;
13
22
  Value?: string | undefined;
@@ -16,79 +25,15 @@ export interface AddTagsToCertificateRequest {
16
25
  CertificateArn: string | undefined;
17
26
  Tags: Tag[] | undefined;
18
27
  }
19
- export declare class InvalidArnException extends __BaseException {
20
- readonly name: "InvalidArnException";
21
- readonly $fault: "client";
22
- constructor(
23
- opts: __ExceptionOptionType<InvalidArnException, __BaseException>
24
- );
25
- }
26
- export declare class InvalidParameterException extends __BaseException {
27
- readonly name: "InvalidParameterException";
28
- readonly $fault: "client";
29
- constructor(
30
- opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
31
- );
32
- }
33
- export declare class InvalidTagException extends __BaseException {
34
- readonly name: "InvalidTagException";
35
- readonly $fault: "client";
36
- constructor(
37
- opts: __ExceptionOptionType<InvalidTagException, __BaseException>
38
- );
39
- }
40
- export declare class ResourceNotFoundException extends __BaseException {
41
- readonly name: "ResourceNotFoundException";
42
- readonly $fault: "client";
43
- constructor(
44
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
45
- );
46
- }
47
- export declare class TagPolicyException extends __BaseException {
48
- readonly name: "TagPolicyException";
49
- readonly $fault: "client";
50
- constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
51
- }
52
- export declare class ThrottlingException extends __BaseException {
53
- readonly name: "ThrottlingException";
54
- readonly $fault: "client";
55
- constructor(
56
- opts: __ExceptionOptionType<ThrottlingException, __BaseException>
57
- );
58
- }
59
- export declare class TooManyTagsException extends __BaseException {
60
- readonly name: "TooManyTagsException";
61
- readonly $fault: "client";
62
- constructor(
63
- opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
64
- );
65
- }
66
28
  export interface HttpRedirect {
67
29
  RedirectFrom?: string | undefined;
68
30
  RedirectTo?: string | undefined;
69
31
  }
70
- export declare const RecordType: {
71
- readonly CNAME: "CNAME";
72
- };
73
- export type RecordType = (typeof RecordType)[keyof typeof RecordType];
74
32
  export interface ResourceRecord {
75
33
  Name: string | undefined;
76
34
  Type: RecordType | undefined;
77
35
  Value: string | undefined;
78
36
  }
79
- export declare const ValidationMethod: {
80
- readonly DNS: "DNS";
81
- readonly EMAIL: "EMAIL";
82
- readonly HTTP: "HTTP";
83
- };
84
- export type ValidationMethod =
85
- (typeof ValidationMethod)[keyof typeof ValidationMethod];
86
- export declare const DomainStatus: {
87
- readonly FAILED: "FAILED";
88
- readonly PENDING_VALIDATION: "PENDING_VALIDATION";
89
- readonly SUCCESS: "SUCCESS";
90
- };
91
- export type DomainStatus = (typeof DomainStatus)[keyof typeof DomainStatus];
92
37
  export interface DomainValidation {
93
38
  DomainName: string | undefined;
94
39
  ValidationEmails?: string[] | undefined;
@@ -98,148 +43,25 @@ export interface DomainValidation {
98
43
  HttpRedirect?: HttpRedirect | undefined;
99
44
  ValidationMethod?: ValidationMethod | undefined;
100
45
  }
101
- export declare const ExtendedKeyUsageName: {
102
- readonly ANY: "ANY";
103
- readonly CODE_SIGNING: "CODE_SIGNING";
104
- readonly CUSTOM: "CUSTOM";
105
- readonly EMAIL_PROTECTION: "EMAIL_PROTECTION";
106
- readonly IPSEC_END_SYSTEM: "IPSEC_END_SYSTEM";
107
- readonly IPSEC_TUNNEL: "IPSEC_TUNNEL";
108
- readonly IPSEC_USER: "IPSEC_USER";
109
- readonly NONE: "NONE";
110
- readonly OCSP_SIGNING: "OCSP_SIGNING";
111
- readonly TIME_STAMPING: "TIME_STAMPING";
112
- readonly TLS_WEB_CLIENT_AUTHENTICATION: "TLS_WEB_CLIENT_AUTHENTICATION";
113
- readonly TLS_WEB_SERVER_AUTHENTICATION: "TLS_WEB_SERVER_AUTHENTICATION";
114
- };
115
- export type ExtendedKeyUsageName =
116
- (typeof ExtendedKeyUsageName)[keyof typeof ExtendedKeyUsageName];
117
46
  export interface ExtendedKeyUsage {
118
47
  Name?: ExtendedKeyUsageName | undefined;
119
48
  OID?: string | undefined;
120
49
  }
121
- export declare const FailureReason: {
122
- readonly ADDITIONAL_VERIFICATION_REQUIRED: "ADDITIONAL_VERIFICATION_REQUIRED";
123
- readonly CAA_ERROR: "CAA_ERROR";
124
- readonly DOMAIN_NOT_ALLOWED: "DOMAIN_NOT_ALLOWED";
125
- readonly DOMAIN_VALIDATION_DENIED: "DOMAIN_VALIDATION_DENIED";
126
- readonly INVALID_PUBLIC_DOMAIN: "INVALID_PUBLIC_DOMAIN";
127
- readonly NO_AVAILABLE_CONTACTS: "NO_AVAILABLE_CONTACTS";
128
- readonly OTHER: "OTHER";
129
- readonly PCA_ACCESS_DENIED: "PCA_ACCESS_DENIED";
130
- readonly PCA_INVALID_ARGS: "PCA_INVALID_ARGS";
131
- readonly PCA_INVALID_ARN: "PCA_INVALID_ARN";
132
- readonly PCA_INVALID_DURATION: "PCA_INVALID_DURATION";
133
- readonly PCA_INVALID_STATE: "PCA_INVALID_STATE";
134
- readonly PCA_LIMIT_EXCEEDED: "PCA_LIMIT_EXCEEDED";
135
- readonly PCA_NAME_CONSTRAINTS_VALIDATION: "PCA_NAME_CONSTRAINTS_VALIDATION";
136
- readonly PCA_REQUEST_FAILED: "PCA_REQUEST_FAILED";
137
- readonly PCA_RESOURCE_NOT_FOUND: "PCA_RESOURCE_NOT_FOUND";
138
- readonly SLR_NOT_FOUND: "SLR_NOT_FOUND";
139
- };
140
- export type FailureReason = (typeof FailureReason)[keyof typeof FailureReason];
141
- export declare const KeyAlgorithm: {
142
- readonly EC_prime256v1: "EC_prime256v1";
143
- readonly EC_secp384r1: "EC_secp384r1";
144
- readonly EC_secp521r1: "EC_secp521r1";
145
- readonly RSA_1024: "RSA_1024";
146
- readonly RSA_2048: "RSA_2048";
147
- readonly RSA_3072: "RSA_3072";
148
- readonly RSA_4096: "RSA_4096";
149
- };
150
- export type KeyAlgorithm = (typeof KeyAlgorithm)[keyof typeof KeyAlgorithm];
151
- export declare const KeyUsageName: {
152
- readonly ANY: "ANY";
153
- readonly CERTIFICATE_SIGNING: "CERTIFICATE_SIGNING";
154
- readonly CRL_SIGNING: "CRL_SIGNING";
155
- readonly CUSTOM: "CUSTOM";
156
- readonly DATA_ENCIPHERMENT: "DATA_ENCIPHERMENT";
157
- readonly DECIPHER_ONLY: "DECIPHER_ONLY";
158
- readonly DIGITAL_SIGNATURE: "DIGITAL_SIGNATURE";
159
- readonly ENCHIPER_ONLY: "ENCIPHER_ONLY";
160
- readonly KEY_AGREEMENT: "KEY_AGREEMENT";
161
- readonly KEY_ENCIPHERMENT: "KEY_ENCIPHERMENT";
162
- readonly NON_REPUDATION: "NON_REPUDIATION";
163
- };
164
- export type KeyUsageName = (typeof KeyUsageName)[keyof typeof KeyUsageName];
165
50
  export interface KeyUsage {
166
51
  Name?: KeyUsageName | undefined;
167
52
  }
168
- export declare const CertificateManagedBy: {
169
- readonly CLOUDFRONT: "CLOUDFRONT";
170
- };
171
- export type CertificateManagedBy =
172
- (typeof CertificateManagedBy)[keyof typeof CertificateManagedBy];
173
- export declare const CertificateTransparencyLoggingPreference: {
174
- readonly DISABLED: "DISABLED";
175
- readonly ENABLED: "ENABLED";
176
- };
177
- export type CertificateTransparencyLoggingPreference =
178
- (typeof CertificateTransparencyLoggingPreference)[keyof typeof CertificateTransparencyLoggingPreference];
179
- export declare const CertificateExport: {
180
- readonly DISABLED: "DISABLED";
181
- readonly ENABLED: "ENABLED";
182
- };
183
- export type CertificateExport =
184
- (typeof CertificateExport)[keyof typeof CertificateExport];
185
53
  export interface CertificateOptions {
186
54
  CertificateTransparencyLoggingPreference?:
187
55
  | CertificateTransparencyLoggingPreference
188
56
  | undefined;
189
57
  Export?: CertificateExport | undefined;
190
58
  }
191
- export declare const RenewalEligibility: {
192
- readonly ELIGIBLE: "ELIGIBLE";
193
- readonly INELIGIBLE: "INELIGIBLE";
194
- };
195
- export type RenewalEligibility =
196
- (typeof RenewalEligibility)[keyof typeof RenewalEligibility];
197
- export declare const RenewalStatus: {
198
- readonly FAILED: "FAILED";
199
- readonly PENDING_AUTO_RENEWAL: "PENDING_AUTO_RENEWAL";
200
- readonly PENDING_VALIDATION: "PENDING_VALIDATION";
201
- readonly SUCCESS: "SUCCESS";
202
- };
203
- export type RenewalStatus = (typeof RenewalStatus)[keyof typeof RenewalStatus];
204
59
  export interface RenewalSummary {
205
60
  RenewalStatus: RenewalStatus | undefined;
206
61
  DomainValidationOptions: DomainValidation[] | undefined;
207
62
  RenewalStatusReason?: FailureReason | undefined;
208
63
  UpdatedAt: Date | undefined;
209
64
  }
210
- export declare const RevocationReason: {
211
- readonly AFFILIATION_CHANGED: "AFFILIATION_CHANGED";
212
- readonly A_A_COMPROMISE: "A_A_COMPROMISE";
213
- readonly CA_COMPROMISE: "CA_COMPROMISE";
214
- readonly CERTIFICATE_HOLD: "CERTIFICATE_HOLD";
215
- readonly CESSATION_OF_OPERATION: "CESSATION_OF_OPERATION";
216
- readonly KEY_COMPROMISE: "KEY_COMPROMISE";
217
- readonly PRIVILEGE_WITHDRAWN: "PRIVILEGE_WITHDRAWN";
218
- readonly REMOVE_FROM_CRL: "REMOVE_FROM_CRL";
219
- readonly SUPERCEDED: "SUPERCEDED";
220
- readonly SUPERSEDED: "SUPERSEDED";
221
- readonly UNSPECIFIED: "UNSPECIFIED";
222
- };
223
- export type RevocationReason =
224
- (typeof RevocationReason)[keyof typeof RevocationReason];
225
- export declare const CertificateStatus: {
226
- readonly EXPIRED: "EXPIRED";
227
- readonly FAILED: "FAILED";
228
- readonly INACTIVE: "INACTIVE";
229
- readonly ISSUED: "ISSUED";
230
- readonly PENDING_VALIDATION: "PENDING_VALIDATION";
231
- readonly REVOKED: "REVOKED";
232
- readonly VALIDATION_TIMED_OUT: "VALIDATION_TIMED_OUT";
233
- };
234
- export type CertificateStatus =
235
- (typeof CertificateStatus)[keyof typeof CertificateStatus];
236
- export declare const CertificateType: {
237
- readonly AMAZON_ISSUED: "AMAZON_ISSUED";
238
- readonly IMPORTED: "IMPORTED";
239
- readonly PRIVATE: "PRIVATE";
240
- };
241
- export type CertificateType =
242
- (typeof CertificateType)[keyof typeof CertificateType];
243
65
  export interface CertificateDetail {
244
66
  CertificateArn?: string | undefined;
245
67
  DomainName?: string | undefined;
@@ -269,21 +91,9 @@ export interface CertificateDetail {
269
91
  RenewalEligibility?: RenewalEligibility | undefined;
270
92
  Options?: CertificateOptions | undefined;
271
93
  }
272
- export declare class ConflictException extends __BaseException {
273
- readonly name: "ConflictException";
274
- readonly $fault: "client";
275
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
276
- }
277
94
  export interface DeleteCertificateRequest {
278
95
  CertificateArn: string | undefined;
279
96
  }
280
- export declare class ResourceInUseException extends __BaseException {
281
- readonly name: "ResourceInUseException";
282
- readonly $fault: "client";
283
- constructor(
284
- opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
285
- );
286
- }
287
97
  export interface DescribeCertificateRequest {
288
98
  CertificateArn: string | undefined;
289
99
  }
@@ -299,13 +109,6 @@ export interface ExportCertificateResponse {
299
109
  CertificateChain?: string | undefined;
300
110
  PrivateKey?: string | undefined;
301
111
  }
302
- export declare class RequestInProgressException extends __BaseException {
303
- readonly name: "RequestInProgressException";
304
- readonly $fault: "client";
305
- constructor(
306
- opts: __ExceptionOptionType<RequestInProgressException, __BaseException>
307
- );
308
- }
309
112
  export interface ExpiryEventsConfiguration {
310
113
  DaysBeforeExpiry?: number | undefined;
311
114
  }
@@ -329,20 +132,6 @@ export interface ImportCertificateRequest {
329
132
  export interface ImportCertificateResponse {
330
133
  CertificateArn?: string | undefined;
331
134
  }
332
- export declare class LimitExceededException extends __BaseException {
333
- readonly name: "LimitExceededException";
334
- readonly $fault: "client";
335
- constructor(
336
- opts: __ExceptionOptionType<LimitExceededException, __BaseException>
337
- );
338
- }
339
- export declare class InvalidArgsException extends __BaseException {
340
- readonly name: "InvalidArgsException";
341
- readonly $fault: "client";
342
- constructor(
343
- opts: __ExceptionOptionType<InvalidArgsException, __BaseException>
344
- );
345
- }
346
135
  export interface Filters {
347
136
  extendedKeyUsage?: ExtendedKeyUsageName[] | undefined;
348
137
  keyUsage?: KeyUsageName[] | undefined;
@@ -350,15 +139,6 @@ export interface Filters {
350
139
  exportOption?: CertificateExport | undefined;
351
140
  managedBy?: CertificateManagedBy | undefined;
352
141
  }
353
- export declare const SortBy: {
354
- readonly CREATED_AT: "CREATED_AT";
355
- };
356
- export type SortBy = (typeof SortBy)[keyof typeof SortBy];
357
- export declare const SortOrder: {
358
- readonly ASCENDING: "ASCENDING";
359
- readonly DESCENDING: "DESCENDING";
360
- };
361
- export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
362
142
  export interface ListCertificatesRequest {
363
143
  CertificateStatuses?: CertificateStatus[] | undefined;
364
144
  Includes?: Filters | undefined;
@@ -393,13 +173,6 @@ export interface ListCertificatesResponse {
393
173
  NextToken?: string | undefined;
394
174
  CertificateSummaryList?: CertificateSummary[] | undefined;
395
175
  }
396
- export declare class ValidationException extends __BaseException {
397
- readonly name: "ValidationException";
398
- readonly $fault: "client";
399
- constructor(
400
- opts: __ExceptionOptionType<ValidationException, __BaseException>
401
- );
402
- }
403
176
  export interface ListTagsForCertificateRequest {
404
177
  CertificateArn: string | undefined;
405
178
  }
@@ -417,16 +190,6 @@ export interface RemoveTagsFromCertificateRequest {
417
190
  export interface RenewCertificateRequest {
418
191
  CertificateArn: string | undefined;
419
192
  }
420
- export declare class InvalidDomainValidationOptionsException extends __BaseException {
421
- readonly name: "InvalidDomainValidationOptionsException";
422
- readonly $fault: "client";
423
- constructor(
424
- opts: __ExceptionOptionType<
425
- InvalidDomainValidationOptionsException,
426
- __BaseException
427
- >
428
- );
429
- }
430
193
  export interface DomainValidationOption {
431
194
  DomainName: string | undefined;
432
195
  ValidationDomain: string | undefined;
@@ -446,13 +209,6 @@ export interface RequestCertificateRequest {
446
209
  export interface RequestCertificateResponse {
447
210
  CertificateArn?: string | undefined;
448
211
  }
449
- export declare class InvalidStateException extends __BaseException {
450
- readonly name: "InvalidStateException";
451
- readonly $fault: "client";
452
- constructor(
453
- opts: __ExceptionOptionType<InvalidStateException, __BaseException>
454
- );
455
- }
456
212
  export interface ResendValidationEmailRequest {
457
213
  CertificateArn: string | undefined;
458
214
  Domain: string | undefined;