@aws-sdk/client-acm 3.52.0 → 3.54.1

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.
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { AddTagsToCertificateCommandInput, AddTagsToCertificateCommandOutput } from "./commands/AddTagsToCertificateCommand";
10
10
  import { DeleteCertificateCommandInput, DeleteCertificateCommandOutput } from "./commands/DeleteCertificateCommand";
11
11
  import { DescribeCertificateCommandInput, DescribeCertificateCommandOutput } from "./commands/DescribeCertificateCommand";
@@ -43,7 +43,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
43
43
  * A function that can calculate the length of a request body.
44
44
  * @internal
45
45
  */
46
- bodyLengthChecker?: (body: any) => number | undefined;
46
+ bodyLengthChecker?: __BodyLengthCalculator;
47
47
  /**
48
48
  * A function that converts a stream into an array of bytes.
49
49
  * @internal
@@ -4,3 +4,4 @@ export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
6
  export * from "./waiters";
7
+ export { ACMServiceException } from "./models/ACMServiceException";
@@ -0,0 +1,10 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+ /**
3
+ * Base exception class for all service exceptions from ACM service.
4
+ */
5
+ export declare class ACMServiceException extends __ServiceException {
6
+ /**
7
+ * @internal
8
+ */
9
+ constructor(options: __ServiceExceptionOptions);
10
+ }
@@ -1,12 +1,17 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ACMServiceException as __BaseException } from "./ACMServiceException";
2
3
  /**
3
4
  * <p>You do not have access
4
5
  * required to perform this action.</p>
5
6
  */
6
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
7
- name: "AccessDeniedException";
8
- $fault: "client";
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
9
10
  Message?: string;
11
+ /**
12
+ * @internal
13
+ */
14
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
15
  }
11
16
  /**
12
17
  * <p>A key-value pair that identifies or specifies metadata about an ACM resource.</p>
@@ -53,61 +58,82 @@ export declare namespace AddTagsToCertificateRequest {
53
58
  /**
54
59
  * <p>The requested Amazon Resource Name (ARN) does not refer to an existing resource.</p>
55
60
  */
56
- export interface InvalidArnException extends __SmithyException, $MetadataBearer {
57
- name: "InvalidArnException";
58
- $fault: "client";
59
- message?: string;
61
+ export declare class InvalidArnException extends __BaseException {
62
+ readonly name: "InvalidArnException";
63
+ readonly $fault: "client";
64
+ /**
65
+ * @internal
66
+ */
67
+ constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
60
68
  }
61
69
  /**
62
70
  * <p>An input parameter was invalid.</p>
63
71
  */
64
- export interface InvalidParameterException extends __SmithyException, $MetadataBearer {
65
- name: "InvalidParameterException";
66
- $fault: "client";
67
- message?: string;
72
+ export declare class InvalidParameterException extends __BaseException {
73
+ readonly name: "InvalidParameterException";
74
+ readonly $fault: "client";
75
+ /**
76
+ * @internal
77
+ */
78
+ constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
68
79
  }
69
80
  /**
70
81
  * <p>One or both of the values that make up the key-value pair is not valid. For example, you
71
82
  * cannot specify a tag value that begins with <code>aws:</code>.</p>
72
83
  */
73
- export interface InvalidTagException extends __SmithyException, $MetadataBearer {
74
- name: "InvalidTagException";
75
- $fault: "client";
76
- message?: string;
84
+ export declare class InvalidTagException extends __BaseException {
85
+ readonly name: "InvalidTagException";
86
+ readonly $fault: "client";
87
+ /**
88
+ * @internal
89
+ */
90
+ constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
77
91
  }
78
92
  /**
79
93
  * <p>The specified certificate cannot be found in the caller's account or the caller's account
80
94
  * cannot be found.</p>
81
95
  */
82
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
83
- name: "ResourceNotFoundException";
84
- $fault: "client";
85
- message?: string;
96
+ export declare class ResourceNotFoundException extends __BaseException {
97
+ readonly name: "ResourceNotFoundException";
98
+ readonly $fault: "client";
99
+ /**
100
+ * @internal
101
+ */
102
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
86
103
  }
87
104
  /**
88
105
  * <p>A specified tag did not comply with an existing tag policy and was rejected.</p>
89
106
  */
90
- export interface TagPolicyException extends __SmithyException, $MetadataBearer {
91
- name: "TagPolicyException";
92
- $fault: "client";
93
- message?: string;
107
+ export declare class TagPolicyException extends __BaseException {
108
+ readonly name: "TagPolicyException";
109
+ readonly $fault: "client";
110
+ /**
111
+ * @internal
112
+ */
113
+ constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
94
114
  }
95
115
  /**
96
116
  * <p>The request was denied
97
117
  * because it exceeded a quota.</p>
98
118
  */
99
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
100
- name: "ThrottlingException";
101
- $fault: "client";
102
- message?: string;
119
+ export declare class ThrottlingException extends __BaseException {
120
+ readonly name: "ThrottlingException";
121
+ readonly $fault: "client";
122
+ /**
123
+ * @internal
124
+ */
125
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
103
126
  }
104
127
  /**
105
128
  * <p>The request contains too many tags. Try the request again with fewer tags.</p>
106
129
  */
107
- export interface TooManyTagsException extends __SmithyException, $MetadataBearer {
108
- name: "TooManyTagsException";
109
- $fault: "client";
110
- message?: string;
130
+ export declare class TooManyTagsException extends __BaseException {
131
+ readonly name: "TooManyTagsException";
132
+ readonly $fault: "client";
133
+ /**
134
+ * @internal
135
+ */
136
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
111
137
  }
112
138
  export declare enum RecordType {
113
139
  CNAME = "CNAME"
@@ -612,10 +638,13 @@ export declare namespace DeleteCertificateRequest {
612
638
  * <p>The certificate is in use by another Amazon Web Services service in the caller's account. Remove the
613
639
  * association and try again.</p>
614
640
  */
615
- export interface ResourceInUseException extends __SmithyException, $MetadataBearer {
616
- name: "ResourceInUseException";
617
- $fault: "client";
618
- message?: string;
641
+ export declare class ResourceInUseException extends __BaseException {
642
+ readonly name: "ResourceInUseException";
643
+ readonly $fault: "client";
644
+ /**
645
+ * @internal
646
+ */
647
+ constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
619
648
  }
620
649
  export interface DescribeCertificateRequest {
621
650
  /**
@@ -696,10 +725,13 @@ export declare namespace ExportCertificateResponse {
696
725
  * <p>The certificate request is in process and the certificate in your account has not yet been
697
726
  * issued.</p>
698
727
  */
699
- export interface RequestInProgressException extends __SmithyException, $MetadataBearer {
700
- name: "RequestInProgressException";
701
- $fault: "client";
702
- message?: string;
728
+ export declare class RequestInProgressException extends __BaseException {
729
+ readonly name: "RequestInProgressException";
730
+ readonly $fault: "client";
731
+ /**
732
+ * @internal
733
+ */
734
+ constructor(opts: __ExceptionOptionType<RequestInProgressException, __BaseException>);
703
735
  }
704
736
  /**
705
737
  * <p>Object containing
@@ -814,18 +846,24 @@ export declare namespace ImportCertificateResponse {
814
846
  /**
815
847
  * <p>An ACM quota has been exceeded.</p>
816
848
  */
817
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
818
- name: "LimitExceededException";
819
- $fault: "client";
820
- message?: string;
849
+ export declare class LimitExceededException extends __BaseException {
850
+ readonly name: "LimitExceededException";
851
+ readonly $fault: "client";
852
+ /**
853
+ * @internal
854
+ */
855
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
821
856
  }
822
857
  /**
823
858
  * <p>One or more of of request parameters specified is not valid.</p>
824
859
  */
825
- export interface InvalidArgsException extends __SmithyException, $MetadataBearer {
826
- name: "InvalidArgsException";
827
- $fault: "client";
828
- message?: string;
860
+ export declare class InvalidArgsException extends __BaseException {
861
+ readonly name: "InvalidArgsException";
862
+ readonly $fault: "client";
863
+ /**
864
+ * @internal
865
+ */
866
+ constructor(opts: __ExceptionOptionType<InvalidArgsException, __BaseException>);
829
867
  }
830
868
  /**
831
869
  * <p>This structure can be used in the <a>ListCertificates</a> action to filter the
@@ -964,10 +1002,13 @@ export declare namespace ListTagsForCertificateResponse {
964
1002
  * update a resource or configuration that is already being created or updated. Wait for the
965
1003
  * previous operation to finish and try again.</p>
966
1004
  */
967
- export interface ConflictException extends __SmithyException, $MetadataBearer {
968
- name: "ConflictException";
969
- $fault: "client";
970
- message?: string;
1005
+ export declare class ConflictException extends __BaseException {
1006
+ readonly name: "ConflictException";
1007
+ readonly $fault: "client";
1008
+ /**
1009
+ * @internal
1010
+ */
1011
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
971
1012
  }
972
1013
  export interface PutAccountConfigurationRequest {
973
1014
  /**
@@ -995,10 +1036,13 @@ export declare namespace PutAccountConfigurationRequest {
995
1036
  * <p>The supplied input
996
1037
  * failed to satisfy constraints of an Amazon Web Services service.</p>
997
1038
  */
998
- export interface ValidationException extends __SmithyException, $MetadataBearer {
999
- name: "ValidationException";
1000
- $fault: "client";
1001
- message?: string;
1039
+ export declare class ValidationException extends __BaseException {
1040
+ readonly name: "ValidationException";
1041
+ readonly $fault: "client";
1042
+ /**
1043
+ * @internal
1044
+ */
1045
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
1002
1046
  }
1003
1047
  export interface RemoveTagsFromCertificateRequest {
1004
1048
  /**
@@ -1044,10 +1088,13 @@ export declare namespace RenewCertificateRequest {
1044
1088
  * <p>One or more values in the <a>DomainValidationOption</a> structure is
1045
1089
  * incorrect.</p>
1046
1090
  */
1047
- export interface InvalidDomainValidationOptionsException extends __SmithyException, $MetadataBearer {
1048
- name: "InvalidDomainValidationOptionsException";
1049
- $fault: "client";
1050
- message?: string;
1091
+ export declare class InvalidDomainValidationOptionsException extends __BaseException {
1092
+ readonly name: "InvalidDomainValidationOptionsException";
1093
+ readonly $fault: "client";
1094
+ /**
1095
+ * @internal
1096
+ */
1097
+ constructor(opts: __ExceptionOptionType<InvalidDomainValidationOptionsException, __BaseException>);
1051
1098
  }
1052
1099
  /**
1053
1100
  * <p>Contains information about the domain names that you want ACM to use to send you emails
@@ -1201,10 +1248,13 @@ export declare namespace RequestCertificateResponse {
1201
1248
  /**
1202
1249
  * <p>Processing has reached an invalid state.</p>
1203
1250
  */
1204
- export interface InvalidStateException extends __SmithyException, $MetadataBearer {
1205
- name: "InvalidStateException";
1206
- $fault: "client";
1207
- message?: string;
1251
+ export declare class InvalidStateException extends __BaseException {
1252
+ readonly name: "InvalidStateException";
1253
+ readonly $fault: "client";
1254
+ /**
1255
+ * @internal
1256
+ */
1257
+ constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
1208
1258
  }
1209
1259
  export interface ResendValidationEmailRequest {
1210
1260
  /**
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
8
8
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
9
  base64Decoder: import("@aws-sdk/types").Decoder;
10
10
  base64Encoder: import("@aws-sdk/types").Encoder;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
13
13
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
14
14
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
8
8
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
9
  apiVersion: string;
10
10
  urlParser: import("@aws-sdk/types").UrlParser;
11
- bodyLengthChecker: (body: any) => number | undefined;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
12
  streamCollector: import("@aws-sdk/types").StreamCollector;
13
13
  base64Decoder: import("@aws-sdk/types").Decoder;
14
14
  base64Encoder: import("@aws-sdk/types").Encoder;
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
5
5
  import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
6
  import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
7
  import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
8
+ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
9
  import { AddTagsToCertificateCommandInput, AddTagsToCertificateCommandOutput } from "./commands/AddTagsToCertificateCommand";
10
10
  import { DeleteCertificateCommandInput, DeleteCertificateCommandOutput } from "./commands/DeleteCertificateCommand";
11
11
  import { DescribeCertificateCommandInput, DescribeCertificateCommandOutput } from "./commands/DescribeCertificateCommand";
@@ -31,7 +31,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
31
31
 
32
32
  urlParser?: __UrlParser;
33
33
 
34
- bodyLengthChecker?: (body: any) => number | undefined;
34
+ bodyLengthChecker?: __BodyLengthCalculator;
35
35
 
36
36
  streamCollector?: __StreamCollector;
37
37
 
@@ -4,3 +4,4 @@ export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
6
  export * from "./waiters";
7
+ export { ACMServiceException } from "./models/ACMServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class ACMServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -1,9 +1,12 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { ACMServiceException as __BaseException } from "./ACMServiceException";
2
3
 
3
- export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
4
- name: "AccessDeniedException";
5
- $fault: "client";
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
6
7
  Message?: string;
8
+
9
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
7
10
  }
8
11
 
9
12
  export interface Tag {
@@ -27,46 +30,53 @@ export declare namespace AddTagsToCertificateRequest {
27
30
  const filterSensitiveLog: (obj: AddTagsToCertificateRequest) => any;
28
31
  }
29
32
 
30
- export interface InvalidArnException extends __SmithyException, $MetadataBearer {
31
- name: "InvalidArnException";
32
- $fault: "client";
33
- message?: string;
33
+ export declare class InvalidArnException extends __BaseException {
34
+ readonly name: "InvalidArnException";
35
+ readonly $fault: "client";
36
+
37
+ constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
34
38
  }
35
39
 
36
- export interface InvalidParameterException extends __SmithyException, $MetadataBearer {
37
- name: "InvalidParameterException";
38
- $fault: "client";
39
- message?: string;
40
+ export declare class InvalidParameterException extends __BaseException {
41
+ readonly name: "InvalidParameterException";
42
+ readonly $fault: "client";
43
+
44
+ constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
40
45
  }
41
46
 
42
- export interface InvalidTagException extends __SmithyException, $MetadataBearer {
43
- name: "InvalidTagException";
44
- $fault: "client";
45
- message?: string;
47
+ export declare class InvalidTagException extends __BaseException {
48
+ readonly name: "InvalidTagException";
49
+ readonly $fault: "client";
50
+
51
+ constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
46
52
  }
47
53
 
48
- export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
49
- name: "ResourceNotFoundException";
50
- $fault: "client";
51
- message?: string;
54
+ export declare class ResourceNotFoundException extends __BaseException {
55
+ readonly name: "ResourceNotFoundException";
56
+ readonly $fault: "client";
57
+
58
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
52
59
  }
53
60
 
54
- export interface TagPolicyException extends __SmithyException, $MetadataBearer {
55
- name: "TagPolicyException";
56
- $fault: "client";
57
- message?: string;
61
+ export declare class TagPolicyException extends __BaseException {
62
+ readonly name: "TagPolicyException";
63
+ readonly $fault: "client";
64
+
65
+ constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
58
66
  }
59
67
 
60
- export interface ThrottlingException extends __SmithyException, $MetadataBearer {
61
- name: "ThrottlingException";
62
- $fault: "client";
63
- message?: string;
68
+ export declare class ThrottlingException extends __BaseException {
69
+ readonly name: "ThrottlingException";
70
+ readonly $fault: "client";
71
+
72
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
64
73
  }
65
74
 
66
- export interface TooManyTagsException extends __SmithyException, $MetadataBearer {
67
- name: "TooManyTagsException";
68
- $fault: "client";
69
- message?: string;
75
+ export declare class TooManyTagsException extends __BaseException {
76
+ readonly name: "TooManyTagsException";
77
+ readonly $fault: "client";
78
+
79
+ constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
70
80
  }
71
81
  export declare enum RecordType {
72
82
  CNAME = "CNAME"
@@ -319,10 +329,11 @@ export declare namespace DeleteCertificateRequest {
319
329
  const filterSensitiveLog: (obj: DeleteCertificateRequest) => any;
320
330
  }
321
331
 
322
- export interface ResourceInUseException extends __SmithyException, $MetadataBearer {
323
- name: "ResourceInUseException";
324
- $fault: "client";
325
- message?: string;
332
+ export declare class ResourceInUseException extends __BaseException {
333
+ readonly name: "ResourceInUseException";
334
+ readonly $fault: "client";
335
+
336
+ constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
326
337
  }
327
338
  export interface DescribeCertificateRequest {
328
339
 
@@ -363,10 +374,11 @@ export declare namespace ExportCertificateResponse {
363
374
  const filterSensitiveLog: (obj: ExportCertificateResponse) => any;
364
375
  }
365
376
 
366
- export interface RequestInProgressException extends __SmithyException, $MetadataBearer {
367
- name: "RequestInProgressException";
368
- $fault: "client";
369
- message?: string;
377
+ export declare class RequestInProgressException extends __BaseException {
378
+ readonly name: "RequestInProgressException";
379
+ readonly $fault: "client";
380
+
381
+ constructor(opts: __ExceptionOptionType<RequestInProgressException, __BaseException>);
370
382
  }
371
383
 
372
384
  export interface ExpiryEventsConfiguration {
@@ -428,16 +440,18 @@ export declare namespace ImportCertificateResponse {
428
440
  const filterSensitiveLog: (obj: ImportCertificateResponse) => any;
429
441
  }
430
442
 
431
- export interface LimitExceededException extends __SmithyException, $MetadataBearer {
432
- name: "LimitExceededException";
433
- $fault: "client";
434
- message?: string;
443
+ export declare class LimitExceededException extends __BaseException {
444
+ readonly name: "LimitExceededException";
445
+ readonly $fault: "client";
446
+
447
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
435
448
  }
436
449
 
437
- export interface InvalidArgsException extends __SmithyException, $MetadataBearer {
438
- name: "InvalidArgsException";
439
- $fault: "client";
440
- message?: string;
450
+ export declare class InvalidArgsException extends __BaseException {
451
+ readonly name: "InvalidArgsException";
452
+ readonly $fault: "client";
453
+
454
+ constructor(opts: __ExceptionOptionType<InvalidArgsException, __BaseException>);
441
455
  }
442
456
 
443
457
  export interface Filters {
@@ -504,10 +518,11 @@ export declare namespace ListTagsForCertificateResponse {
504
518
  const filterSensitiveLog: (obj: ListTagsForCertificateResponse) => any;
505
519
  }
506
520
 
507
- export interface ConflictException extends __SmithyException, $MetadataBearer {
508
- name: "ConflictException";
509
- $fault: "client";
510
- message?: string;
521
+ export declare class ConflictException extends __BaseException {
522
+ readonly name: "ConflictException";
523
+ readonly $fault: "client";
524
+
525
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
511
526
  }
512
527
  export interface PutAccountConfigurationRequest {
513
528
 
@@ -520,10 +535,11 @@ export declare namespace PutAccountConfigurationRequest {
520
535
  const filterSensitiveLog: (obj: PutAccountConfigurationRequest) => any;
521
536
  }
522
537
 
523
- export interface ValidationException extends __SmithyException, $MetadataBearer {
524
- name: "ValidationException";
525
- $fault: "client";
526
- message?: string;
538
+ export declare class ValidationException extends __BaseException {
539
+ readonly name: "ValidationException";
540
+ readonly $fault: "client";
541
+
542
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
527
543
  }
528
544
  export interface RemoveTagsFromCertificateRequest {
529
545
 
@@ -544,10 +560,11 @@ export declare namespace RenewCertificateRequest {
544
560
  const filterSensitiveLog: (obj: RenewCertificateRequest) => any;
545
561
  }
546
562
 
547
- export interface InvalidDomainValidationOptionsException extends __SmithyException, $MetadataBearer {
548
- name: "InvalidDomainValidationOptionsException";
549
- $fault: "client";
550
- message?: string;
563
+ export declare class InvalidDomainValidationOptionsException extends __BaseException {
564
+ readonly name: "InvalidDomainValidationOptionsException";
565
+ readonly $fault: "client";
566
+
567
+ constructor(opts: __ExceptionOptionType<InvalidDomainValidationOptionsException, __BaseException>);
551
568
  }
552
569
 
553
570
  export interface DomainValidationOption {
@@ -591,10 +608,11 @@ export declare namespace RequestCertificateResponse {
591
608
  const filterSensitiveLog: (obj: RequestCertificateResponse) => any;
592
609
  }
593
610
 
594
- export interface InvalidStateException extends __SmithyException, $MetadataBearer {
595
- name: "InvalidStateException";
596
- $fault: "client";
597
- message?: string;
611
+ export declare class InvalidStateException extends __BaseException {
612
+ readonly name: "InvalidStateException";
613
+ readonly $fault: "client";
614
+
615
+ constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
598
616
  }
599
617
  export interface ResendValidationEmailRequest {
600
618
 
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
6
6
  defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
7
  base64Decoder: import("@aws-sdk/types").Decoder;
8
8
  base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
11
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
12
  maxAttempts: number | import("@aws-sdk/types").Provider<number>;
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: ACMClientConfig) => {
6
6
  requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
7
  apiVersion: string;
8
8
  urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: (body: any) => number | undefined;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
10
  streamCollector: import("@aws-sdk/types").StreamCollector;
11
11
  base64Decoder: import("@aws-sdk/types").Decoder;
12
12
  base64Encoder: import("@aws-sdk/types").Encoder;