@aws-sdk/client-acm 3.169.0 → 3.171.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.
Files changed (35) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ACM.d.ts +259 -80
  3. package/dist-types/ts3.4/ACMClient.d.ts +193 -88
  4. package/dist-types/ts3.4/commands/AddTagsToCertificateCommand.d.ts +34 -17
  5. package/dist-types/ts3.4/commands/DeleteCertificateCommand.d.ts +31 -17
  6. package/dist-types/ts3.4/commands/DescribeCertificateCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/ExportCertificateCommand.d.ts +36 -17
  8. package/dist-types/ts3.4/commands/GetAccountConfigurationCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/GetCertificateCommand.d.ts +35 -17
  10. package/dist-types/ts3.4/commands/ImportCertificateCommand.d.ts +36 -17
  11. package/dist-types/ts3.4/commands/ListCertificatesCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/ListTagsForCertificateCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/PutAccountConfigurationCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/RemoveTagsFromCertificateCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/RenewCertificateCommand.d.ts +30 -17
  16. package/dist-types/ts3.4/commands/RequestCertificateCommand.d.ts +36 -17
  17. package/dist-types/ts3.4/commands/ResendValidationEmailCommand.d.ts +34 -17
  18. package/dist-types/ts3.4/commands/UpdateCertificateOptionsCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/index.d.ts +15 -15
  20. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  21. package/dist-types/ts3.4/index.d.ts +7 -7
  22. package/dist-types/ts3.4/models/ACMServiceException.d.ts +7 -6
  23. package/dist-types/ts3.4/models/index.d.ts +1 -1
  24. package/dist-types/ts3.4/models/models_0.d.ts +487 -570
  25. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
  26. package/dist-types/ts3.4/pagination/ListCertificatesPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/index.d.ts +2 -2
  28. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +185 -47
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  33. package/dist-types/ts3.4/waiters/index.d.ts +1 -1
  34. package/dist-types/ts3.4/waiters/waitForCertificateValidated.d.ts +11 -7
  35. package/package.json +35 -35
@@ -1,570 +1,487 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { ACMServiceException as __BaseException } from "./ACMServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
- Message?: string;
8
-
9
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
- }
11
-
12
- export interface Tag {
13
-
14
- Key: string | undefined;
15
-
16
- Value?: string;
17
- }
18
- export interface AddTagsToCertificateRequest {
19
-
20
- CertificateArn: string | undefined;
21
-
22
- Tags: Tag[] | undefined;
23
- }
24
-
25
- export declare class InvalidArnException extends __BaseException {
26
- readonly name: "InvalidArnException";
27
- readonly $fault: "client";
28
-
29
- constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
30
- }
31
-
32
- export declare class InvalidParameterException extends __BaseException {
33
- readonly name: "InvalidParameterException";
34
- readonly $fault: "client";
35
-
36
- constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
37
- }
38
-
39
- export declare class InvalidTagException extends __BaseException {
40
- readonly name: "InvalidTagException";
41
- readonly $fault: "client";
42
-
43
- constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
44
- }
45
-
46
- export declare class ResourceNotFoundException extends __BaseException {
47
- readonly name: "ResourceNotFoundException";
48
- readonly $fault: "client";
49
-
50
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
51
- }
52
-
53
- export declare class TagPolicyException extends __BaseException {
54
- readonly name: "TagPolicyException";
55
- readonly $fault: "client";
56
-
57
- constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
58
- }
59
-
60
- export declare class ThrottlingException extends __BaseException {
61
- readonly name: "ThrottlingException";
62
- readonly $fault: "client";
63
-
64
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
65
- }
66
-
67
- export declare class TooManyTagsException extends __BaseException {
68
- readonly name: "TooManyTagsException";
69
- readonly $fault: "client";
70
-
71
- constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
72
- }
73
- export declare enum RecordType {
74
- CNAME = "CNAME"
75
- }
76
-
77
- export interface ResourceRecord {
78
-
79
- Name: string | undefined;
80
-
81
- Type: RecordType | string | undefined;
82
-
83
- Value: string | undefined;
84
- }
85
- export declare enum ValidationMethod {
86
- DNS = "DNS",
87
- EMAIL = "EMAIL"
88
- }
89
- export declare enum DomainStatus {
90
- FAILED = "FAILED",
91
- PENDING_VALIDATION = "PENDING_VALIDATION",
92
- SUCCESS = "SUCCESS"
93
- }
94
-
95
- export interface DomainValidation {
96
-
97
- DomainName: string | undefined;
98
-
99
- ValidationEmails?: string[];
100
-
101
- ValidationDomain?: string;
102
-
103
- ValidationStatus?: DomainStatus | string;
104
-
105
- ResourceRecord?: ResourceRecord;
106
-
107
- ValidationMethod?: ValidationMethod | string;
108
- }
109
- export declare enum ExtendedKeyUsageName {
110
- ANY = "ANY",
111
- CODE_SIGNING = "CODE_SIGNING",
112
- CUSTOM = "CUSTOM",
113
- EMAIL_PROTECTION = "EMAIL_PROTECTION",
114
- IPSEC_END_SYSTEM = "IPSEC_END_SYSTEM",
115
- IPSEC_TUNNEL = "IPSEC_TUNNEL",
116
- IPSEC_USER = "IPSEC_USER",
117
- NONE = "NONE",
118
- OCSP_SIGNING = "OCSP_SIGNING",
119
- TIME_STAMPING = "TIME_STAMPING",
120
- TLS_WEB_CLIENT_AUTHENTICATION = "TLS_WEB_CLIENT_AUTHENTICATION",
121
- TLS_WEB_SERVER_AUTHENTICATION = "TLS_WEB_SERVER_AUTHENTICATION"
122
- }
123
-
124
- export interface ExtendedKeyUsage {
125
-
126
- Name?: ExtendedKeyUsageName | string;
127
-
128
- OID?: string;
129
- }
130
- export declare enum FailureReason {
131
- ADDITIONAL_VERIFICATION_REQUIRED = "ADDITIONAL_VERIFICATION_REQUIRED",
132
- CAA_ERROR = "CAA_ERROR",
133
- DOMAIN_NOT_ALLOWED = "DOMAIN_NOT_ALLOWED",
134
- DOMAIN_VALIDATION_DENIED = "DOMAIN_VALIDATION_DENIED",
135
- INVALID_PUBLIC_DOMAIN = "INVALID_PUBLIC_DOMAIN",
136
- NO_AVAILABLE_CONTACTS = "NO_AVAILABLE_CONTACTS",
137
- OTHER = "OTHER",
138
- PCA_ACCESS_DENIED = "PCA_ACCESS_DENIED",
139
- PCA_INVALID_ARGS = "PCA_INVALID_ARGS",
140
- PCA_INVALID_ARN = "PCA_INVALID_ARN",
141
- PCA_INVALID_DURATION = "PCA_INVALID_DURATION",
142
- PCA_INVALID_STATE = "PCA_INVALID_STATE",
143
- PCA_LIMIT_EXCEEDED = "PCA_LIMIT_EXCEEDED",
144
- PCA_NAME_CONSTRAINTS_VALIDATION = "PCA_NAME_CONSTRAINTS_VALIDATION",
145
- PCA_REQUEST_FAILED = "PCA_REQUEST_FAILED",
146
- PCA_RESOURCE_NOT_FOUND = "PCA_RESOURCE_NOT_FOUND",
147
- SLR_NOT_FOUND = "SLR_NOT_FOUND"
148
- }
149
- export declare enum KeyAlgorithm {
150
- EC_prime256v1 = "EC_prime256v1",
151
- EC_secp384r1 = "EC_secp384r1",
152
- EC_secp521r1 = "EC_secp521r1",
153
- RSA_1024 = "RSA_1024",
154
- RSA_2048 = "RSA_2048",
155
- RSA_3072 = "RSA_3072",
156
- RSA_4096 = "RSA_4096"
157
- }
158
- export declare enum KeyUsageName {
159
- ANY = "ANY",
160
- CERTIFICATE_SIGNING = "CERTIFICATE_SIGNING",
161
- CRL_SIGNING = "CRL_SIGNING",
162
- CUSTOM = "CUSTOM",
163
- DATA_ENCIPHERMENT = "DATA_ENCIPHERMENT",
164
- DECIPHER_ONLY = "DECIPHER_ONLY",
165
- DIGITAL_SIGNATURE = "DIGITAL_SIGNATURE",
166
- ENCHIPER_ONLY = "ENCIPHER_ONLY",
167
- KEY_AGREEMENT = "KEY_AGREEMENT",
168
- KEY_ENCIPHERMENT = "KEY_ENCIPHERMENT",
169
- NON_REPUDATION = "NON_REPUDIATION"
170
- }
171
-
172
- export interface KeyUsage {
173
-
174
- Name?: KeyUsageName | string;
175
- }
176
- export declare enum CertificateTransparencyLoggingPreference {
177
- DISABLED = "DISABLED",
178
- ENABLED = "ENABLED"
179
- }
180
-
181
- export interface CertificateOptions {
182
-
183
- CertificateTransparencyLoggingPreference?: CertificateTransparencyLoggingPreference | string;
184
- }
185
- export declare enum RenewalEligibility {
186
- ELIGIBLE = "ELIGIBLE",
187
- INELIGIBLE = "INELIGIBLE"
188
- }
189
- export declare enum RenewalStatus {
190
- FAILED = "FAILED",
191
- PENDING_AUTO_RENEWAL = "PENDING_AUTO_RENEWAL",
192
- PENDING_VALIDATION = "PENDING_VALIDATION",
193
- SUCCESS = "SUCCESS"
194
- }
195
-
196
- export interface RenewalSummary {
197
-
198
- RenewalStatus: RenewalStatus | string | undefined;
199
-
200
- DomainValidationOptions: DomainValidation[] | undefined;
201
-
202
- RenewalStatusReason?: FailureReason | string;
203
-
204
- UpdatedAt: Date | undefined;
205
- }
206
- export declare enum RevocationReason {
207
- AFFILIATION_CHANGED = "AFFILIATION_CHANGED",
208
- A_A_COMPROMISE = "A_A_COMPROMISE",
209
- CA_COMPROMISE = "CA_COMPROMISE",
210
- CERTIFICATE_HOLD = "CERTIFICATE_HOLD",
211
- CESSATION_OF_OPERATION = "CESSATION_OF_OPERATION",
212
- KEY_COMPROMISE = "KEY_COMPROMISE",
213
- PRIVILEGE_WITHDRAWN = "PRIVILEGE_WITHDRAWN",
214
- REMOVE_FROM_CRL = "REMOVE_FROM_CRL",
215
- SUPERCEDED = "SUPERCEDED",
216
- UNSPECIFIED = "UNSPECIFIED"
217
- }
218
- export declare enum CertificateStatus {
219
- EXPIRED = "EXPIRED",
220
- FAILED = "FAILED",
221
- INACTIVE = "INACTIVE",
222
- ISSUED = "ISSUED",
223
- PENDING_VALIDATION = "PENDING_VALIDATION",
224
- REVOKED = "REVOKED",
225
- VALIDATION_TIMED_OUT = "VALIDATION_TIMED_OUT"
226
- }
227
- export declare enum CertificateType {
228
- AMAZON_ISSUED = "AMAZON_ISSUED",
229
- IMPORTED = "IMPORTED",
230
- PRIVATE = "PRIVATE"
231
- }
232
-
233
- export interface CertificateDetail {
234
-
235
- CertificateArn?: string;
236
-
237
- DomainName?: string;
238
-
239
- SubjectAlternativeNames?: string[];
240
-
241
- DomainValidationOptions?: DomainValidation[];
242
-
243
- Serial?: string;
244
-
245
- Subject?: string;
246
-
247
- Issuer?: string;
248
-
249
- CreatedAt?: Date;
250
-
251
- IssuedAt?: Date;
252
-
253
- ImportedAt?: Date;
254
-
255
- Status?: CertificateStatus | string;
256
-
257
- RevokedAt?: Date;
258
-
259
- RevocationReason?: RevocationReason | string;
260
-
261
- NotBefore?: Date;
262
-
263
- NotAfter?: Date;
264
-
265
- KeyAlgorithm?: KeyAlgorithm | string;
266
-
267
- SignatureAlgorithm?: string;
268
-
269
- InUseBy?: string[];
270
-
271
- FailureReason?: FailureReason | string;
272
-
273
- Type?: CertificateType | string;
274
-
275
- RenewalSummary?: RenewalSummary;
276
-
277
- KeyUsages?: KeyUsage[];
278
-
279
- ExtendedKeyUsages?: ExtendedKeyUsage[];
280
-
281
- CertificateAuthorityArn?: string;
282
-
283
- RenewalEligibility?: RenewalEligibility | string;
284
-
285
- Options?: CertificateOptions;
286
- }
287
- export interface DeleteCertificateRequest {
288
-
289
- CertificateArn: string | undefined;
290
- }
291
-
292
- export declare class ResourceInUseException extends __BaseException {
293
- readonly name: "ResourceInUseException";
294
- readonly $fault: "client";
295
-
296
- constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
297
- }
298
- export interface DescribeCertificateRequest {
299
-
300
- CertificateArn: string | undefined;
301
- }
302
- export interface DescribeCertificateResponse {
303
-
304
- Certificate?: CertificateDetail;
305
- }
306
- export interface ExportCertificateRequest {
307
-
308
- CertificateArn: string | undefined;
309
-
310
- Passphrase: Uint8Array | undefined;
311
- }
312
- export interface ExportCertificateResponse {
313
-
314
- Certificate?: string;
315
-
316
- CertificateChain?: string;
317
-
318
- PrivateKey?: string;
319
- }
320
-
321
- export declare class RequestInProgressException extends __BaseException {
322
- readonly name: "RequestInProgressException";
323
- readonly $fault: "client";
324
-
325
- constructor(opts: __ExceptionOptionType<RequestInProgressException, __BaseException>);
326
- }
327
-
328
- export interface ExpiryEventsConfiguration {
329
-
330
- DaysBeforeExpiry?: number;
331
- }
332
- export interface GetAccountConfigurationResponse {
333
-
334
- ExpiryEvents?: ExpiryEventsConfiguration;
335
- }
336
- export interface GetCertificateRequest {
337
-
338
- CertificateArn: string | undefined;
339
- }
340
- export interface GetCertificateResponse {
341
-
342
- Certificate?: string;
343
-
344
- CertificateChain?: string;
345
- }
346
- export interface ImportCertificateRequest {
347
-
348
- CertificateArn?: string;
349
-
350
- Certificate: Uint8Array | undefined;
351
-
352
- PrivateKey: Uint8Array | undefined;
353
-
354
- CertificateChain?: Uint8Array;
355
-
356
- Tags?: Tag[];
357
- }
358
- export interface ImportCertificateResponse {
359
-
360
- CertificateArn?: string;
361
- }
362
-
363
- export declare class LimitExceededException extends __BaseException {
364
- readonly name: "LimitExceededException";
365
- readonly $fault: "client";
366
-
367
- constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
368
- }
369
-
370
- export declare class InvalidArgsException extends __BaseException {
371
- readonly name: "InvalidArgsException";
372
- readonly $fault: "client";
373
-
374
- constructor(opts: __ExceptionOptionType<InvalidArgsException, __BaseException>);
375
- }
376
-
377
- export interface Filters {
378
-
379
- extendedKeyUsage?: (ExtendedKeyUsageName | string)[];
380
-
381
- keyUsage?: (KeyUsageName | string)[];
382
-
383
- keyTypes?: (KeyAlgorithm | string)[];
384
- }
385
- export interface ListCertificatesRequest {
386
-
387
- CertificateStatuses?: (CertificateStatus | string)[];
388
-
389
- Includes?: Filters;
390
-
391
- NextToken?: string;
392
-
393
- MaxItems?: number;
394
- }
395
-
396
- export interface CertificateSummary {
397
-
398
- CertificateArn?: string;
399
-
400
- DomainName?: string;
401
- }
402
- export interface ListCertificatesResponse {
403
-
404
- NextToken?: string;
405
-
406
- CertificateSummaryList?: CertificateSummary[];
407
- }
408
- export interface ListTagsForCertificateRequest {
409
-
410
- CertificateArn: string | undefined;
411
- }
412
- export interface ListTagsForCertificateResponse {
413
-
414
- Tags?: Tag[];
415
- }
416
-
417
- export declare class ConflictException extends __BaseException {
418
- readonly name: "ConflictException";
419
- readonly $fault: "client";
420
-
421
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
422
- }
423
- export interface PutAccountConfigurationRequest {
424
-
425
- ExpiryEvents?: ExpiryEventsConfiguration;
426
-
427
- IdempotencyToken: string | undefined;
428
- }
429
-
430
- export declare class ValidationException extends __BaseException {
431
- readonly name: "ValidationException";
432
- readonly $fault: "client";
433
-
434
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
435
- }
436
- export interface RemoveTagsFromCertificateRequest {
437
-
438
- CertificateArn: string | undefined;
439
-
440
- Tags: Tag[] | undefined;
441
- }
442
- export interface RenewCertificateRequest {
443
-
444
- CertificateArn: string | undefined;
445
- }
446
-
447
- export declare class InvalidDomainValidationOptionsException extends __BaseException {
448
- readonly name: "InvalidDomainValidationOptionsException";
449
- readonly $fault: "client";
450
-
451
- constructor(opts: __ExceptionOptionType<InvalidDomainValidationOptionsException, __BaseException>);
452
- }
453
-
454
- export interface DomainValidationOption {
455
-
456
- DomainName: string | undefined;
457
-
458
- ValidationDomain: string | undefined;
459
- }
460
- export interface RequestCertificateRequest {
461
-
462
- DomainName: string | undefined;
463
-
464
- ValidationMethod?: ValidationMethod | string;
465
-
466
- SubjectAlternativeNames?: string[];
467
-
468
- IdempotencyToken?: string;
469
-
470
- DomainValidationOptions?: DomainValidationOption[];
471
-
472
- Options?: CertificateOptions;
473
-
474
- CertificateAuthorityArn?: string;
475
-
476
- Tags?: Tag[];
477
- }
478
- export interface RequestCertificateResponse {
479
-
480
- CertificateArn?: string;
481
- }
482
-
483
- export declare class InvalidStateException extends __BaseException {
484
- readonly name: "InvalidStateException";
485
- readonly $fault: "client";
486
-
487
- constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
488
- }
489
- export interface ResendValidationEmailRequest {
490
-
491
- CertificateArn: string | undefined;
492
-
493
- Domain: string | undefined;
494
-
495
- ValidationDomain: string | undefined;
496
- }
497
- export interface UpdateCertificateOptionsRequest {
498
-
499
- CertificateArn: string | undefined;
500
-
501
- Options: CertificateOptions | undefined;
502
- }
503
-
504
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
505
-
506
- export declare const AddTagsToCertificateRequestFilterSensitiveLog: (obj: AddTagsToCertificateRequest) => any;
507
-
508
- export declare const ResourceRecordFilterSensitiveLog: (obj: ResourceRecord) => any;
509
-
510
- export declare const DomainValidationFilterSensitiveLog: (obj: DomainValidation) => any;
511
-
512
- export declare const ExtendedKeyUsageFilterSensitiveLog: (obj: ExtendedKeyUsage) => any;
513
-
514
- export declare const KeyUsageFilterSensitiveLog: (obj: KeyUsage) => any;
515
-
516
- export declare const CertificateOptionsFilterSensitiveLog: (obj: CertificateOptions) => any;
517
-
518
- export declare const RenewalSummaryFilterSensitiveLog: (obj: RenewalSummary) => any;
519
-
520
- export declare const CertificateDetailFilterSensitiveLog: (obj: CertificateDetail) => any;
521
-
522
- export declare const DeleteCertificateRequestFilterSensitiveLog: (obj: DeleteCertificateRequest) => any;
523
-
524
- export declare const DescribeCertificateRequestFilterSensitiveLog: (obj: DescribeCertificateRequest) => any;
525
-
526
- export declare const DescribeCertificateResponseFilterSensitiveLog: (obj: DescribeCertificateResponse) => any;
527
-
528
- export declare const ExportCertificateRequestFilterSensitiveLog: (obj: ExportCertificateRequest) => any;
529
-
530
- export declare const ExportCertificateResponseFilterSensitiveLog: (obj: ExportCertificateResponse) => any;
531
-
532
- export declare const ExpiryEventsConfigurationFilterSensitiveLog: (obj: ExpiryEventsConfiguration) => any;
533
-
534
- export declare const GetAccountConfigurationResponseFilterSensitiveLog: (obj: GetAccountConfigurationResponse) => any;
535
-
536
- export declare const GetCertificateRequestFilterSensitiveLog: (obj: GetCertificateRequest) => any;
537
-
538
- export declare const GetCertificateResponseFilterSensitiveLog: (obj: GetCertificateResponse) => any;
539
-
540
- export declare const ImportCertificateRequestFilterSensitiveLog: (obj: ImportCertificateRequest) => any;
541
-
542
- export declare const ImportCertificateResponseFilterSensitiveLog: (obj: ImportCertificateResponse) => any;
543
-
544
- export declare const FiltersFilterSensitiveLog: (obj: Filters) => any;
545
-
546
- export declare const ListCertificatesRequestFilterSensitiveLog: (obj: ListCertificatesRequest) => any;
547
-
548
- export declare const CertificateSummaryFilterSensitiveLog: (obj: CertificateSummary) => any;
549
-
550
- export declare const ListCertificatesResponseFilterSensitiveLog: (obj: ListCertificatesResponse) => any;
551
-
552
- export declare const ListTagsForCertificateRequestFilterSensitiveLog: (obj: ListTagsForCertificateRequest) => any;
553
-
554
- export declare const ListTagsForCertificateResponseFilterSensitiveLog: (obj: ListTagsForCertificateResponse) => any;
555
-
556
- export declare const PutAccountConfigurationRequestFilterSensitiveLog: (obj: PutAccountConfigurationRequest) => any;
557
-
558
- export declare const RemoveTagsFromCertificateRequestFilterSensitiveLog: (obj: RemoveTagsFromCertificateRequest) => any;
559
-
560
- export declare const RenewCertificateRequestFilterSensitiveLog: (obj: RenewCertificateRequest) => any;
561
-
562
- export declare const DomainValidationOptionFilterSensitiveLog: (obj: DomainValidationOption) => any;
563
-
564
- export declare const RequestCertificateRequestFilterSensitiveLog: (obj: RequestCertificateRequest) => any;
565
-
566
- export declare const RequestCertificateResponseFilterSensitiveLog: (obj: RequestCertificateResponse) => any;
567
-
568
- export declare const ResendValidationEmailRequestFilterSensitiveLog: (obj: ResendValidationEmailRequest) => any;
569
-
570
- export declare const UpdateCertificateOptionsRequestFilterSensitiveLog: (obj: UpdateCertificateOptionsRequest) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/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;
7
+ constructor(
8
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
+ );
10
+ }
11
+ export interface Tag {
12
+ Key: string | undefined;
13
+ Value?: string;
14
+ }
15
+ export interface AddTagsToCertificateRequest {
16
+ CertificateArn: string | undefined;
17
+ Tags: Tag[] | undefined;
18
+ }
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
+ export declare enum RecordType {
67
+ CNAME = "CNAME",
68
+ }
69
+ export interface ResourceRecord {
70
+ Name: string | undefined;
71
+ Type: RecordType | string | undefined;
72
+ Value: string | undefined;
73
+ }
74
+ export declare enum ValidationMethod {
75
+ DNS = "DNS",
76
+ EMAIL = "EMAIL",
77
+ }
78
+ export declare enum DomainStatus {
79
+ FAILED = "FAILED",
80
+ PENDING_VALIDATION = "PENDING_VALIDATION",
81
+ SUCCESS = "SUCCESS",
82
+ }
83
+ export interface DomainValidation {
84
+ DomainName: string | undefined;
85
+ ValidationEmails?: string[];
86
+ ValidationDomain?: string;
87
+ ValidationStatus?: DomainStatus | string;
88
+ ResourceRecord?: ResourceRecord;
89
+ ValidationMethod?: ValidationMethod | string;
90
+ }
91
+ export declare enum ExtendedKeyUsageName {
92
+ ANY = "ANY",
93
+ CODE_SIGNING = "CODE_SIGNING",
94
+ CUSTOM = "CUSTOM",
95
+ EMAIL_PROTECTION = "EMAIL_PROTECTION",
96
+ IPSEC_END_SYSTEM = "IPSEC_END_SYSTEM",
97
+ IPSEC_TUNNEL = "IPSEC_TUNNEL",
98
+ IPSEC_USER = "IPSEC_USER",
99
+ NONE = "NONE",
100
+ OCSP_SIGNING = "OCSP_SIGNING",
101
+ TIME_STAMPING = "TIME_STAMPING",
102
+ TLS_WEB_CLIENT_AUTHENTICATION = "TLS_WEB_CLIENT_AUTHENTICATION",
103
+ TLS_WEB_SERVER_AUTHENTICATION = "TLS_WEB_SERVER_AUTHENTICATION",
104
+ }
105
+ export interface ExtendedKeyUsage {
106
+ Name?: ExtendedKeyUsageName | string;
107
+ OID?: string;
108
+ }
109
+ export declare enum FailureReason {
110
+ ADDITIONAL_VERIFICATION_REQUIRED = "ADDITIONAL_VERIFICATION_REQUIRED",
111
+ CAA_ERROR = "CAA_ERROR",
112
+ DOMAIN_NOT_ALLOWED = "DOMAIN_NOT_ALLOWED",
113
+ DOMAIN_VALIDATION_DENIED = "DOMAIN_VALIDATION_DENIED",
114
+ INVALID_PUBLIC_DOMAIN = "INVALID_PUBLIC_DOMAIN",
115
+ NO_AVAILABLE_CONTACTS = "NO_AVAILABLE_CONTACTS",
116
+ OTHER = "OTHER",
117
+ PCA_ACCESS_DENIED = "PCA_ACCESS_DENIED",
118
+ PCA_INVALID_ARGS = "PCA_INVALID_ARGS",
119
+ PCA_INVALID_ARN = "PCA_INVALID_ARN",
120
+ PCA_INVALID_DURATION = "PCA_INVALID_DURATION",
121
+ PCA_INVALID_STATE = "PCA_INVALID_STATE",
122
+ PCA_LIMIT_EXCEEDED = "PCA_LIMIT_EXCEEDED",
123
+ PCA_NAME_CONSTRAINTS_VALIDATION = "PCA_NAME_CONSTRAINTS_VALIDATION",
124
+ PCA_REQUEST_FAILED = "PCA_REQUEST_FAILED",
125
+ PCA_RESOURCE_NOT_FOUND = "PCA_RESOURCE_NOT_FOUND",
126
+ SLR_NOT_FOUND = "SLR_NOT_FOUND",
127
+ }
128
+ export declare enum KeyAlgorithm {
129
+ EC_prime256v1 = "EC_prime256v1",
130
+ EC_secp384r1 = "EC_secp384r1",
131
+ EC_secp521r1 = "EC_secp521r1",
132
+ RSA_1024 = "RSA_1024",
133
+ RSA_2048 = "RSA_2048",
134
+ RSA_3072 = "RSA_3072",
135
+ RSA_4096 = "RSA_4096",
136
+ }
137
+ export declare enum KeyUsageName {
138
+ ANY = "ANY",
139
+ CERTIFICATE_SIGNING = "CERTIFICATE_SIGNING",
140
+ CRL_SIGNING = "CRL_SIGNING",
141
+ CUSTOM = "CUSTOM",
142
+ DATA_ENCIPHERMENT = "DATA_ENCIPHERMENT",
143
+ DECIPHER_ONLY = "DECIPHER_ONLY",
144
+ DIGITAL_SIGNATURE = "DIGITAL_SIGNATURE",
145
+ ENCHIPER_ONLY = "ENCIPHER_ONLY",
146
+ KEY_AGREEMENT = "KEY_AGREEMENT",
147
+ KEY_ENCIPHERMENT = "KEY_ENCIPHERMENT",
148
+ NON_REPUDATION = "NON_REPUDIATION",
149
+ }
150
+ export interface KeyUsage {
151
+ Name?: KeyUsageName | string;
152
+ }
153
+ export declare enum CertificateTransparencyLoggingPreference {
154
+ DISABLED = "DISABLED",
155
+ ENABLED = "ENABLED",
156
+ }
157
+ export interface CertificateOptions {
158
+ CertificateTransparencyLoggingPreference?:
159
+ | CertificateTransparencyLoggingPreference
160
+ | string;
161
+ }
162
+ export declare enum RenewalEligibility {
163
+ ELIGIBLE = "ELIGIBLE",
164
+ INELIGIBLE = "INELIGIBLE",
165
+ }
166
+ export declare enum RenewalStatus {
167
+ FAILED = "FAILED",
168
+ PENDING_AUTO_RENEWAL = "PENDING_AUTO_RENEWAL",
169
+ PENDING_VALIDATION = "PENDING_VALIDATION",
170
+ SUCCESS = "SUCCESS",
171
+ }
172
+ export interface RenewalSummary {
173
+ RenewalStatus: RenewalStatus | string | undefined;
174
+ DomainValidationOptions: DomainValidation[] | undefined;
175
+ RenewalStatusReason?: FailureReason | string;
176
+ UpdatedAt: Date | undefined;
177
+ }
178
+ export declare enum RevocationReason {
179
+ AFFILIATION_CHANGED = "AFFILIATION_CHANGED",
180
+ A_A_COMPROMISE = "A_A_COMPROMISE",
181
+ CA_COMPROMISE = "CA_COMPROMISE",
182
+ CERTIFICATE_HOLD = "CERTIFICATE_HOLD",
183
+ CESSATION_OF_OPERATION = "CESSATION_OF_OPERATION",
184
+ KEY_COMPROMISE = "KEY_COMPROMISE",
185
+ PRIVILEGE_WITHDRAWN = "PRIVILEGE_WITHDRAWN",
186
+ REMOVE_FROM_CRL = "REMOVE_FROM_CRL",
187
+ SUPERCEDED = "SUPERCEDED",
188
+ UNSPECIFIED = "UNSPECIFIED",
189
+ }
190
+ export declare enum CertificateStatus {
191
+ EXPIRED = "EXPIRED",
192
+ FAILED = "FAILED",
193
+ INACTIVE = "INACTIVE",
194
+ ISSUED = "ISSUED",
195
+ PENDING_VALIDATION = "PENDING_VALIDATION",
196
+ REVOKED = "REVOKED",
197
+ VALIDATION_TIMED_OUT = "VALIDATION_TIMED_OUT",
198
+ }
199
+ export declare enum CertificateType {
200
+ AMAZON_ISSUED = "AMAZON_ISSUED",
201
+ IMPORTED = "IMPORTED",
202
+ PRIVATE = "PRIVATE",
203
+ }
204
+ export interface CertificateDetail {
205
+ CertificateArn?: string;
206
+ DomainName?: string;
207
+ SubjectAlternativeNames?: string[];
208
+ DomainValidationOptions?: DomainValidation[];
209
+ Serial?: string;
210
+ Subject?: string;
211
+ Issuer?: string;
212
+ CreatedAt?: Date;
213
+ IssuedAt?: Date;
214
+ ImportedAt?: Date;
215
+ Status?: CertificateStatus | string;
216
+ RevokedAt?: Date;
217
+ RevocationReason?: RevocationReason | string;
218
+ NotBefore?: Date;
219
+ NotAfter?: Date;
220
+ KeyAlgorithm?: KeyAlgorithm | string;
221
+ SignatureAlgorithm?: string;
222
+ InUseBy?: string[];
223
+ FailureReason?: FailureReason | string;
224
+ Type?: CertificateType | string;
225
+ RenewalSummary?: RenewalSummary;
226
+ KeyUsages?: KeyUsage[];
227
+ ExtendedKeyUsages?: ExtendedKeyUsage[];
228
+ CertificateAuthorityArn?: string;
229
+ RenewalEligibility?: RenewalEligibility | string;
230
+ Options?: CertificateOptions;
231
+ }
232
+ export interface DeleteCertificateRequest {
233
+ CertificateArn: string | undefined;
234
+ }
235
+ export declare class ResourceInUseException extends __BaseException {
236
+ readonly name: "ResourceInUseException";
237
+ readonly $fault: "client";
238
+ constructor(
239
+ opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
240
+ );
241
+ }
242
+ export interface DescribeCertificateRequest {
243
+ CertificateArn: string | undefined;
244
+ }
245
+ export interface DescribeCertificateResponse {
246
+ Certificate?: CertificateDetail;
247
+ }
248
+ export interface ExportCertificateRequest {
249
+ CertificateArn: string | undefined;
250
+ Passphrase: Uint8Array | undefined;
251
+ }
252
+ export interface ExportCertificateResponse {
253
+ Certificate?: string;
254
+ CertificateChain?: string;
255
+ PrivateKey?: string;
256
+ }
257
+ export declare class RequestInProgressException extends __BaseException {
258
+ readonly name: "RequestInProgressException";
259
+ readonly $fault: "client";
260
+ constructor(
261
+ opts: __ExceptionOptionType<RequestInProgressException, __BaseException>
262
+ );
263
+ }
264
+ export interface ExpiryEventsConfiguration {
265
+ DaysBeforeExpiry?: number;
266
+ }
267
+ export interface GetAccountConfigurationResponse {
268
+ ExpiryEvents?: ExpiryEventsConfiguration;
269
+ }
270
+ export interface GetCertificateRequest {
271
+ CertificateArn: string | undefined;
272
+ }
273
+ export interface GetCertificateResponse {
274
+ Certificate?: string;
275
+ CertificateChain?: string;
276
+ }
277
+ export interface ImportCertificateRequest {
278
+ CertificateArn?: string;
279
+ Certificate: Uint8Array | undefined;
280
+ PrivateKey: Uint8Array | undefined;
281
+ CertificateChain?: Uint8Array;
282
+ Tags?: Tag[];
283
+ }
284
+ export interface ImportCertificateResponse {
285
+ CertificateArn?: string;
286
+ }
287
+ export declare class LimitExceededException extends __BaseException {
288
+ readonly name: "LimitExceededException";
289
+ readonly $fault: "client";
290
+ constructor(
291
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
292
+ );
293
+ }
294
+ export declare class InvalidArgsException extends __BaseException {
295
+ readonly name: "InvalidArgsException";
296
+ readonly $fault: "client";
297
+ constructor(
298
+ opts: __ExceptionOptionType<InvalidArgsException, __BaseException>
299
+ );
300
+ }
301
+ export interface Filters {
302
+ extendedKeyUsage?: (ExtendedKeyUsageName | string)[];
303
+ keyUsage?: (KeyUsageName | string)[];
304
+ keyTypes?: (KeyAlgorithm | string)[];
305
+ }
306
+ export interface ListCertificatesRequest {
307
+ CertificateStatuses?: (CertificateStatus | string)[];
308
+ Includes?: Filters;
309
+ NextToken?: string;
310
+ MaxItems?: number;
311
+ }
312
+ export interface CertificateSummary {
313
+ CertificateArn?: string;
314
+ DomainName?: string;
315
+ }
316
+ export interface ListCertificatesResponse {
317
+ NextToken?: string;
318
+ CertificateSummaryList?: CertificateSummary[];
319
+ }
320
+ export interface ListTagsForCertificateRequest {
321
+ CertificateArn: string | undefined;
322
+ }
323
+ export interface ListTagsForCertificateResponse {
324
+ Tags?: Tag[];
325
+ }
326
+ export declare class ConflictException extends __BaseException {
327
+ readonly name: "ConflictException";
328
+ readonly $fault: "client";
329
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
330
+ }
331
+ export interface PutAccountConfigurationRequest {
332
+ ExpiryEvents?: ExpiryEventsConfiguration;
333
+ IdempotencyToken: string | undefined;
334
+ }
335
+ export declare class ValidationException extends __BaseException {
336
+ readonly name: "ValidationException";
337
+ readonly $fault: "client";
338
+ constructor(
339
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
340
+ );
341
+ }
342
+ export interface RemoveTagsFromCertificateRequest {
343
+ CertificateArn: string | undefined;
344
+ Tags: Tag[] | undefined;
345
+ }
346
+ export interface RenewCertificateRequest {
347
+ CertificateArn: string | undefined;
348
+ }
349
+ export declare class InvalidDomainValidationOptionsException extends __BaseException {
350
+ readonly name: "InvalidDomainValidationOptionsException";
351
+ readonly $fault: "client";
352
+ constructor(
353
+ opts: __ExceptionOptionType<
354
+ InvalidDomainValidationOptionsException,
355
+ __BaseException
356
+ >
357
+ );
358
+ }
359
+ export interface DomainValidationOption {
360
+ DomainName: string | undefined;
361
+ ValidationDomain: string | undefined;
362
+ }
363
+ export interface RequestCertificateRequest {
364
+ DomainName: string | undefined;
365
+ ValidationMethod?: ValidationMethod | string;
366
+ SubjectAlternativeNames?: string[];
367
+ IdempotencyToken?: string;
368
+ DomainValidationOptions?: DomainValidationOption[];
369
+ Options?: CertificateOptions;
370
+ CertificateAuthorityArn?: string;
371
+ Tags?: Tag[];
372
+ }
373
+ export interface RequestCertificateResponse {
374
+ CertificateArn?: string;
375
+ }
376
+ export declare class InvalidStateException extends __BaseException {
377
+ readonly name: "InvalidStateException";
378
+ readonly $fault: "client";
379
+ constructor(
380
+ opts: __ExceptionOptionType<InvalidStateException, __BaseException>
381
+ );
382
+ }
383
+ export interface ResendValidationEmailRequest {
384
+ CertificateArn: string | undefined;
385
+ Domain: string | undefined;
386
+ ValidationDomain: string | undefined;
387
+ }
388
+ export interface UpdateCertificateOptionsRequest {
389
+ CertificateArn: string | undefined;
390
+ Options: CertificateOptions | undefined;
391
+ }
392
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
393
+ export declare const AddTagsToCertificateRequestFilterSensitiveLog: (
394
+ obj: AddTagsToCertificateRequest
395
+ ) => any;
396
+ export declare const ResourceRecordFilterSensitiveLog: (
397
+ obj: ResourceRecord
398
+ ) => any;
399
+ export declare const DomainValidationFilterSensitiveLog: (
400
+ obj: DomainValidation
401
+ ) => any;
402
+ export declare const ExtendedKeyUsageFilterSensitiveLog: (
403
+ obj: ExtendedKeyUsage
404
+ ) => any;
405
+ export declare const KeyUsageFilterSensitiveLog: (obj: KeyUsage) => any;
406
+ export declare const CertificateOptionsFilterSensitiveLog: (
407
+ obj: CertificateOptions
408
+ ) => any;
409
+ export declare const RenewalSummaryFilterSensitiveLog: (
410
+ obj: RenewalSummary
411
+ ) => any;
412
+ export declare const CertificateDetailFilterSensitiveLog: (
413
+ obj: CertificateDetail
414
+ ) => any;
415
+ export declare const DeleteCertificateRequestFilterSensitiveLog: (
416
+ obj: DeleteCertificateRequest
417
+ ) => any;
418
+ export declare const DescribeCertificateRequestFilterSensitiveLog: (
419
+ obj: DescribeCertificateRequest
420
+ ) => any;
421
+ export declare const DescribeCertificateResponseFilterSensitiveLog: (
422
+ obj: DescribeCertificateResponse
423
+ ) => any;
424
+ export declare const ExportCertificateRequestFilterSensitiveLog: (
425
+ obj: ExportCertificateRequest
426
+ ) => any;
427
+ export declare const ExportCertificateResponseFilterSensitiveLog: (
428
+ obj: ExportCertificateResponse
429
+ ) => any;
430
+ export declare const ExpiryEventsConfigurationFilterSensitiveLog: (
431
+ obj: ExpiryEventsConfiguration
432
+ ) => any;
433
+ export declare const GetAccountConfigurationResponseFilterSensitiveLog: (
434
+ obj: GetAccountConfigurationResponse
435
+ ) => any;
436
+ export declare const GetCertificateRequestFilterSensitiveLog: (
437
+ obj: GetCertificateRequest
438
+ ) => any;
439
+ export declare const GetCertificateResponseFilterSensitiveLog: (
440
+ obj: GetCertificateResponse
441
+ ) => any;
442
+ export declare const ImportCertificateRequestFilterSensitiveLog: (
443
+ obj: ImportCertificateRequest
444
+ ) => any;
445
+ export declare const ImportCertificateResponseFilterSensitiveLog: (
446
+ obj: ImportCertificateResponse
447
+ ) => any;
448
+ export declare const FiltersFilterSensitiveLog: (obj: Filters) => any;
449
+ export declare const ListCertificatesRequestFilterSensitiveLog: (
450
+ obj: ListCertificatesRequest
451
+ ) => any;
452
+ export declare const CertificateSummaryFilterSensitiveLog: (
453
+ obj: CertificateSummary
454
+ ) => any;
455
+ export declare const ListCertificatesResponseFilterSensitiveLog: (
456
+ obj: ListCertificatesResponse
457
+ ) => any;
458
+ export declare const ListTagsForCertificateRequestFilterSensitiveLog: (
459
+ obj: ListTagsForCertificateRequest
460
+ ) => any;
461
+ export declare const ListTagsForCertificateResponseFilterSensitiveLog: (
462
+ obj: ListTagsForCertificateResponse
463
+ ) => any;
464
+ export declare const PutAccountConfigurationRequestFilterSensitiveLog: (
465
+ obj: PutAccountConfigurationRequest
466
+ ) => any;
467
+ export declare const RemoveTagsFromCertificateRequestFilterSensitiveLog: (
468
+ obj: RemoveTagsFromCertificateRequest
469
+ ) => any;
470
+ export declare const RenewCertificateRequestFilterSensitiveLog: (
471
+ obj: RenewCertificateRequest
472
+ ) => any;
473
+ export declare const DomainValidationOptionFilterSensitiveLog: (
474
+ obj: DomainValidationOption
475
+ ) => any;
476
+ export declare const RequestCertificateRequestFilterSensitiveLog: (
477
+ obj: RequestCertificateRequest
478
+ ) => any;
479
+ export declare const RequestCertificateResponseFilterSensitiveLog: (
480
+ obj: RequestCertificateResponse
481
+ ) => any;
482
+ export declare const ResendValidationEmailRequestFilterSensitiveLog: (
483
+ obj: ResendValidationEmailRequest
484
+ ) => any;
485
+ export declare const UpdateCertificateOptionsRequestFilterSensitiveLog: (
486
+ obj: UpdateCertificateOptionsRequest
487
+ ) => any;