@aws-sdk/client-acm 3.948.0 → 3.953.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 (36) hide show
  1. package/dist-cjs/index.js +260 -190
  2. package/dist-cjs/runtimeConfig.shared.js +6 -6
  3. package/dist-es/commands/AddTagsToCertificateCommand.js +2 -2
  4. package/dist-es/commands/DeleteCertificateCommand.js +2 -2
  5. package/dist-es/commands/DescribeCertificateCommand.js +2 -2
  6. package/dist-es/commands/ExportCertificateCommand.js +2 -2
  7. package/dist-es/commands/GetAccountConfigurationCommand.js +2 -2
  8. package/dist-es/commands/GetCertificateCommand.js +2 -2
  9. package/dist-es/commands/ImportCertificateCommand.js +2 -2
  10. package/dist-es/commands/ListCertificatesCommand.js +2 -2
  11. package/dist-es/commands/ListTagsForCertificateCommand.js +2 -2
  12. package/dist-es/commands/PutAccountConfigurationCommand.js +2 -2
  13. package/dist-es/commands/RemoveTagsFromCertificateCommand.js +2 -2
  14. package/dist-es/commands/RenewCertificateCommand.js +2 -2
  15. package/dist-es/commands/RequestCertificateCommand.js +2 -2
  16. package/dist-es/commands/ResendValidationEmailCommand.js +2 -2
  17. package/dist-es/commands/RevokeCertificateCommand.js +2 -2
  18. package/dist-es/commands/UpdateCertificateOptionsCommand.js +2 -2
  19. package/dist-es/index.js +1 -0
  20. package/dist-es/runtimeConfig.shared.js +6 -6
  21. package/dist-es/schemas/schemas_0.js +138 -138
  22. package/dist-types/ACMClient.d.ts +1 -10
  23. package/dist-types/index.d.ts +1 -0
  24. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  25. package/dist-types/runtimeConfig.d.ts +6 -2
  26. package/dist-types/runtimeConfig.native.d.ts +6 -2
  27. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  28. package/dist-types/schemas/schemas_0.d.ts +71 -90
  29. package/dist-types/ts3.4/ACMClient.d.ts +0 -4
  30. package/dist-types/ts3.4/index.d.ts +1 -0
  31. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  32. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  33. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  34. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  35. package/dist-types/ts3.4/schemas/schemas_0.d.ts +70 -91
  36. package/package.json +35 -35
package/dist-cjs/index.js CHANGED
@@ -111,14 +111,14 @@ class ACMClient extends smithyClient.Client {
111
111
  }
112
112
  }
113
113
 
114
- let ACMServiceException$1 = class ACMServiceException extends smithyClient.ServiceException {
114
+ class ACMServiceException extends smithyClient.ServiceException {
115
115
  constructor(options) {
116
116
  super(options);
117
117
  Object.setPrototypeOf(this, ACMServiceException.prototype);
118
118
  }
119
- };
119
+ }
120
120
 
121
- let AccessDeniedException$1 = class AccessDeniedException extends ACMServiceException$1 {
121
+ class AccessDeniedException extends ACMServiceException {
122
122
  name = "AccessDeniedException";
123
123
  $fault = "client";
124
124
  Message;
@@ -131,8 +131,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends ACMServiceExce
131
131
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
132
132
  this.Message = opts.Message;
133
133
  }
134
- };
135
- let InvalidArnException$1 = class InvalidArnException extends ACMServiceException$1 {
134
+ }
135
+ class InvalidArnException extends ACMServiceException {
136
136
  name = "InvalidArnException";
137
137
  $fault = "client";
138
138
  constructor(opts) {
@@ -143,8 +143,8 @@ let InvalidArnException$1 = class InvalidArnException extends ACMServiceExceptio
143
143
  });
144
144
  Object.setPrototypeOf(this, InvalidArnException.prototype);
145
145
  }
146
- };
147
- let InvalidParameterException$1 = class InvalidParameterException extends ACMServiceException$1 {
146
+ }
147
+ class InvalidParameterException extends ACMServiceException {
148
148
  name = "InvalidParameterException";
149
149
  $fault = "client";
150
150
  constructor(opts) {
@@ -155,8 +155,8 @@ let InvalidParameterException$1 = class InvalidParameterException extends ACMSer
155
155
  });
156
156
  Object.setPrototypeOf(this, InvalidParameterException.prototype);
157
157
  }
158
- };
159
- let InvalidTagException$1 = class InvalidTagException extends ACMServiceException$1 {
158
+ }
159
+ class InvalidTagException extends ACMServiceException {
160
160
  name = "InvalidTagException";
161
161
  $fault = "client";
162
162
  constructor(opts) {
@@ -167,8 +167,8 @@ let InvalidTagException$1 = class InvalidTagException extends ACMServiceExceptio
167
167
  });
168
168
  Object.setPrototypeOf(this, InvalidTagException.prototype);
169
169
  }
170
- };
171
- let ResourceNotFoundException$1 = class ResourceNotFoundException extends ACMServiceException$1 {
170
+ }
171
+ class ResourceNotFoundException extends ACMServiceException {
172
172
  name = "ResourceNotFoundException";
173
173
  $fault = "client";
174
174
  constructor(opts) {
@@ -179,8 +179,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends ACMSer
179
179
  });
180
180
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
181
181
  }
182
- };
183
- let TagPolicyException$1 = class TagPolicyException extends ACMServiceException$1 {
182
+ }
183
+ class TagPolicyException extends ACMServiceException {
184
184
  name = "TagPolicyException";
185
185
  $fault = "client";
186
186
  constructor(opts) {
@@ -191,8 +191,8 @@ let TagPolicyException$1 = class TagPolicyException extends ACMServiceException$
191
191
  });
192
192
  Object.setPrototypeOf(this, TagPolicyException.prototype);
193
193
  }
194
- };
195
- let ThrottlingException$1 = class ThrottlingException extends ACMServiceException$1 {
194
+ }
195
+ class ThrottlingException extends ACMServiceException {
196
196
  name = "ThrottlingException";
197
197
  $fault = "client";
198
198
  constructor(opts) {
@@ -203,8 +203,8 @@ let ThrottlingException$1 = class ThrottlingException extends ACMServiceExceptio
203
203
  });
204
204
  Object.setPrototypeOf(this, ThrottlingException.prototype);
205
205
  }
206
- };
207
- let TooManyTagsException$1 = class TooManyTagsException extends ACMServiceException$1 {
206
+ }
207
+ class TooManyTagsException extends ACMServiceException {
208
208
  name = "TooManyTagsException";
209
209
  $fault = "client";
210
210
  constructor(opts) {
@@ -215,8 +215,8 @@ let TooManyTagsException$1 = class TooManyTagsException extends ACMServiceExcept
215
215
  });
216
216
  Object.setPrototypeOf(this, TooManyTagsException.prototype);
217
217
  }
218
- };
219
- let ConflictException$1 = class ConflictException extends ACMServiceException$1 {
218
+ }
219
+ class ConflictException extends ACMServiceException {
220
220
  name = "ConflictException";
221
221
  $fault = "client";
222
222
  constructor(opts) {
@@ -227,8 +227,8 @@ let ConflictException$1 = class ConflictException extends ACMServiceException$1
227
227
  });
228
228
  Object.setPrototypeOf(this, ConflictException.prototype);
229
229
  }
230
- };
231
- let ResourceInUseException$1 = class ResourceInUseException extends ACMServiceException$1 {
230
+ }
231
+ class ResourceInUseException extends ACMServiceException {
232
232
  name = "ResourceInUseException";
233
233
  $fault = "client";
234
234
  constructor(opts) {
@@ -239,8 +239,8 @@ let ResourceInUseException$1 = class ResourceInUseException extends ACMServiceEx
239
239
  });
240
240
  Object.setPrototypeOf(this, ResourceInUseException.prototype);
241
241
  }
242
- };
243
- let RequestInProgressException$1 = class RequestInProgressException extends ACMServiceException$1 {
242
+ }
243
+ class RequestInProgressException extends ACMServiceException {
244
244
  name = "RequestInProgressException";
245
245
  $fault = "client";
246
246
  constructor(opts) {
@@ -251,8 +251,8 @@ let RequestInProgressException$1 = class RequestInProgressException extends ACMS
251
251
  });
252
252
  Object.setPrototypeOf(this, RequestInProgressException.prototype);
253
253
  }
254
- };
255
- let LimitExceededException$1 = class LimitExceededException extends ACMServiceException$1 {
254
+ }
255
+ class LimitExceededException extends ACMServiceException {
256
256
  name = "LimitExceededException";
257
257
  $fault = "client";
258
258
  constructor(opts) {
@@ -263,8 +263,8 @@ let LimitExceededException$1 = class LimitExceededException extends ACMServiceEx
263
263
  });
264
264
  Object.setPrototypeOf(this, LimitExceededException.prototype);
265
265
  }
266
- };
267
- let InvalidArgsException$1 = class InvalidArgsException extends ACMServiceException$1 {
266
+ }
267
+ class InvalidArgsException extends ACMServiceException {
268
268
  name = "InvalidArgsException";
269
269
  $fault = "client";
270
270
  constructor(opts) {
@@ -275,8 +275,8 @@ let InvalidArgsException$1 = class InvalidArgsException extends ACMServiceExcept
275
275
  });
276
276
  Object.setPrototypeOf(this, InvalidArgsException.prototype);
277
277
  }
278
- };
279
- let ValidationException$1 = class ValidationException extends ACMServiceException$1 {
278
+ }
279
+ class ValidationException extends ACMServiceException {
280
280
  name = "ValidationException";
281
281
  $fault = "client";
282
282
  constructor(opts) {
@@ -287,8 +287,8 @@ let ValidationException$1 = class ValidationException extends ACMServiceExceptio
287
287
  });
288
288
  Object.setPrototypeOf(this, ValidationException.prototype);
289
289
  }
290
- };
291
- let InvalidDomainValidationOptionsException$1 = class InvalidDomainValidationOptionsException extends ACMServiceException$1 {
290
+ }
291
+ class InvalidDomainValidationOptionsException extends ACMServiceException {
292
292
  name = "InvalidDomainValidationOptionsException";
293
293
  $fault = "client";
294
294
  constructor(opts) {
@@ -299,8 +299,8 @@ let InvalidDomainValidationOptionsException$1 = class InvalidDomainValidationOpt
299
299
  });
300
300
  Object.setPrototypeOf(this, InvalidDomainValidationOptionsException.prototype);
301
301
  }
302
- };
303
- let InvalidStateException$1 = class InvalidStateException extends ACMServiceException$1 {
302
+ }
303
+ class InvalidStateException extends ACMServiceException {
304
304
  name = "InvalidStateException";
305
305
  $fault = "client";
306
306
  constructor(opts) {
@@ -311,7 +311,7 @@ let InvalidStateException$1 = class InvalidStateException extends ACMServiceExce
311
311
  });
312
312
  Object.setPrototypeOf(this, InvalidStateException.prototype);
313
313
  }
314
- };
314
+ }
315
315
 
316
316
  const _ADE = "AccessDeniedException";
317
317
  const _ATTC = "AddTagsToCertificate";
@@ -467,7 +467,7 @@ const n0 = "com.amazonaws.acm";
467
467
  var PassphraseBlob = [0, n0, _PB, 8, 21];
468
468
  var PrivateKey = [0, n0, _PK, 8, 0];
469
469
  var PrivateKeyBlob = [0, n0, _PKB, 8, 21];
470
- var AccessDeniedException = [
470
+ var AccessDeniedException$ = [
471
471
  -3,
472
472
  n0,
473
473
  _ADE,
@@ -475,9 +475,9 @@ var AccessDeniedException = [
475
475
  [_M],
476
476
  [0],
477
477
  ];
478
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
479
- var AddTagsToCertificateRequest = [3, n0, _ATTCR, 0, [_CA, _T], [0, () => TagList]];
480
- var CertificateDetail = [
478
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
479
+ var AddTagsToCertificateRequest$ = [3, n0, _ATTCR, 0, [_CA, _T], [0, () => TagList]];
480
+ var CertificateDetail$ = [
481
481
  3,
482
482
  n0,
483
483
  _CD,
@@ -533,16 +533,16 @@ var CertificateDetail = [
533
533
  64 | 0,
534
534
  0,
535
535
  0,
536
- () => RenewalSummary,
536
+ () => RenewalSummary$,
537
537
  () => KeyUsageList,
538
538
  () => ExtendedKeyUsageList,
539
539
  0,
540
540
  0,
541
- () => CertificateOptions,
541
+ () => CertificateOptions$,
542
542
  ],
543
543
  ];
544
- var CertificateOptions = [3, n0, _CO, 0, [_CTLP, _E], [0, 0]];
545
- var CertificateSummary = [
544
+ var CertificateOptions$ = [3, n0, _CO, 0, [_CTLP, _E], [0, 0]];
545
+ var CertificateSummary$ = [
546
546
  3,
547
547
  n0,
548
548
  _CS,
@@ -550,22 +550,22 @@ var CertificateSummary = [
550
550
  [_CA, _DN, _SANS, _HASAN, _St, _Ty, _KA, _KU, _EKU, _EO, _IU, _Ex, _RE, _NB, _NA, _CAr, _IA, _IAm, _RA, _MB],
551
551
  [0, 0, 64 | 0, 2, 0, 0, 0, 64 | 0, 64 | 0, 0, 2, 2, 0, 4, 4, 4, 4, 4, 4, 0],
552
552
  ];
553
- var ConflictException = [-3, n0, _CE, { [_e]: _c }, [_m], [0]];
554
- schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
555
- var DeleteCertificateRequest = [3, n0, _DCR, 0, [_CA], [0]];
556
- var DescribeCertificateRequest = [3, n0, _DCRe, 0, [_CA], [0]];
557
- var DescribeCertificateResponse = [3, n0, _DCRes, 0, [_C], [() => CertificateDetail]];
558
- var DomainValidation = [
553
+ var ConflictException$ = [-3, n0, _CE, { [_e]: _c }, [_m], [0]];
554
+ schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
555
+ var DeleteCertificateRequest$ = [3, n0, _DCR, 0, [_CA], [0]];
556
+ var DescribeCertificateRequest$ = [3, n0, _DCRe, 0, [_CA], [0]];
557
+ var DescribeCertificateResponse$ = [3, n0, _DCRes, 0, [_C], [() => CertificateDetail$]];
558
+ var DomainValidation$ = [
559
559
  3,
560
560
  n0,
561
561
  _DV,
562
562
  0,
563
563
  [_DN, _VE, _VD, _VS, _RRe, _HR, _VM],
564
- [0, 64 | 0, 0, 0, () => ResourceRecord, () => HttpRedirect, 0],
564
+ [0, 64 | 0, 0, 0, () => ResourceRecord$, () => HttpRedirect$, 0],
565
565
  ];
566
- var DomainValidationOption = [3, n0, _DVOo, 0, [_DN, _VD], [0, 0]];
567
- var ExpiryEventsConfiguration = [3, n0, _EEC, 0, [_DBE], [1]];
568
- var ExportCertificateRequest = [
566
+ var DomainValidationOption$ = [3, n0, _DVOo, 0, [_DN, _VD], [0, 0]];
567
+ var ExpiryEventsConfiguration$ = [3, n0, _EEC, 0, [_DBE], [1]];
568
+ var ExportCertificateRequest$ = [
569
569
  3,
570
570
  n0,
571
571
  _ECR,
@@ -573,7 +573,7 @@ var ExportCertificateRequest = [
573
573
  [_CA, _P],
574
574
  [0, [() => PassphraseBlob, 0]],
575
575
  ];
576
- var ExportCertificateResponse = [
576
+ var ExportCertificateResponse$ = [
577
577
  3,
578
578
  n0,
579
579
  _ECRx,
@@ -581,20 +581,20 @@ var ExportCertificateResponse = [
581
581
  [_C, _CC, _PK],
582
582
  [0, 0, [() => PrivateKey, 0]],
583
583
  ];
584
- var ExtendedKeyUsage = [3, n0, _EKUx, 0, [_N, _OID], [0, 0]];
585
- var Filters = [3, n0, _F, 0, [_eKU, _kU, _kT, _eO, _mB], [64 | 0, 64 | 0, 64 | 0, 0, 0]];
586
- var GetAccountConfigurationResponse = [
584
+ var ExtendedKeyUsage$ = [3, n0, _EKUx, 0, [_N, _OID], [0, 0]];
585
+ var Filters$ = [3, n0, _F, 0, [_eKU, _kU, _kT, _eO, _mB], [64 | 0, 64 | 0, 64 | 0, 0, 0]];
586
+ var GetAccountConfigurationResponse$ = [
587
587
  3,
588
588
  n0,
589
589
  _GACR,
590
590
  0,
591
591
  [_EE],
592
- [() => ExpiryEventsConfiguration],
592
+ [() => ExpiryEventsConfiguration$],
593
593
  ];
594
- var GetCertificateRequest = [3, n0, _GCR, 0, [_CA], [0]];
595
- var GetCertificateResponse = [3, n0, _GCRe, 0, [_C, _CC], [0, 0]];
596
- var HttpRedirect = [3, n0, _HR, 0, [_RF, _RT], [0, 0]];
597
- var ImportCertificateRequest = [
594
+ var GetCertificateRequest$ = [3, n0, _GCR, 0, [_CA], [0]];
595
+ var GetCertificateResponse$ = [3, n0, _GCRe, 0, [_C, _CC], [0, 0]];
596
+ var HttpRedirect$ = [3, n0, _HR, 0, [_RF, _RT], [0, 0]];
597
+ var ImportCertificateRequest$ = [
598
598
  3,
599
599
  n0,
600
600
  _ICR,
@@ -602,31 +602,31 @@ var ImportCertificateRequest = [
602
602
  [_CA, _C, _PK, _CC, _T],
603
603
  [0, 21, [() => PrivateKeyBlob, 0], 21, () => TagList],
604
604
  ];
605
- var ImportCertificateResponse = [3, n0, _ICRm, 0, [_CA], [0]];
606
- var InvalidArgsException = [-3, n0, _IAE, { [_e]: _c }, [_m], [0]];
607
- schema.TypeRegistry.for(n0).registerError(InvalidArgsException, InvalidArgsException$1);
608
- var InvalidArnException = [-3, n0, _IAEn, { [_e]: _c }, [_m], [0]];
609
- schema.TypeRegistry.for(n0).registerError(InvalidArnException, InvalidArnException$1);
610
- var InvalidDomainValidationOptionsException = [-3, n0, _IDVOE, { [_e]: _c }, [_m], [0]];
611
- schema.TypeRegistry.for(n0).registerError(InvalidDomainValidationOptionsException, InvalidDomainValidationOptionsException$1);
612
- var InvalidParameterException = [-3, n0, _IPE, { [_e]: _c }, [_m], [0]];
613
- schema.TypeRegistry.for(n0).registerError(InvalidParameterException, InvalidParameterException$1);
614
- var InvalidStateException = [-3, n0, _ISE, { [_e]: _c }, [_m], [0]];
615
- schema.TypeRegistry.for(n0).registerError(InvalidStateException, InvalidStateException$1);
616
- var InvalidTagException = [-3, n0, _ITE, { [_e]: _c }, [_m], [0]];
617
- schema.TypeRegistry.for(n0).registerError(InvalidTagException, InvalidTagException$1);
618
- var KeyUsage = [3, n0, _KUe, 0, [_N], [0]];
619
- var LimitExceededException = [-3, n0, _LEE, { [_e]: _c }, [_m], [0]];
620
- schema.TypeRegistry.for(n0).registerError(LimitExceededException, LimitExceededException$1);
621
- var ListCertificatesRequest = [
605
+ var ImportCertificateResponse$ = [3, n0, _ICRm, 0, [_CA], [0]];
606
+ var InvalidArgsException$ = [-3, n0, _IAE, { [_e]: _c }, [_m], [0]];
607
+ schema.TypeRegistry.for(n0).registerError(InvalidArgsException$, InvalidArgsException);
608
+ var InvalidArnException$ = [-3, n0, _IAEn, { [_e]: _c }, [_m], [0]];
609
+ schema.TypeRegistry.for(n0).registerError(InvalidArnException$, InvalidArnException);
610
+ var InvalidDomainValidationOptionsException$ = [-3, n0, _IDVOE, { [_e]: _c }, [_m], [0]];
611
+ schema.TypeRegistry.for(n0).registerError(InvalidDomainValidationOptionsException$, InvalidDomainValidationOptionsException);
612
+ var InvalidParameterException$ = [-3, n0, _IPE, { [_e]: _c }, [_m], [0]];
613
+ schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
614
+ var InvalidStateException$ = [-3, n0, _ISE, { [_e]: _c }, [_m], [0]];
615
+ schema.TypeRegistry.for(n0).registerError(InvalidStateException$, InvalidStateException);
616
+ var InvalidTagException$ = [-3, n0, _ITE, { [_e]: _c }, [_m], [0]];
617
+ schema.TypeRegistry.for(n0).registerError(InvalidTagException$, InvalidTagException);
618
+ var KeyUsage$ = [3, n0, _KUe, 0, [_N], [0]];
619
+ var LimitExceededException$ = [-3, n0, _LEE, { [_e]: _c }, [_m], [0]];
620
+ schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
621
+ var ListCertificatesRequest$ = [
622
622
  3,
623
623
  n0,
624
624
  _LCR,
625
625
  0,
626
626
  [_CSe, _In, _NT, _MI, _SB, _SO],
627
- [64 | 0, () => Filters, 0, 1, 0, 0],
627
+ [64 | 0, () => Filters$, 0, 1, 0, 0],
628
628
  ];
629
- var ListCertificatesResponse = [
629
+ var ListCertificatesResponse$ = [
630
630
  3,
631
631
  n0,
632
632
  _LCRi,
@@ -634,18 +634,18 @@ var ListCertificatesResponse = [
634
634
  [_NT, _CSL],
635
635
  [0, () => CertificateSummaryList],
636
636
  ];
637
- var ListTagsForCertificateRequest = [3, n0, _LTFCR, 0, [_CA], [0]];
638
- var ListTagsForCertificateResponse = [3, n0, _LTFCRi, 0, [_T], [() => TagList]];
639
- var PutAccountConfigurationRequest = [
637
+ var ListTagsForCertificateRequest$ = [3, n0, _LTFCR, 0, [_CA], [0]];
638
+ var ListTagsForCertificateResponse$ = [3, n0, _LTFCRi, 0, [_T], [() => TagList]];
639
+ var PutAccountConfigurationRequest$ = [
640
640
  3,
641
641
  n0,
642
642
  _PACR,
643
643
  0,
644
644
  [_EE, _IT],
645
- [() => ExpiryEventsConfiguration, 0],
645
+ [() => ExpiryEventsConfiguration$, 0],
646
646
  ];
647
- var RemoveTagsFromCertificateRequest = [3, n0, _RTFCR, 0, [_CA, _T], [0, () => TagList]];
648
- var RenewalSummary = [
647
+ var RemoveTagsFromCertificateRequest$ = [3, n0, _RTFCR, 0, [_CA, _T], [0, () => TagList]];
648
+ var RenewalSummary$ = [
649
649
  3,
650
650
  n0,
651
651
  _RS,
@@ -653,30 +653,30 @@ var RenewalSummary = [
653
653
  [_RSe, _DVO, _RSR, _UA],
654
654
  [0, () => DomainValidationList, 0, 4],
655
655
  ];
656
- var RenewCertificateRequest = [3, n0, _RCR, 0, [_CA], [0]];
657
- var RequestCertificateRequest = [
656
+ var RenewCertificateRequest$ = [3, n0, _RCR, 0, [_CA], [0]];
657
+ var RequestCertificateRequest$ = [
658
658
  3,
659
659
  n0,
660
660
  _RCRe,
661
661
  0,
662
662
  [_DN, _VM, _SAN, _IT, _DVO, _O, _CAA, _T, _KA, _MB],
663
- [0, 0, 64 | 0, 0, () => DomainValidationOptionList, () => CertificateOptions, 0, () => TagList, 0, 0],
663
+ [0, 0, 64 | 0, 0, () => DomainValidationOptionList, () => CertificateOptions$, 0, () => TagList, 0, 0],
664
664
  ];
665
- var RequestCertificateResponse = [3, n0, _RCReq, 0, [_CA], [0]];
666
- var RequestInProgressException = [-3, n0, _RIPE, { [_e]: _c }, [_m], [0]];
667
- schema.TypeRegistry.for(n0).registerError(RequestInProgressException, RequestInProgressException$1);
668
- var ResendValidationEmailRequest = [3, n0, _RVER, 0, [_CA, _D, _VD], [0, 0, 0]];
669
- var ResourceInUseException = [-3, n0, _RIUE, { [_e]: _c }, [_m], [0]];
670
- schema.TypeRegistry.for(n0).registerError(ResourceInUseException, ResourceInUseException$1);
671
- var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c }, [_m], [0]];
672
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
673
- var ResourceRecord = [3, n0, _RRe, 0, [_N, _Ty, _V], [0, 0, 0]];
674
- var RevokeCertificateRequest = [3, n0, _RCRev, 0, [_CA, _RR], [0, 0]];
675
- var RevokeCertificateResponse = [3, n0, _RCRevo, 0, [_CA], [0]];
676
- var Tag = [3, n0, _Ta, 0, [_K, _V], [0, 0]];
677
- var TagPolicyException = [-3, n0, _TPE, { [_e]: _c }, [_m], [0]];
678
- schema.TypeRegistry.for(n0).registerError(TagPolicyException, TagPolicyException$1);
679
- var ThrottlingException = [
665
+ var RequestCertificateResponse$ = [3, n0, _RCReq, 0, [_CA], [0]];
666
+ var RequestInProgressException$ = [-3, n0, _RIPE, { [_e]: _c }, [_m], [0]];
667
+ schema.TypeRegistry.for(n0).registerError(RequestInProgressException$, RequestInProgressException);
668
+ var ResendValidationEmailRequest$ = [3, n0, _RVER, 0, [_CA, _D, _VD], [0, 0, 0]];
669
+ var ResourceInUseException$ = [-3, n0, _RIUE, { [_e]: _c }, [_m], [0]];
670
+ schema.TypeRegistry.for(n0).registerError(ResourceInUseException$, ResourceInUseException);
671
+ var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c }, [_m], [0]];
672
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
673
+ var ResourceRecord$ = [3, n0, _RRe, 0, [_N, _Ty, _V], [0, 0, 0]];
674
+ var RevokeCertificateRequest$ = [3, n0, _RCRev, 0, [_CA, _RR], [0, 0]];
675
+ var RevokeCertificateResponse$ = [3, n0, _RCRevo, 0, [_CA], [0]];
676
+ var Tag$ = [3, n0, _Ta, 0, [_K, _V], [0, 0]];
677
+ var TagPolicyException$ = [-3, n0, _TPE, { [_e]: _c }, [_m], [0]];
678
+ schema.TypeRegistry.for(n0).registerError(TagPolicyException$, TagPolicyException);
679
+ var ThrottlingException$ = [
680
680
  -3,
681
681
  n0,
682
682
  _TE,
@@ -684,18 +684,18 @@ var ThrottlingException = [
684
684
  [_m],
685
685
  [0],
686
686
  ];
687
- schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
688
- var TooManyTagsException = [-3, n0, _TMTE, { [_e]: _c }, [_m], [0]];
689
- schema.TypeRegistry.for(n0).registerError(TooManyTagsException, TooManyTagsException$1);
690
- var UpdateCertificateOptionsRequest = [
687
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
688
+ var TooManyTagsException$ = [-3, n0, _TMTE, { [_e]: _c }, [_m], [0]];
689
+ schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
690
+ var UpdateCertificateOptionsRequest$ = [
691
691
  3,
692
692
  n0,
693
693
  _UCOR,
694
694
  0,
695
695
  [_CA, _O],
696
- [0, () => CertificateOptions],
696
+ [0, () => CertificateOptions$],
697
697
  ];
698
- var ValidationException = [
698
+ var ValidationException$ = [
699
699
  -3,
700
700
  n0,
701
701
  _VEa,
@@ -703,128 +703,128 @@ var ValidationException = [
703
703
  [_m],
704
704
  [0],
705
705
  ];
706
- schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
706
+ schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
707
707
  var __Unit = "unit";
708
- var ACMServiceException = [-3, _s, "ACMServiceException", 0, [], []];
709
- schema.TypeRegistry.for(_s).registerError(ACMServiceException, ACMServiceException$1);
710
- var CertificateSummaryList = [1, n0, _CSL, 0, () => CertificateSummary];
711
- var DomainValidationList = [1, n0, _DVL, 0, () => DomainValidation];
712
- var DomainValidationOptionList = [1, n0, _DVOL, 0, () => DomainValidationOption];
713
- var ExtendedKeyUsageList = [1, n0, _EKUL, 0, () => ExtendedKeyUsage];
714
- var KeyUsageList = [1, n0, _KUL, 0, () => KeyUsage];
715
- var TagList = [1, n0, _TL, 0, () => Tag];
716
- var AddTagsToCertificate = [
708
+ var ACMServiceException$ = [-3, _s, "ACMServiceException", 0, [], []];
709
+ schema.TypeRegistry.for(_s).registerError(ACMServiceException$, ACMServiceException);
710
+ var CertificateSummaryList = [1, n0, _CSL, 0, () => CertificateSummary$];
711
+ var DomainValidationList = [1, n0, _DVL, 0, () => DomainValidation$];
712
+ var DomainValidationOptionList = [1, n0, _DVOL, 0, () => DomainValidationOption$];
713
+ var ExtendedKeyUsageList = [1, n0, _EKUL, 0, () => ExtendedKeyUsage$];
714
+ var KeyUsageList = [1, n0, _KUL, 0, () => KeyUsage$];
715
+ var TagList = [1, n0, _TL, 0, () => Tag$];
716
+ var AddTagsToCertificate$ = [
717
717
  9,
718
718
  n0,
719
719
  _ATTC,
720
720
  0,
721
- () => AddTagsToCertificateRequest,
721
+ () => AddTagsToCertificateRequest$,
722
722
  () => __Unit,
723
723
  ];
724
- var DeleteCertificate = [9, n0, _DC, 0, () => DeleteCertificateRequest, () => __Unit];
725
- var DescribeCertificate = [
724
+ var DeleteCertificate$ = [9, n0, _DC, 0, () => DeleteCertificateRequest$, () => __Unit];
725
+ var DescribeCertificate$ = [
726
726
  9,
727
727
  n0,
728
728
  _DCe,
729
729
  0,
730
- () => DescribeCertificateRequest,
731
- () => DescribeCertificateResponse,
730
+ () => DescribeCertificateRequest$,
731
+ () => DescribeCertificateResponse$,
732
732
  ];
733
- var ExportCertificate = [
733
+ var ExportCertificate$ = [
734
734
  9,
735
735
  n0,
736
736
  _EC,
737
737
  0,
738
- () => ExportCertificateRequest,
739
- () => ExportCertificateResponse,
738
+ () => ExportCertificateRequest$,
739
+ () => ExportCertificateResponse$,
740
740
  ];
741
- var GetAccountConfiguration = [
741
+ var GetAccountConfiguration$ = [
742
742
  9,
743
743
  n0,
744
744
  _GAC,
745
745
  0,
746
746
  () => __Unit,
747
- () => GetAccountConfigurationResponse,
747
+ () => GetAccountConfigurationResponse$,
748
748
  ];
749
- var GetCertificate = [
749
+ var GetCertificate$ = [
750
750
  9,
751
751
  n0,
752
752
  _GC,
753
753
  0,
754
- () => GetCertificateRequest,
755
- () => GetCertificateResponse,
754
+ () => GetCertificateRequest$,
755
+ () => GetCertificateResponse$,
756
756
  ];
757
- var ImportCertificate = [
757
+ var ImportCertificate$ = [
758
758
  9,
759
759
  n0,
760
760
  _IC,
761
761
  0,
762
- () => ImportCertificateRequest,
763
- () => ImportCertificateResponse,
762
+ () => ImportCertificateRequest$,
763
+ () => ImportCertificateResponse$,
764
764
  ];
765
- var ListCertificates = [
765
+ var ListCertificates$ = [
766
766
  9,
767
767
  n0,
768
768
  _LC,
769
769
  0,
770
- () => ListCertificatesRequest,
771
- () => ListCertificatesResponse,
770
+ () => ListCertificatesRequest$,
771
+ () => ListCertificatesResponse$,
772
772
  ];
773
- var ListTagsForCertificate = [
773
+ var ListTagsForCertificate$ = [
774
774
  9,
775
775
  n0,
776
776
  _LTFC,
777
777
  0,
778
- () => ListTagsForCertificateRequest,
779
- () => ListTagsForCertificateResponse,
778
+ () => ListTagsForCertificateRequest$,
779
+ () => ListTagsForCertificateResponse$,
780
780
  ];
781
- var PutAccountConfiguration = [
781
+ var PutAccountConfiguration$ = [
782
782
  9,
783
783
  n0,
784
784
  _PAC,
785
785
  0,
786
- () => PutAccountConfigurationRequest,
786
+ () => PutAccountConfigurationRequest$,
787
787
  () => __Unit,
788
788
  ];
789
- var RemoveTagsFromCertificate = [
789
+ var RemoveTagsFromCertificate$ = [
790
790
  9,
791
791
  n0,
792
792
  _RTFC,
793
793
  0,
794
- () => RemoveTagsFromCertificateRequest,
794
+ () => RemoveTagsFromCertificateRequest$,
795
795
  () => __Unit,
796
796
  ];
797
- var RenewCertificate = [9, n0, _RC, 0, () => RenewCertificateRequest, () => __Unit];
798
- var RequestCertificate = [
797
+ var RenewCertificate$ = [9, n0, _RC, 0, () => RenewCertificateRequest$, () => __Unit];
798
+ var RequestCertificate$ = [
799
799
  9,
800
800
  n0,
801
801
  _RCe,
802
802
  0,
803
- () => RequestCertificateRequest,
804
- () => RequestCertificateResponse,
803
+ () => RequestCertificateRequest$,
804
+ () => RequestCertificateResponse$,
805
805
  ];
806
- var ResendValidationEmail = [
806
+ var ResendValidationEmail$ = [
807
807
  9,
808
808
  n0,
809
809
  _RVE,
810
810
  0,
811
- () => ResendValidationEmailRequest,
811
+ () => ResendValidationEmailRequest$,
812
812
  () => __Unit,
813
813
  ];
814
- var RevokeCertificate = [
814
+ var RevokeCertificate$ = [
815
815
  9,
816
816
  n0,
817
817
  _RCev,
818
818
  0,
819
- () => RevokeCertificateRequest,
820
- () => RevokeCertificateResponse,
819
+ () => RevokeCertificateRequest$,
820
+ () => RevokeCertificateResponse$,
821
821
  ];
822
- var UpdateCertificateOptions = [
822
+ var UpdateCertificateOptions$ = [
823
823
  9,
824
824
  n0,
825
825
  _UCO,
826
826
  0,
827
- () => UpdateCertificateOptionsRequest,
827
+ () => UpdateCertificateOptionsRequest$,
828
828
  () => __Unit,
829
829
  ];
830
830
 
@@ -836,7 +836,7 @@ class AddTagsToCertificateCommand extends smithyClient.Command
836
836
  })
837
837
  .s("CertificateManager", "AddTagsToCertificate", {})
838
838
  .n("ACMClient", "AddTagsToCertificateCommand")
839
- .sc(AddTagsToCertificate)
839
+ .sc(AddTagsToCertificate$)
840
840
  .build() {
841
841
  }
842
842
 
@@ -848,7 +848,7 @@ class DeleteCertificateCommand extends smithyClient.Command
848
848
  })
849
849
  .s("CertificateManager", "DeleteCertificate", {})
850
850
  .n("ACMClient", "DeleteCertificateCommand")
851
- .sc(DeleteCertificate)
851
+ .sc(DeleteCertificate$)
852
852
  .build() {
853
853
  }
854
854
 
@@ -860,7 +860,7 @@ class DescribeCertificateCommand extends smithyClient.Command
860
860
  })
861
861
  .s("CertificateManager", "DescribeCertificate", {})
862
862
  .n("ACMClient", "DescribeCertificateCommand")
863
- .sc(DescribeCertificate)
863
+ .sc(DescribeCertificate$)
864
864
  .build() {
865
865
  }
866
866
 
@@ -872,7 +872,7 @@ class ExportCertificateCommand extends smithyClient.Command
872
872
  })
873
873
  .s("CertificateManager", "ExportCertificate", {})
874
874
  .n("ACMClient", "ExportCertificateCommand")
875
- .sc(ExportCertificate)
875
+ .sc(ExportCertificate$)
876
876
  .build() {
877
877
  }
878
878
 
@@ -884,7 +884,7 @@ class GetAccountConfigurationCommand extends smithyClient.Command
884
884
  })
885
885
  .s("CertificateManager", "GetAccountConfiguration", {})
886
886
  .n("ACMClient", "GetAccountConfigurationCommand")
887
- .sc(GetAccountConfiguration)
887
+ .sc(GetAccountConfiguration$)
888
888
  .build() {
889
889
  }
890
890
 
@@ -896,7 +896,7 @@ class GetCertificateCommand extends smithyClient.Command
896
896
  })
897
897
  .s("CertificateManager", "GetCertificate", {})
898
898
  .n("ACMClient", "GetCertificateCommand")
899
- .sc(GetCertificate)
899
+ .sc(GetCertificate$)
900
900
  .build() {
901
901
  }
902
902
 
@@ -908,7 +908,7 @@ class ImportCertificateCommand extends smithyClient.Command
908
908
  })
909
909
  .s("CertificateManager", "ImportCertificate", {})
910
910
  .n("ACMClient", "ImportCertificateCommand")
911
- .sc(ImportCertificate)
911
+ .sc(ImportCertificate$)
912
912
  .build() {
913
913
  }
914
914
 
@@ -920,7 +920,7 @@ class ListCertificatesCommand extends smithyClient.Command
920
920
  })
921
921
  .s("CertificateManager", "ListCertificates", {})
922
922
  .n("ACMClient", "ListCertificatesCommand")
923
- .sc(ListCertificates)
923
+ .sc(ListCertificates$)
924
924
  .build() {
925
925
  }
926
926
 
@@ -932,7 +932,7 @@ class ListTagsForCertificateCommand extends smithyClient.Command
932
932
  })
933
933
  .s("CertificateManager", "ListTagsForCertificate", {})
934
934
  .n("ACMClient", "ListTagsForCertificateCommand")
935
- .sc(ListTagsForCertificate)
935
+ .sc(ListTagsForCertificate$)
936
936
  .build() {
937
937
  }
938
938
 
@@ -944,7 +944,7 @@ class PutAccountConfigurationCommand extends smithyClient.Command
944
944
  })
945
945
  .s("CertificateManager", "PutAccountConfiguration", {})
946
946
  .n("ACMClient", "PutAccountConfigurationCommand")
947
- .sc(PutAccountConfiguration)
947
+ .sc(PutAccountConfiguration$)
948
948
  .build() {
949
949
  }
950
950
 
@@ -956,7 +956,7 @@ class RemoveTagsFromCertificateCommand extends smithyClient.Command
956
956
  })
957
957
  .s("CertificateManager", "RemoveTagsFromCertificate", {})
958
958
  .n("ACMClient", "RemoveTagsFromCertificateCommand")
959
- .sc(RemoveTagsFromCertificate)
959
+ .sc(RemoveTagsFromCertificate$)
960
960
  .build() {
961
961
  }
962
962
 
@@ -968,7 +968,7 @@ class RenewCertificateCommand extends smithyClient.Command
968
968
  })
969
969
  .s("CertificateManager", "RenewCertificate", {})
970
970
  .n("ACMClient", "RenewCertificateCommand")
971
- .sc(RenewCertificate)
971
+ .sc(RenewCertificate$)
972
972
  .build() {
973
973
  }
974
974
 
@@ -980,7 +980,7 @@ class RequestCertificateCommand extends smithyClient.Command
980
980
  })
981
981
  .s("CertificateManager", "RequestCertificate", {})
982
982
  .n("ACMClient", "RequestCertificateCommand")
983
- .sc(RequestCertificate)
983
+ .sc(RequestCertificate$)
984
984
  .build() {
985
985
  }
986
986
 
@@ -992,7 +992,7 @@ class ResendValidationEmailCommand extends smithyClient.Command
992
992
  })
993
993
  .s("CertificateManager", "ResendValidationEmail", {})
994
994
  .n("ACMClient", "ResendValidationEmailCommand")
995
- .sc(ResendValidationEmail)
995
+ .sc(ResendValidationEmail$)
996
996
  .build() {
997
997
  }
998
998
 
@@ -1004,7 +1004,7 @@ class RevokeCertificateCommand extends smithyClient.Command
1004
1004
  })
1005
1005
  .s("CertificateManager", "RevokeCertificate", {})
1006
1006
  .n("ACMClient", "RevokeCertificateCommand")
1007
- .sc(RevokeCertificate)
1007
+ .sc(RevokeCertificate$)
1008
1008
  .build() {
1009
1009
  }
1010
1010
 
@@ -1016,7 +1016,7 @@ class UpdateCertificateOptionsCommand extends smithyClient.Command
1016
1016
  })
1017
1017
  .s("CertificateManager", "UpdateCertificateOptions", {})
1018
1018
  .n("ACMClient", "UpdateCertificateOptionsCommand")
1019
- .sc(UpdateCertificateOptions)
1019
+ .sc(UpdateCertificateOptions$)
1020
1020
  .build() {
1021
1021
  }
1022
1022
 
@@ -1243,55 +1243,125 @@ Object.defineProperty(exports, "__Client", {
1243
1243
  });
1244
1244
  exports.ACM = ACM;
1245
1245
  exports.ACMClient = ACMClient;
1246
- exports.ACMServiceException = ACMServiceException$1;
1247
- exports.AccessDeniedException = AccessDeniedException$1;
1246
+ exports.ACMServiceException = ACMServiceException;
1247
+ exports.ACMServiceException$ = ACMServiceException$;
1248
+ exports.AccessDeniedException = AccessDeniedException;
1249
+ exports.AccessDeniedException$ = AccessDeniedException$;
1250
+ exports.AddTagsToCertificate$ = AddTagsToCertificate$;
1248
1251
  exports.AddTagsToCertificateCommand = AddTagsToCertificateCommand;
1252
+ exports.AddTagsToCertificateRequest$ = AddTagsToCertificateRequest$;
1253
+ exports.CertificateDetail$ = CertificateDetail$;
1249
1254
  exports.CertificateExport = CertificateExport;
1250
1255
  exports.CertificateManagedBy = CertificateManagedBy;
1256
+ exports.CertificateOptions$ = CertificateOptions$;
1251
1257
  exports.CertificateStatus = CertificateStatus;
1258
+ exports.CertificateSummary$ = CertificateSummary$;
1252
1259
  exports.CertificateTransparencyLoggingPreference = CertificateTransparencyLoggingPreference;
1253
1260
  exports.CertificateType = CertificateType;
1254
- exports.ConflictException = ConflictException$1;
1261
+ exports.ConflictException = ConflictException;
1262
+ exports.ConflictException$ = ConflictException$;
1263
+ exports.DeleteCertificate$ = DeleteCertificate$;
1255
1264
  exports.DeleteCertificateCommand = DeleteCertificateCommand;
1265
+ exports.DeleteCertificateRequest$ = DeleteCertificateRequest$;
1266
+ exports.DescribeCertificate$ = DescribeCertificate$;
1256
1267
  exports.DescribeCertificateCommand = DescribeCertificateCommand;
1268
+ exports.DescribeCertificateRequest$ = DescribeCertificateRequest$;
1269
+ exports.DescribeCertificateResponse$ = DescribeCertificateResponse$;
1257
1270
  exports.DomainStatus = DomainStatus;
1271
+ exports.DomainValidation$ = DomainValidation$;
1272
+ exports.DomainValidationOption$ = DomainValidationOption$;
1273
+ exports.ExpiryEventsConfiguration$ = ExpiryEventsConfiguration$;
1274
+ exports.ExportCertificate$ = ExportCertificate$;
1258
1275
  exports.ExportCertificateCommand = ExportCertificateCommand;
1276
+ exports.ExportCertificateRequest$ = ExportCertificateRequest$;
1277
+ exports.ExportCertificateResponse$ = ExportCertificateResponse$;
1278
+ exports.ExtendedKeyUsage$ = ExtendedKeyUsage$;
1259
1279
  exports.ExtendedKeyUsageName = ExtendedKeyUsageName;
1260
1280
  exports.FailureReason = FailureReason;
1281
+ exports.Filters$ = Filters$;
1282
+ exports.GetAccountConfiguration$ = GetAccountConfiguration$;
1261
1283
  exports.GetAccountConfigurationCommand = GetAccountConfigurationCommand;
1284
+ exports.GetAccountConfigurationResponse$ = GetAccountConfigurationResponse$;
1285
+ exports.GetCertificate$ = GetCertificate$;
1262
1286
  exports.GetCertificateCommand = GetCertificateCommand;
1287
+ exports.GetCertificateRequest$ = GetCertificateRequest$;
1288
+ exports.GetCertificateResponse$ = GetCertificateResponse$;
1289
+ exports.HttpRedirect$ = HttpRedirect$;
1290
+ exports.ImportCertificate$ = ImportCertificate$;
1263
1291
  exports.ImportCertificateCommand = ImportCertificateCommand;
1264
- exports.InvalidArgsException = InvalidArgsException$1;
1265
- exports.InvalidArnException = InvalidArnException$1;
1266
- exports.InvalidDomainValidationOptionsException = InvalidDomainValidationOptionsException$1;
1267
- exports.InvalidParameterException = InvalidParameterException$1;
1268
- exports.InvalidStateException = InvalidStateException$1;
1269
- exports.InvalidTagException = InvalidTagException$1;
1292
+ exports.ImportCertificateRequest$ = ImportCertificateRequest$;
1293
+ exports.ImportCertificateResponse$ = ImportCertificateResponse$;
1294
+ exports.InvalidArgsException = InvalidArgsException;
1295
+ exports.InvalidArgsException$ = InvalidArgsException$;
1296
+ exports.InvalidArnException = InvalidArnException;
1297
+ exports.InvalidArnException$ = InvalidArnException$;
1298
+ exports.InvalidDomainValidationOptionsException = InvalidDomainValidationOptionsException;
1299
+ exports.InvalidDomainValidationOptionsException$ = InvalidDomainValidationOptionsException$;
1300
+ exports.InvalidParameterException = InvalidParameterException;
1301
+ exports.InvalidParameterException$ = InvalidParameterException$;
1302
+ exports.InvalidStateException = InvalidStateException;
1303
+ exports.InvalidStateException$ = InvalidStateException$;
1304
+ exports.InvalidTagException = InvalidTagException;
1305
+ exports.InvalidTagException$ = InvalidTagException$;
1270
1306
  exports.KeyAlgorithm = KeyAlgorithm;
1307
+ exports.KeyUsage$ = KeyUsage$;
1271
1308
  exports.KeyUsageName = KeyUsageName;
1272
- exports.LimitExceededException = LimitExceededException$1;
1309
+ exports.LimitExceededException = LimitExceededException;
1310
+ exports.LimitExceededException$ = LimitExceededException$;
1311
+ exports.ListCertificates$ = ListCertificates$;
1273
1312
  exports.ListCertificatesCommand = ListCertificatesCommand;
1313
+ exports.ListCertificatesRequest$ = ListCertificatesRequest$;
1314
+ exports.ListCertificatesResponse$ = ListCertificatesResponse$;
1315
+ exports.ListTagsForCertificate$ = ListTagsForCertificate$;
1274
1316
  exports.ListTagsForCertificateCommand = ListTagsForCertificateCommand;
1317
+ exports.ListTagsForCertificateRequest$ = ListTagsForCertificateRequest$;
1318
+ exports.ListTagsForCertificateResponse$ = ListTagsForCertificateResponse$;
1319
+ exports.PutAccountConfiguration$ = PutAccountConfiguration$;
1275
1320
  exports.PutAccountConfigurationCommand = PutAccountConfigurationCommand;
1321
+ exports.PutAccountConfigurationRequest$ = PutAccountConfigurationRequest$;
1276
1322
  exports.RecordType = RecordType;
1323
+ exports.RemoveTagsFromCertificate$ = RemoveTagsFromCertificate$;
1277
1324
  exports.RemoveTagsFromCertificateCommand = RemoveTagsFromCertificateCommand;
1325
+ exports.RemoveTagsFromCertificateRequest$ = RemoveTagsFromCertificateRequest$;
1326
+ exports.RenewCertificate$ = RenewCertificate$;
1278
1327
  exports.RenewCertificateCommand = RenewCertificateCommand;
1328
+ exports.RenewCertificateRequest$ = RenewCertificateRequest$;
1279
1329
  exports.RenewalEligibility = RenewalEligibility;
1280
1330
  exports.RenewalStatus = RenewalStatus;
1331
+ exports.RenewalSummary$ = RenewalSummary$;
1332
+ exports.RequestCertificate$ = RequestCertificate$;
1281
1333
  exports.RequestCertificateCommand = RequestCertificateCommand;
1282
- exports.RequestInProgressException = RequestInProgressException$1;
1334
+ exports.RequestCertificateRequest$ = RequestCertificateRequest$;
1335
+ exports.RequestCertificateResponse$ = RequestCertificateResponse$;
1336
+ exports.RequestInProgressException = RequestInProgressException;
1337
+ exports.RequestInProgressException$ = RequestInProgressException$;
1338
+ exports.ResendValidationEmail$ = ResendValidationEmail$;
1283
1339
  exports.ResendValidationEmailCommand = ResendValidationEmailCommand;
1284
- exports.ResourceInUseException = ResourceInUseException$1;
1285
- exports.ResourceNotFoundException = ResourceNotFoundException$1;
1340
+ exports.ResendValidationEmailRequest$ = ResendValidationEmailRequest$;
1341
+ exports.ResourceInUseException = ResourceInUseException;
1342
+ exports.ResourceInUseException$ = ResourceInUseException$;
1343
+ exports.ResourceNotFoundException = ResourceNotFoundException;
1344
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
1345
+ exports.ResourceRecord$ = ResourceRecord$;
1286
1346
  exports.RevocationReason = RevocationReason;
1347
+ exports.RevokeCertificate$ = RevokeCertificate$;
1287
1348
  exports.RevokeCertificateCommand = RevokeCertificateCommand;
1349
+ exports.RevokeCertificateRequest$ = RevokeCertificateRequest$;
1350
+ exports.RevokeCertificateResponse$ = RevokeCertificateResponse$;
1288
1351
  exports.SortBy = SortBy;
1289
1352
  exports.SortOrder = SortOrder;
1290
- exports.TagPolicyException = TagPolicyException$1;
1291
- exports.ThrottlingException = ThrottlingException$1;
1292
- exports.TooManyTagsException = TooManyTagsException$1;
1353
+ exports.Tag$ = Tag$;
1354
+ exports.TagPolicyException = TagPolicyException;
1355
+ exports.TagPolicyException$ = TagPolicyException$;
1356
+ exports.ThrottlingException = ThrottlingException;
1357
+ exports.ThrottlingException$ = ThrottlingException$;
1358
+ exports.TooManyTagsException = TooManyTagsException;
1359
+ exports.TooManyTagsException$ = TooManyTagsException$;
1360
+ exports.UpdateCertificateOptions$ = UpdateCertificateOptions$;
1293
1361
  exports.UpdateCertificateOptionsCommand = UpdateCertificateOptionsCommand;
1294
- exports.ValidationException = ValidationException$1;
1362
+ exports.UpdateCertificateOptionsRequest$ = UpdateCertificateOptionsRequest$;
1363
+ exports.ValidationException = ValidationException;
1364
+ exports.ValidationException$ = ValidationException$;
1295
1365
  exports.ValidationMethod = ValidationMethod;
1296
1366
  exports.paginateListCertificates = paginateListCertificates;
1297
1367
  exports.waitForCertificateValidated = waitForCertificateValidated;