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