@aws-sdk/client-acm 3.300.0 → 3.303.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.
@@ -29,18 +29,18 @@ export interface ListCertificatesCommandOutput extends ListCertificatesResponse,
29
29
  * import { ACMClient, ListCertificatesCommand } from "@aws-sdk/client-acm"; // ES Modules import
30
30
  * // const { ACMClient, ListCertificatesCommand } = require("@aws-sdk/client-acm"); // CommonJS import
31
31
  * const client = new ACMClient(config);
32
- * const input = {
33
- * CertificateStatuses: [
32
+ * const input = { // ListCertificatesRequest
33
+ * CertificateStatuses: [ // CertificateStatuses
34
34
  * "PENDING_VALIDATION" || "ISSUED" || "INACTIVE" || "EXPIRED" || "VALIDATION_TIMED_OUT" || "REVOKED" || "FAILED",
35
35
  * ],
36
- * Includes: {
37
- * extendedKeyUsage: [
36
+ * Includes: { // Filters
37
+ * extendedKeyUsage: [ // ExtendedKeyUsageFilterList
38
38
  * "TLS_WEB_SERVER_AUTHENTICATION" || "TLS_WEB_CLIENT_AUTHENTICATION" || "CODE_SIGNING" || "EMAIL_PROTECTION" || "TIME_STAMPING" || "OCSP_SIGNING" || "IPSEC_END_SYSTEM" || "IPSEC_TUNNEL" || "IPSEC_USER" || "ANY" || "NONE" || "CUSTOM",
39
39
  * ],
40
- * keyUsage: [
40
+ * keyUsage: [ // KeyUsageFilterList
41
41
  * "DIGITAL_SIGNATURE" || "NON_REPUDIATION" || "KEY_ENCIPHERMENT" || "DATA_ENCIPHERMENT" || "KEY_AGREEMENT" || "CERTIFICATE_SIGNING" || "CRL_SIGNING" || "ENCIPHER_ONLY" || "DECIPHER_ONLY" || "ANY" || "CUSTOM",
42
42
  * ],
43
- * keyTypes: [
43
+ * keyTypes: [ // KeyAlgorithmList
44
44
  * "RSA_1024" || "RSA_2048" || "RSA_3072" || "RSA_4096" || "EC_prime256v1" || "EC_secp384r1" || "EC_secp521r1",
45
45
  * ],
46
46
  * },
@@ -28,7 +28,7 @@ export interface ListTagsForCertificateCommandOutput extends ListTagsForCertific
28
28
  * import { ACMClient, ListTagsForCertificateCommand } from "@aws-sdk/client-acm"; // ES Modules import
29
29
  * // const { ACMClient, ListTagsForCertificateCommand } = require("@aws-sdk/client-acm"); // CommonJS import
30
30
  * const client = new ACMClient(config);
31
- * const input = {
31
+ * const input = { // ListTagsForCertificateRequest
32
32
  * CertificateArn: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new ListTagsForCertificateCommand(input);
@@ -31,8 +31,8 @@ export interface PutAccountConfigurationCommandOutput extends __MetadataBearer {
31
31
  * import { ACMClient, PutAccountConfigurationCommand } from "@aws-sdk/client-acm"; // ES Modules import
32
32
  * // const { ACMClient, PutAccountConfigurationCommand } = require("@aws-sdk/client-acm"); // CommonJS import
33
33
  * const client = new ACMClient(config);
34
- * const input = {
35
- * ExpiryEvents: {
34
+ * const input = { // PutAccountConfigurationRequest
35
+ * ExpiryEvents: { // ExpiryEventsConfiguration
36
36
  * DaysBeforeExpiry: Number("int"),
37
37
  * },
38
38
  * IdempotencyToken: "STRING_VALUE", // required
@@ -31,10 +31,10 @@ export interface RemoveTagsFromCertificateCommandOutput extends __MetadataBearer
31
31
  * import { ACMClient, RemoveTagsFromCertificateCommand } from "@aws-sdk/client-acm"; // ES Modules import
32
32
  * // const { ACMClient, RemoveTagsFromCertificateCommand } = require("@aws-sdk/client-acm"); // CommonJS import
33
33
  * const client = new ACMClient(config);
34
- * const input = {
34
+ * const input = { // RemoveTagsFromCertificateRequest
35
35
  * CertificateArn: "STRING_VALUE", // required
36
- * Tags: [ // required
37
- * {
36
+ * Tags: [ // TagList // required
37
+ * { // Tag
38
38
  * Key: "STRING_VALUE", // required
39
39
  * Value: "STRING_VALUE",
40
40
  * },
@@ -30,7 +30,7 @@ export interface RenewCertificateCommandOutput extends __MetadataBearer {
30
30
  * import { ACMClient, RenewCertificateCommand } from "@aws-sdk/client-acm"; // ES Modules import
31
31
  * // const { ACMClient, RenewCertificateCommand } = require("@aws-sdk/client-acm"); // CommonJS import
32
32
  * const client = new ACMClient(config);
33
- * const input = {
33
+ * const input = { // RenewCertificateRequest
34
34
  * CertificateArn: "STRING_VALUE", // required
35
35
  * };
36
36
  * const command = new RenewCertificateCommand(input);
@@ -41,25 +41,25 @@ export interface RequestCertificateCommandOutput extends RequestCertificateRespo
41
41
  * import { ACMClient, RequestCertificateCommand } from "@aws-sdk/client-acm"; // ES Modules import
42
42
  * // const { ACMClient, RequestCertificateCommand } = require("@aws-sdk/client-acm"); // CommonJS import
43
43
  * const client = new ACMClient(config);
44
- * const input = {
44
+ * const input = { // RequestCertificateRequest
45
45
  * DomainName: "STRING_VALUE", // required
46
46
  * ValidationMethod: "EMAIL" || "DNS",
47
- * SubjectAlternativeNames: [
47
+ * SubjectAlternativeNames: [ // DomainList
48
48
  * "STRING_VALUE",
49
49
  * ],
50
50
  * IdempotencyToken: "STRING_VALUE",
51
- * DomainValidationOptions: [
52
- * {
51
+ * DomainValidationOptions: [ // DomainValidationOptionList
52
+ * { // DomainValidationOption
53
53
  * DomainName: "STRING_VALUE", // required
54
54
  * ValidationDomain: "STRING_VALUE", // required
55
55
  * },
56
56
  * ],
57
- * Options: {
57
+ * Options: { // CertificateOptions
58
58
  * CertificateTransparencyLoggingPreference: "ENABLED" || "DISABLED",
59
59
  * },
60
60
  * CertificateAuthorityArn: "STRING_VALUE",
61
- * Tags: [
62
- * {
61
+ * Tags: [ // TagList
62
+ * { // Tag
63
63
  * Key: "STRING_VALUE", // required
64
64
  * Value: "STRING_VALUE",
65
65
  * },
@@ -34,7 +34,7 @@ export interface ResendValidationEmailCommandOutput extends __MetadataBearer {
34
34
  * import { ACMClient, ResendValidationEmailCommand } from "@aws-sdk/client-acm"; // ES Modules import
35
35
  * // const { ACMClient, ResendValidationEmailCommand } = require("@aws-sdk/client-acm"); // CommonJS import
36
36
  * const client = new ACMClient(config);
37
- * const input = {
37
+ * const input = { // ResendValidationEmailRequest
38
38
  * CertificateArn: "STRING_VALUE", // required
39
39
  * Domain: "STRING_VALUE", // required
40
40
  * ValidationDomain: "STRING_VALUE", // required
@@ -29,9 +29,9 @@ export interface UpdateCertificateOptionsCommandOutput extends __MetadataBearer
29
29
  * import { ACMClient, UpdateCertificateOptionsCommand } from "@aws-sdk/client-acm"; // ES Modules import
30
30
  * // const { ACMClient, UpdateCertificateOptionsCommand } = require("@aws-sdk/client-acm"); // CommonJS import
31
31
  * const client = new ACMClient(config);
32
- * const input = {
32
+ * const input = { // UpdateCertificateOptionsRequest
33
33
  * CertificateArn: "STRING_VALUE", // required
34
- * Options: {
34
+ * Options: { // CertificateOptions
35
35
  * CertificateTransparencyLoggingPreference: "ENABLED" || "DISABLED",
36
36
  * },
37
37
  * };
@@ -133,10 +133,15 @@ export declare class TooManyTagsException extends __BaseException {
133
133
  }
134
134
  /**
135
135
  * @public
136
+ * @enum
136
137
  */
137
- export declare enum RecordType {
138
- CNAME = "CNAME"
139
- }
138
+ export declare const RecordType: {
139
+ readonly CNAME: "CNAME";
140
+ };
141
+ /**
142
+ * @public
143
+ */
144
+ export type RecordType = (typeof RecordType)[keyof typeof RecordType];
140
145
  /**
141
146
  * @public
142
147
  * <p>Contains a DNS record value that you can use to validate ownership or control of a domain.
@@ -159,19 +164,29 @@ export interface ResourceRecord {
159
164
  }
160
165
  /**
161
166
  * @public
167
+ * @enum
162
168
  */
163
- export declare enum ValidationMethod {
164
- DNS = "DNS",
165
- EMAIL = "EMAIL"
166
- }
169
+ export declare const ValidationMethod: {
170
+ readonly DNS: "DNS";
171
+ readonly EMAIL: "EMAIL";
172
+ };
167
173
  /**
168
174
  * @public
169
175
  */
170
- export declare enum DomainStatus {
171
- FAILED = "FAILED",
172
- PENDING_VALIDATION = "PENDING_VALIDATION",
173
- SUCCESS = "SUCCESS"
174
- }
176
+ export type ValidationMethod = (typeof ValidationMethod)[keyof typeof ValidationMethod];
177
+ /**
178
+ * @public
179
+ * @enum
180
+ */
181
+ export declare const DomainStatus: {
182
+ readonly FAILED: "FAILED";
183
+ readonly PENDING_VALIDATION: "PENDING_VALIDATION";
184
+ readonly SUCCESS: "SUCCESS";
185
+ };
186
+ /**
187
+ * @public
188
+ */
189
+ export type DomainStatus = (typeof DomainStatus)[keyof typeof DomainStatus];
175
190
  /**
176
191
  * @public
177
192
  * <p>Contains information about the validation of each domain name in the certificate.</p>
@@ -227,21 +242,26 @@ export interface DomainValidation {
227
242
  }
228
243
  /**
229
244
  * @public
245
+ * @enum
230
246
  */
231
- export declare enum ExtendedKeyUsageName {
232
- ANY = "ANY",
233
- CODE_SIGNING = "CODE_SIGNING",
234
- CUSTOM = "CUSTOM",
235
- EMAIL_PROTECTION = "EMAIL_PROTECTION",
236
- IPSEC_END_SYSTEM = "IPSEC_END_SYSTEM",
237
- IPSEC_TUNNEL = "IPSEC_TUNNEL",
238
- IPSEC_USER = "IPSEC_USER",
239
- NONE = "NONE",
240
- OCSP_SIGNING = "OCSP_SIGNING",
241
- TIME_STAMPING = "TIME_STAMPING",
242
- TLS_WEB_CLIENT_AUTHENTICATION = "TLS_WEB_CLIENT_AUTHENTICATION",
243
- TLS_WEB_SERVER_AUTHENTICATION = "TLS_WEB_SERVER_AUTHENTICATION"
244
- }
247
+ export declare const ExtendedKeyUsageName: {
248
+ readonly ANY: "ANY";
249
+ readonly CODE_SIGNING: "CODE_SIGNING";
250
+ readonly CUSTOM: "CUSTOM";
251
+ readonly EMAIL_PROTECTION: "EMAIL_PROTECTION";
252
+ readonly IPSEC_END_SYSTEM: "IPSEC_END_SYSTEM";
253
+ readonly IPSEC_TUNNEL: "IPSEC_TUNNEL";
254
+ readonly IPSEC_USER: "IPSEC_USER";
255
+ readonly NONE: "NONE";
256
+ readonly OCSP_SIGNING: "OCSP_SIGNING";
257
+ readonly TIME_STAMPING: "TIME_STAMPING";
258
+ readonly TLS_WEB_CLIENT_AUTHENTICATION: "TLS_WEB_CLIENT_AUTHENTICATION";
259
+ readonly TLS_WEB_SERVER_AUTHENTICATION: "TLS_WEB_SERVER_AUTHENTICATION";
260
+ };
261
+ /**
262
+ * @public
263
+ */
264
+ export type ExtendedKeyUsageName = (typeof ExtendedKeyUsageName)[keyof typeof ExtendedKeyUsageName];
245
265
  /**
246
266
  * @public
247
267
  * <p>The Extended Key Usage X.509 v3 extension defines one or more purposes for which the
@@ -308,54 +328,69 @@ export interface ExtendedKeyUsage {
308
328
  }
309
329
  /**
310
330
  * @public
331
+ * @enum
311
332
  */
312
- export declare enum FailureReason {
313
- ADDITIONAL_VERIFICATION_REQUIRED = "ADDITIONAL_VERIFICATION_REQUIRED",
314
- CAA_ERROR = "CAA_ERROR",
315
- DOMAIN_NOT_ALLOWED = "DOMAIN_NOT_ALLOWED",
316
- DOMAIN_VALIDATION_DENIED = "DOMAIN_VALIDATION_DENIED",
317
- INVALID_PUBLIC_DOMAIN = "INVALID_PUBLIC_DOMAIN",
318
- NO_AVAILABLE_CONTACTS = "NO_AVAILABLE_CONTACTS",
319
- OTHER = "OTHER",
320
- PCA_ACCESS_DENIED = "PCA_ACCESS_DENIED",
321
- PCA_INVALID_ARGS = "PCA_INVALID_ARGS",
322
- PCA_INVALID_ARN = "PCA_INVALID_ARN",
323
- PCA_INVALID_DURATION = "PCA_INVALID_DURATION",
324
- PCA_INVALID_STATE = "PCA_INVALID_STATE",
325
- PCA_LIMIT_EXCEEDED = "PCA_LIMIT_EXCEEDED",
326
- PCA_NAME_CONSTRAINTS_VALIDATION = "PCA_NAME_CONSTRAINTS_VALIDATION",
327
- PCA_REQUEST_FAILED = "PCA_REQUEST_FAILED",
328
- PCA_RESOURCE_NOT_FOUND = "PCA_RESOURCE_NOT_FOUND",
329
- SLR_NOT_FOUND = "SLR_NOT_FOUND"
330
- }
333
+ export declare const FailureReason: {
334
+ readonly ADDITIONAL_VERIFICATION_REQUIRED: "ADDITIONAL_VERIFICATION_REQUIRED";
335
+ readonly CAA_ERROR: "CAA_ERROR";
336
+ readonly DOMAIN_NOT_ALLOWED: "DOMAIN_NOT_ALLOWED";
337
+ readonly DOMAIN_VALIDATION_DENIED: "DOMAIN_VALIDATION_DENIED";
338
+ readonly INVALID_PUBLIC_DOMAIN: "INVALID_PUBLIC_DOMAIN";
339
+ readonly NO_AVAILABLE_CONTACTS: "NO_AVAILABLE_CONTACTS";
340
+ readonly OTHER: "OTHER";
341
+ readonly PCA_ACCESS_DENIED: "PCA_ACCESS_DENIED";
342
+ readonly PCA_INVALID_ARGS: "PCA_INVALID_ARGS";
343
+ readonly PCA_INVALID_ARN: "PCA_INVALID_ARN";
344
+ readonly PCA_INVALID_DURATION: "PCA_INVALID_DURATION";
345
+ readonly PCA_INVALID_STATE: "PCA_INVALID_STATE";
346
+ readonly PCA_LIMIT_EXCEEDED: "PCA_LIMIT_EXCEEDED";
347
+ readonly PCA_NAME_CONSTRAINTS_VALIDATION: "PCA_NAME_CONSTRAINTS_VALIDATION";
348
+ readonly PCA_REQUEST_FAILED: "PCA_REQUEST_FAILED";
349
+ readonly PCA_RESOURCE_NOT_FOUND: "PCA_RESOURCE_NOT_FOUND";
350
+ readonly SLR_NOT_FOUND: "SLR_NOT_FOUND";
351
+ };
331
352
  /**
332
353
  * @public
333
354
  */
334
- export declare enum KeyAlgorithm {
335
- EC_prime256v1 = "EC_prime256v1",
336
- EC_secp384r1 = "EC_secp384r1",
337
- EC_secp521r1 = "EC_secp521r1",
338
- RSA_1024 = "RSA_1024",
339
- RSA_2048 = "RSA_2048",
340
- RSA_3072 = "RSA_3072",
341
- RSA_4096 = "RSA_4096"
342
- }
355
+ export type FailureReason = (typeof FailureReason)[keyof typeof FailureReason];
343
356
  /**
344
357
  * @public
358
+ * @enum
345
359
  */
346
- export declare enum KeyUsageName {
347
- ANY = "ANY",
348
- CERTIFICATE_SIGNING = "CERTIFICATE_SIGNING",
349
- CRL_SIGNING = "CRL_SIGNING",
350
- CUSTOM = "CUSTOM",
351
- DATA_ENCIPHERMENT = "DATA_ENCIPHERMENT",
352
- DECIPHER_ONLY = "DECIPHER_ONLY",
353
- DIGITAL_SIGNATURE = "DIGITAL_SIGNATURE",
354
- ENCHIPER_ONLY = "ENCIPHER_ONLY",
355
- KEY_AGREEMENT = "KEY_AGREEMENT",
356
- KEY_ENCIPHERMENT = "KEY_ENCIPHERMENT",
357
- NON_REPUDATION = "NON_REPUDIATION"
358
- }
360
+ export declare const KeyAlgorithm: {
361
+ readonly EC_prime256v1: "EC_prime256v1";
362
+ readonly EC_secp384r1: "EC_secp384r1";
363
+ readonly EC_secp521r1: "EC_secp521r1";
364
+ readonly RSA_1024: "RSA_1024";
365
+ readonly RSA_2048: "RSA_2048";
366
+ readonly RSA_3072: "RSA_3072";
367
+ readonly RSA_4096: "RSA_4096";
368
+ };
369
+ /**
370
+ * @public
371
+ */
372
+ export type KeyAlgorithm = (typeof KeyAlgorithm)[keyof typeof KeyAlgorithm];
373
+ /**
374
+ * @public
375
+ * @enum
376
+ */
377
+ export declare const KeyUsageName: {
378
+ readonly ANY: "ANY";
379
+ readonly CERTIFICATE_SIGNING: "CERTIFICATE_SIGNING";
380
+ readonly CRL_SIGNING: "CRL_SIGNING";
381
+ readonly CUSTOM: "CUSTOM";
382
+ readonly DATA_ENCIPHERMENT: "DATA_ENCIPHERMENT";
383
+ readonly DECIPHER_ONLY: "DECIPHER_ONLY";
384
+ readonly DIGITAL_SIGNATURE: "DIGITAL_SIGNATURE";
385
+ readonly ENCHIPER_ONLY: "ENCIPHER_ONLY";
386
+ readonly KEY_AGREEMENT: "KEY_AGREEMENT";
387
+ readonly KEY_ENCIPHERMENT: "KEY_ENCIPHERMENT";
388
+ readonly NON_REPUDATION: "NON_REPUDIATION";
389
+ };
390
+ /**
391
+ * @public
392
+ */
393
+ export type KeyUsageName = (typeof KeyUsageName)[keyof typeof KeyUsageName];
359
394
  /**
360
395
  * @public
361
396
  * <p>The Key Usage X.509 v3 extension defines the purpose of the public key contained in the
@@ -369,11 +404,16 @@ export interface KeyUsage {
369
404
  }
370
405
  /**
371
406
  * @public
407
+ * @enum
372
408
  */
373
- export declare enum CertificateTransparencyLoggingPreference {
374
- DISABLED = "DISABLED",
375
- ENABLED = "ENABLED"
376
- }
409
+ export declare const CertificateTransparencyLoggingPreference: {
410
+ readonly DISABLED: "DISABLED";
411
+ readonly ENABLED: "ENABLED";
412
+ };
413
+ /**
414
+ * @public
415
+ */
416
+ export type CertificateTransparencyLoggingPreference = (typeof CertificateTransparencyLoggingPreference)[keyof typeof CertificateTransparencyLoggingPreference];
377
417
  /**
378
418
  * @public
379
419
  * <p>Structure that contains options for your certificate. Currently, you can use this only to
@@ -393,20 +433,30 @@ export interface CertificateOptions {
393
433
  }
394
434
  /**
395
435
  * @public
436
+ * @enum
396
437
  */
397
- export declare enum RenewalEligibility {
398
- ELIGIBLE = "ELIGIBLE",
399
- INELIGIBLE = "INELIGIBLE"
400
- }
438
+ export declare const RenewalEligibility: {
439
+ readonly ELIGIBLE: "ELIGIBLE";
440
+ readonly INELIGIBLE: "INELIGIBLE";
441
+ };
401
442
  /**
402
443
  * @public
403
444
  */
404
- export declare enum RenewalStatus {
405
- FAILED = "FAILED",
406
- PENDING_AUTO_RENEWAL = "PENDING_AUTO_RENEWAL",
407
- PENDING_VALIDATION = "PENDING_VALIDATION",
408
- SUCCESS = "SUCCESS"
409
- }
445
+ export type RenewalEligibility = (typeof RenewalEligibility)[keyof typeof RenewalEligibility];
446
+ /**
447
+ * @public
448
+ * @enum
449
+ */
450
+ export declare const RenewalStatus: {
451
+ readonly FAILED: "FAILED";
452
+ readonly PENDING_AUTO_RENEWAL: "PENDING_AUTO_RENEWAL";
453
+ readonly PENDING_VALIDATION: "PENDING_VALIDATION";
454
+ readonly SUCCESS: "SUCCESS";
455
+ };
456
+ /**
457
+ * @public
458
+ */
459
+ export type RenewalStatus = (typeof RenewalStatus)[keyof typeof RenewalStatus];
410
460
  /**
411
461
  * @public
412
462
  * <p>Contains information about the status of ACM's <a href="https://docs.aws.amazon.com/acm/latest/userguide/acm-renewal.html">managed renewal</a> for the certificate. This
@@ -436,39 +486,54 @@ export interface RenewalSummary {
436
486
  }
437
487
  /**
438
488
  * @public
489
+ * @enum
439
490
  */
440
- export declare enum RevocationReason {
441
- AFFILIATION_CHANGED = "AFFILIATION_CHANGED",
442
- A_A_COMPROMISE = "A_A_COMPROMISE",
443
- CA_COMPROMISE = "CA_COMPROMISE",
444
- CERTIFICATE_HOLD = "CERTIFICATE_HOLD",
445
- CESSATION_OF_OPERATION = "CESSATION_OF_OPERATION",
446
- KEY_COMPROMISE = "KEY_COMPROMISE",
447
- PRIVILEGE_WITHDRAWN = "PRIVILEGE_WITHDRAWN",
448
- REMOVE_FROM_CRL = "REMOVE_FROM_CRL",
449
- SUPERCEDED = "SUPERCEDED",
450
- UNSPECIFIED = "UNSPECIFIED"
451
- }
491
+ export declare const RevocationReason: {
492
+ readonly AFFILIATION_CHANGED: "AFFILIATION_CHANGED";
493
+ readonly A_A_COMPROMISE: "A_A_COMPROMISE";
494
+ readonly CA_COMPROMISE: "CA_COMPROMISE";
495
+ readonly CERTIFICATE_HOLD: "CERTIFICATE_HOLD";
496
+ readonly CESSATION_OF_OPERATION: "CESSATION_OF_OPERATION";
497
+ readonly KEY_COMPROMISE: "KEY_COMPROMISE";
498
+ readonly PRIVILEGE_WITHDRAWN: "PRIVILEGE_WITHDRAWN";
499
+ readonly REMOVE_FROM_CRL: "REMOVE_FROM_CRL";
500
+ readonly SUPERCEDED: "SUPERCEDED";
501
+ readonly UNSPECIFIED: "UNSPECIFIED";
502
+ };
452
503
  /**
453
504
  * @public
454
505
  */
455
- export declare enum CertificateStatus {
456
- EXPIRED = "EXPIRED",
457
- FAILED = "FAILED",
458
- INACTIVE = "INACTIVE",
459
- ISSUED = "ISSUED",
460
- PENDING_VALIDATION = "PENDING_VALIDATION",
461
- REVOKED = "REVOKED",
462
- VALIDATION_TIMED_OUT = "VALIDATION_TIMED_OUT"
463
- }
506
+ export type RevocationReason = (typeof RevocationReason)[keyof typeof RevocationReason];
464
507
  /**
465
508
  * @public
509
+ * @enum
466
510
  */
467
- export declare enum CertificateType {
468
- AMAZON_ISSUED = "AMAZON_ISSUED",
469
- IMPORTED = "IMPORTED",
470
- PRIVATE = "PRIVATE"
471
- }
511
+ export declare const CertificateStatus: {
512
+ readonly EXPIRED: "EXPIRED";
513
+ readonly FAILED: "FAILED";
514
+ readonly INACTIVE: "INACTIVE";
515
+ readonly ISSUED: "ISSUED";
516
+ readonly PENDING_VALIDATION: "PENDING_VALIDATION";
517
+ readonly REVOKED: "REVOKED";
518
+ readonly VALIDATION_TIMED_OUT: "VALIDATION_TIMED_OUT";
519
+ };
520
+ /**
521
+ * @public
522
+ */
523
+ export type CertificateStatus = (typeof CertificateStatus)[keyof typeof CertificateStatus];
524
+ /**
525
+ * @public
526
+ * @enum
527
+ */
528
+ export declare const CertificateType: {
529
+ readonly AMAZON_ISSUED: "AMAZON_ISSUED";
530
+ readonly IMPORTED: "IMPORTED";
531
+ readonly PRIVATE: "PRIVATE";
532
+ };
533
+ /**
534
+ * @public
535
+ */
536
+ export type CertificateType = (typeof CertificateType)[keyof typeof CertificateType];
472
537
  /**
473
538
  * @public
474
539
  * <p>Contains metadata about an ACM certificate. This structure is returned in the response
@@ -879,17 +944,27 @@ export interface Filters {
879
944
  }
880
945
  /**
881
946
  * @public
947
+ * @enum
882
948
  */
883
- export declare enum SortBy {
884
- CREATED_AT = "CREATED_AT"
885
- }
949
+ export declare const SortBy: {
950
+ readonly CREATED_AT: "CREATED_AT";
951
+ };
886
952
  /**
887
953
  * @public
888
954
  */
889
- export declare enum SortOrder {
890
- ASCENDING = "ASCENDING",
891
- DESCENDING = "DESCENDING"
892
- }
955
+ export type SortBy = (typeof SortBy)[keyof typeof SortBy];
956
+ /**
957
+ * @public
958
+ * @enum
959
+ */
960
+ export declare const SortOrder: {
961
+ readonly ASCENDING: "ASCENDING";
962
+ readonly DESCENDING: "DESCENDING";
963
+ };
964
+ /**
965
+ * @public
966
+ */
967
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
893
968
  /**
894
969
  * @public
895
970
  */