@aws-sdk/client-mailmanager 3.934.0 → 3.935.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.
- package/dist-cjs/index.js +220 -219
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +219 -0
- package/dist-es/models/errors.js +85 -0
- package/dist-es/models/models_0.js +1 -304
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +563 -0
- package/dist-types/models/errors.d.ts +80 -0
- package/dist-types/models/models_0.d.ts +1 -643
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +298 -0
- package/dist-types/ts3.4/models/errors.d.ts +48 -0
- package/dist-types/ts3.4/models/models_0.d.ts +45 -346
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { MailManagerExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { MailManagerServiceException } from "./models/MailManagerServiceException";
|
|
@@ -0,0 +1,298 @@
|
|
|
1
|
+
export declare const AcceptAction: {
|
|
2
|
+
readonly ALLOW: "ALLOW";
|
|
3
|
+
readonly DENY: "DENY";
|
|
4
|
+
};
|
|
5
|
+
export type AcceptAction = (typeof AcceptAction)[keyof typeof AcceptAction];
|
|
6
|
+
export declare const ActionFailurePolicy: {
|
|
7
|
+
readonly CONTINUE: "CONTINUE";
|
|
8
|
+
readonly DROP: "DROP";
|
|
9
|
+
};
|
|
10
|
+
export type ActionFailurePolicy =
|
|
11
|
+
(typeof ActionFailurePolicy)[keyof typeof ActionFailurePolicy];
|
|
12
|
+
export declare const ArchiveState: {
|
|
13
|
+
readonly ACTIVE: "ACTIVE";
|
|
14
|
+
readonly PENDING_DELETION: "PENDING_DELETION";
|
|
15
|
+
};
|
|
16
|
+
export type ArchiveState = (typeof ArchiveState)[keyof typeof ArchiveState];
|
|
17
|
+
export declare const ArchiveBooleanEmailAttribute: {
|
|
18
|
+
readonly HAS_ATTACHMENTS: "HAS_ATTACHMENTS";
|
|
19
|
+
};
|
|
20
|
+
export type ArchiveBooleanEmailAttribute =
|
|
21
|
+
(typeof ArchiveBooleanEmailAttribute)[keyof typeof ArchiveBooleanEmailAttribute];
|
|
22
|
+
export declare const ArchiveBooleanOperator: {
|
|
23
|
+
readonly IS_FALSE: "IS_FALSE";
|
|
24
|
+
readonly IS_TRUE: "IS_TRUE";
|
|
25
|
+
};
|
|
26
|
+
export type ArchiveBooleanOperator =
|
|
27
|
+
(typeof ArchiveBooleanOperator)[keyof typeof ArchiveBooleanOperator];
|
|
28
|
+
export declare const ArchiveStringEmailAttribute: {
|
|
29
|
+
readonly CC: "CC";
|
|
30
|
+
readonly ENVELOPE_FROM: "ENVELOPE_FROM";
|
|
31
|
+
readonly ENVELOPE_TO: "ENVELOPE_TO";
|
|
32
|
+
readonly FROM: "FROM";
|
|
33
|
+
readonly SUBJECT: "SUBJECT";
|
|
34
|
+
readonly TO: "TO";
|
|
35
|
+
};
|
|
36
|
+
export type ArchiveStringEmailAttribute =
|
|
37
|
+
(typeof ArchiveStringEmailAttribute)[keyof typeof ArchiveStringEmailAttribute];
|
|
38
|
+
export declare const ArchiveStringOperator: {
|
|
39
|
+
readonly CONTAINS: "CONTAINS";
|
|
40
|
+
};
|
|
41
|
+
export type ArchiveStringOperator =
|
|
42
|
+
(typeof ArchiveStringOperator)[keyof typeof ArchiveStringOperator];
|
|
43
|
+
export declare const RetentionPeriod: {
|
|
44
|
+
readonly EIGHTEEN_MONTHS: "EIGHTEEN_MONTHS";
|
|
45
|
+
readonly EIGHT_YEARS: "EIGHT_YEARS";
|
|
46
|
+
readonly FIVE_YEARS: "FIVE_YEARS";
|
|
47
|
+
readonly FOUR_YEARS: "FOUR_YEARS";
|
|
48
|
+
readonly NINE_MONTHS: "NINE_MONTHS";
|
|
49
|
+
readonly NINE_YEARS: "NINE_YEARS";
|
|
50
|
+
readonly ONE_YEAR: "ONE_YEAR";
|
|
51
|
+
readonly PERMANENT: "PERMANENT";
|
|
52
|
+
readonly SEVEN_YEARS: "SEVEN_YEARS";
|
|
53
|
+
readonly SIX_MONTHS: "SIX_MONTHS";
|
|
54
|
+
readonly SIX_YEARS: "SIX_YEARS";
|
|
55
|
+
readonly TEN_YEARS: "TEN_YEARS";
|
|
56
|
+
readonly THIRTY_MONTHS: "THIRTY_MONTHS";
|
|
57
|
+
readonly THREE_MONTHS: "THREE_MONTHS";
|
|
58
|
+
readonly THREE_YEARS: "THREE_YEARS";
|
|
59
|
+
readonly TWO_YEARS: "TWO_YEARS";
|
|
60
|
+
};
|
|
61
|
+
export type RetentionPeriod =
|
|
62
|
+
(typeof RetentionPeriod)[keyof typeof RetentionPeriod];
|
|
63
|
+
export declare const ImportDataType: {
|
|
64
|
+
readonly CSV: "CSV";
|
|
65
|
+
readonly JSON: "JSON";
|
|
66
|
+
};
|
|
67
|
+
export type ImportDataType =
|
|
68
|
+
(typeof ImportDataType)[keyof typeof ImportDataType];
|
|
69
|
+
export declare const IpType: {
|
|
70
|
+
readonly DUAL_STACK: "DUAL_STACK";
|
|
71
|
+
readonly IPV4: "IPV4";
|
|
72
|
+
};
|
|
73
|
+
export type IpType = (typeof IpType)[keyof typeof IpType];
|
|
74
|
+
export declare const IngressPointType: {
|
|
75
|
+
readonly AUTH: "AUTH";
|
|
76
|
+
readonly OPEN: "OPEN";
|
|
77
|
+
};
|
|
78
|
+
export type IngressPointType =
|
|
79
|
+
(typeof IngressPointType)[keyof typeof IngressPointType];
|
|
80
|
+
export declare const SnsNotificationEncoding: {
|
|
81
|
+
readonly BASE64: "BASE64";
|
|
82
|
+
readonly UTF_8: "UTF-8";
|
|
83
|
+
};
|
|
84
|
+
export type SnsNotificationEncoding =
|
|
85
|
+
(typeof SnsNotificationEncoding)[keyof typeof SnsNotificationEncoding];
|
|
86
|
+
export declare const SnsNotificationPayloadType: {
|
|
87
|
+
readonly CONTENT: "CONTENT";
|
|
88
|
+
readonly HEADERS: "HEADERS";
|
|
89
|
+
};
|
|
90
|
+
export type SnsNotificationPayloadType =
|
|
91
|
+
(typeof SnsNotificationPayloadType)[keyof typeof SnsNotificationPayloadType];
|
|
92
|
+
export declare const MailFrom: {
|
|
93
|
+
readonly PRESERVE: "PRESERVE";
|
|
94
|
+
readonly REPLACE: "REPLACE";
|
|
95
|
+
};
|
|
96
|
+
export type MailFrom = (typeof MailFrom)[keyof typeof MailFrom];
|
|
97
|
+
export declare const RuleBooleanEmailAttribute: {
|
|
98
|
+
readonly READ_RECEIPT_REQUESTED: "READ_RECEIPT_REQUESTED";
|
|
99
|
+
readonly TLS: "TLS";
|
|
100
|
+
readonly TLS_WRAPPED: "TLS_WRAPPED";
|
|
101
|
+
};
|
|
102
|
+
export type RuleBooleanEmailAttribute =
|
|
103
|
+
(typeof RuleBooleanEmailAttribute)[keyof typeof RuleBooleanEmailAttribute];
|
|
104
|
+
export declare const RuleAddressListEmailAttribute: {
|
|
105
|
+
readonly CC: "CC";
|
|
106
|
+
readonly FROM: "FROM";
|
|
107
|
+
readonly MAIL_FROM: "MAIL_FROM";
|
|
108
|
+
readonly RECIPIENT: "RECIPIENT";
|
|
109
|
+
readonly SENDER: "SENDER";
|
|
110
|
+
readonly TO: "TO";
|
|
111
|
+
};
|
|
112
|
+
export type RuleAddressListEmailAttribute =
|
|
113
|
+
(typeof RuleAddressListEmailAttribute)[keyof typeof RuleAddressListEmailAttribute];
|
|
114
|
+
export declare const RuleBooleanOperator: {
|
|
115
|
+
readonly IS_FALSE: "IS_FALSE";
|
|
116
|
+
readonly IS_TRUE: "IS_TRUE";
|
|
117
|
+
};
|
|
118
|
+
export type RuleBooleanOperator =
|
|
119
|
+
(typeof RuleBooleanOperator)[keyof typeof RuleBooleanOperator];
|
|
120
|
+
export declare const RuleDmarcOperator: {
|
|
121
|
+
readonly EQUALS: "EQUALS";
|
|
122
|
+
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
123
|
+
};
|
|
124
|
+
export type RuleDmarcOperator =
|
|
125
|
+
(typeof RuleDmarcOperator)[keyof typeof RuleDmarcOperator];
|
|
126
|
+
export declare const RuleDmarcPolicy: {
|
|
127
|
+
readonly NONE: "NONE";
|
|
128
|
+
readonly QUARANTINE: "QUARANTINE";
|
|
129
|
+
readonly REJECT: "REJECT";
|
|
130
|
+
};
|
|
131
|
+
export type RuleDmarcPolicy =
|
|
132
|
+
(typeof RuleDmarcPolicy)[keyof typeof RuleDmarcPolicy];
|
|
133
|
+
export declare const RuleIpEmailAttribute: {
|
|
134
|
+
readonly SOURCE_IP: "SOURCE_IP";
|
|
135
|
+
};
|
|
136
|
+
export type RuleIpEmailAttribute =
|
|
137
|
+
(typeof RuleIpEmailAttribute)[keyof typeof RuleIpEmailAttribute];
|
|
138
|
+
export declare const RuleIpOperator: {
|
|
139
|
+
readonly CIDR_MATCHES: "CIDR_MATCHES";
|
|
140
|
+
readonly NOT_CIDR_MATCHES: "NOT_CIDR_MATCHES";
|
|
141
|
+
};
|
|
142
|
+
export type RuleIpOperator =
|
|
143
|
+
(typeof RuleIpOperator)[keyof typeof RuleIpOperator];
|
|
144
|
+
export declare const RuleNumberEmailAttribute: {
|
|
145
|
+
readonly MESSAGE_SIZE: "MESSAGE_SIZE";
|
|
146
|
+
};
|
|
147
|
+
export type RuleNumberEmailAttribute =
|
|
148
|
+
(typeof RuleNumberEmailAttribute)[keyof typeof RuleNumberEmailAttribute];
|
|
149
|
+
export declare const RuleNumberOperator: {
|
|
150
|
+
readonly EQUALS: "EQUALS";
|
|
151
|
+
readonly GREATER_THAN: "GREATER_THAN";
|
|
152
|
+
readonly GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL";
|
|
153
|
+
readonly LESS_THAN: "LESS_THAN";
|
|
154
|
+
readonly LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL";
|
|
155
|
+
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
156
|
+
};
|
|
157
|
+
export type RuleNumberOperator =
|
|
158
|
+
(typeof RuleNumberOperator)[keyof typeof RuleNumberOperator];
|
|
159
|
+
export declare const RuleStringEmailAttribute: {
|
|
160
|
+
readonly CC: "CC";
|
|
161
|
+
readonly FROM: "FROM";
|
|
162
|
+
readonly HELO: "HELO";
|
|
163
|
+
readonly MAIL_FROM: "MAIL_FROM";
|
|
164
|
+
readonly RECIPIENT: "RECIPIENT";
|
|
165
|
+
readonly SENDER: "SENDER";
|
|
166
|
+
readonly SUBJECT: "SUBJECT";
|
|
167
|
+
readonly TO: "TO";
|
|
168
|
+
};
|
|
169
|
+
export type RuleStringEmailAttribute =
|
|
170
|
+
(typeof RuleStringEmailAttribute)[keyof typeof RuleStringEmailAttribute];
|
|
171
|
+
export declare const RuleStringOperator: {
|
|
172
|
+
readonly CONTAINS: "CONTAINS";
|
|
173
|
+
readonly ENDS_WITH: "ENDS_WITH";
|
|
174
|
+
readonly EQUALS: "EQUALS";
|
|
175
|
+
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
176
|
+
readonly STARTS_WITH: "STARTS_WITH";
|
|
177
|
+
};
|
|
178
|
+
export type RuleStringOperator =
|
|
179
|
+
(typeof RuleStringOperator)[keyof typeof RuleStringOperator];
|
|
180
|
+
export declare const RuleVerdictAttribute: {
|
|
181
|
+
readonly DKIM: "DKIM";
|
|
182
|
+
readonly SPF: "SPF";
|
|
183
|
+
};
|
|
184
|
+
export type RuleVerdictAttribute =
|
|
185
|
+
(typeof RuleVerdictAttribute)[keyof typeof RuleVerdictAttribute];
|
|
186
|
+
export declare const RuleVerdictOperator: {
|
|
187
|
+
readonly EQUALS: "EQUALS";
|
|
188
|
+
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
189
|
+
};
|
|
190
|
+
export type RuleVerdictOperator =
|
|
191
|
+
(typeof RuleVerdictOperator)[keyof typeof RuleVerdictOperator];
|
|
192
|
+
export declare const RuleVerdict: {
|
|
193
|
+
readonly FAIL: "FAIL";
|
|
194
|
+
readonly GRAY: "GRAY";
|
|
195
|
+
readonly PASS: "PASS";
|
|
196
|
+
readonly PROCESSING_FAILED: "PROCESSING_FAILED";
|
|
197
|
+
};
|
|
198
|
+
export type RuleVerdict = (typeof RuleVerdict)[keyof typeof RuleVerdict];
|
|
199
|
+
export declare const IngressAddressListEmailAttribute: {
|
|
200
|
+
readonly RECIPIENT: "RECIPIENT";
|
|
201
|
+
};
|
|
202
|
+
export type IngressAddressListEmailAttribute =
|
|
203
|
+
(typeof IngressAddressListEmailAttribute)[keyof typeof IngressAddressListEmailAttribute];
|
|
204
|
+
export declare const IngressBooleanOperator: {
|
|
205
|
+
readonly IS_FALSE: "IS_FALSE";
|
|
206
|
+
readonly IS_TRUE: "IS_TRUE";
|
|
207
|
+
};
|
|
208
|
+
export type IngressBooleanOperator =
|
|
209
|
+
(typeof IngressBooleanOperator)[keyof typeof IngressBooleanOperator];
|
|
210
|
+
export declare const IngressIpv4Attribute: {
|
|
211
|
+
readonly SENDER_IP: "SENDER_IP";
|
|
212
|
+
};
|
|
213
|
+
export type IngressIpv4Attribute =
|
|
214
|
+
(typeof IngressIpv4Attribute)[keyof typeof IngressIpv4Attribute];
|
|
215
|
+
export declare const IngressIpOperator: {
|
|
216
|
+
readonly CIDR_MATCHES: "CIDR_MATCHES";
|
|
217
|
+
readonly NOT_CIDR_MATCHES: "NOT_CIDR_MATCHES";
|
|
218
|
+
};
|
|
219
|
+
export type IngressIpOperator =
|
|
220
|
+
(typeof IngressIpOperator)[keyof typeof IngressIpOperator];
|
|
221
|
+
export declare const IngressIpv6Attribute: {
|
|
222
|
+
readonly SENDER_IPV6: "SENDER_IPV6";
|
|
223
|
+
};
|
|
224
|
+
export type IngressIpv6Attribute =
|
|
225
|
+
(typeof IngressIpv6Attribute)[keyof typeof IngressIpv6Attribute];
|
|
226
|
+
export declare const IngressStringEmailAttribute: {
|
|
227
|
+
readonly RECIPIENT: "RECIPIENT";
|
|
228
|
+
};
|
|
229
|
+
export type IngressStringEmailAttribute =
|
|
230
|
+
(typeof IngressStringEmailAttribute)[keyof typeof IngressStringEmailAttribute];
|
|
231
|
+
export declare const IngressStringOperator: {
|
|
232
|
+
readonly CONTAINS: "CONTAINS";
|
|
233
|
+
readonly ENDS_WITH: "ENDS_WITH";
|
|
234
|
+
readonly EQUALS: "EQUALS";
|
|
235
|
+
readonly NOT_EQUALS: "NOT_EQUALS";
|
|
236
|
+
readonly STARTS_WITH: "STARTS_WITH";
|
|
237
|
+
};
|
|
238
|
+
export type IngressStringOperator =
|
|
239
|
+
(typeof IngressStringOperator)[keyof typeof IngressStringOperator];
|
|
240
|
+
export declare const IngressTlsAttribute: {
|
|
241
|
+
readonly TLS_PROTOCOL: "TLS_PROTOCOL";
|
|
242
|
+
};
|
|
243
|
+
export type IngressTlsAttribute =
|
|
244
|
+
(typeof IngressTlsAttribute)[keyof typeof IngressTlsAttribute];
|
|
245
|
+
export declare const IngressTlsProtocolOperator: {
|
|
246
|
+
readonly IS: "IS";
|
|
247
|
+
readonly MINIMUM_TLS_VERSION: "MINIMUM_TLS_VERSION";
|
|
248
|
+
};
|
|
249
|
+
export type IngressTlsProtocolOperator =
|
|
250
|
+
(typeof IngressTlsProtocolOperator)[keyof typeof IngressTlsProtocolOperator];
|
|
251
|
+
export declare const IngressTlsProtocolAttribute: {
|
|
252
|
+
readonly TLS1_2: "TLS1_2";
|
|
253
|
+
readonly TLS1_3: "TLS1_3";
|
|
254
|
+
};
|
|
255
|
+
export type IngressTlsProtocolAttribute =
|
|
256
|
+
(typeof IngressTlsProtocolAttribute)[keyof typeof IngressTlsProtocolAttribute];
|
|
257
|
+
export declare const ExportState: {
|
|
258
|
+
readonly CANCELLED: "CANCELLED";
|
|
259
|
+
readonly COMPLETED: "COMPLETED";
|
|
260
|
+
readonly FAILED: "FAILED";
|
|
261
|
+
readonly PREPROCESSING: "PREPROCESSING";
|
|
262
|
+
readonly PROCESSING: "PROCESSING";
|
|
263
|
+
readonly QUEUED: "QUEUED";
|
|
264
|
+
};
|
|
265
|
+
export type ExportState = (typeof ExportState)[keyof typeof ExportState];
|
|
266
|
+
export declare const ImportJobStatus: {
|
|
267
|
+
readonly COMPLETED: "COMPLETED";
|
|
268
|
+
readonly CREATED: "CREATED";
|
|
269
|
+
readonly FAILED: "FAILED";
|
|
270
|
+
readonly PROCESSING: "PROCESSING";
|
|
271
|
+
readonly STOPPED: "STOPPED";
|
|
272
|
+
};
|
|
273
|
+
export type ImportJobStatus =
|
|
274
|
+
(typeof ImportJobStatus)[keyof typeof ImportJobStatus];
|
|
275
|
+
export declare const SearchState: {
|
|
276
|
+
readonly CANCELLED: "CANCELLED";
|
|
277
|
+
readonly COMPLETED: "COMPLETED";
|
|
278
|
+
readonly FAILED: "FAILED";
|
|
279
|
+
readonly QUEUED: "QUEUED";
|
|
280
|
+
readonly RUNNING: "RUNNING";
|
|
281
|
+
};
|
|
282
|
+
export type SearchState = (typeof SearchState)[keyof typeof SearchState];
|
|
283
|
+
export declare const IngressPointStatus: {
|
|
284
|
+
readonly ACTIVE: "ACTIVE";
|
|
285
|
+
readonly CLOSED: "CLOSED";
|
|
286
|
+
readonly DEPROVISIONING: "DEPROVISIONING";
|
|
287
|
+
readonly FAILED: "FAILED";
|
|
288
|
+
readonly PROVISIONING: "PROVISIONING";
|
|
289
|
+
readonly UPDATING: "UPDATING";
|
|
290
|
+
};
|
|
291
|
+
export type IngressPointStatus =
|
|
292
|
+
(typeof IngressPointStatus)[keyof typeof IngressPointStatus];
|
|
293
|
+
export declare const IngressPointStatusToUpdate: {
|
|
294
|
+
readonly ACTIVE: "ACTIVE";
|
|
295
|
+
readonly CLOSED: "CLOSED";
|
|
296
|
+
};
|
|
297
|
+
export type IngressPointStatusToUpdate =
|
|
298
|
+
(typeof IngressPointStatusToUpdate)[keyof typeof IngressPointStatusToUpdate];
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { MailManagerServiceException as __BaseException } from "./MailManagerServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message?: string | undefined;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class ConflictException extends __BaseException {
|
|
12
|
+
readonly name: "ConflictException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
Message?: string | undefined;
|
|
15
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
16
|
+
}
|
|
17
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
18
|
+
readonly name: "ResourceNotFoundException";
|
|
19
|
+
readonly $fault: "client";
|
|
20
|
+
Message?: string | undefined;
|
|
21
|
+
constructor(
|
|
22
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
26
|
+
readonly name: "ServiceQuotaExceededException";
|
|
27
|
+
readonly $fault: "client";
|
|
28
|
+
Message?: string | undefined;
|
|
29
|
+
constructor(
|
|
30
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
31
|
+
);
|
|
32
|
+
}
|
|
33
|
+
export declare class ValidationException extends __BaseException {
|
|
34
|
+
readonly name: "ValidationException";
|
|
35
|
+
readonly $fault: "client";
|
|
36
|
+
Message?: string | undefined;
|
|
37
|
+
constructor(
|
|
38
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
39
|
+
);
|
|
40
|
+
}
|
|
41
|
+
export declare class ThrottlingException extends __BaseException {
|
|
42
|
+
readonly name: "ThrottlingException";
|
|
43
|
+
readonly $fault: "client";
|
|
44
|
+
Message?: string | undefined;
|
|
45
|
+
constructor(
|
|
46
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
47
|
+
);
|
|
48
|
+
}
|