@aws-sdk/client-bedrock-agentcore 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.
@@ -1,18 +1,6 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
1
  import { DocumentType as __DocumentType, StreamingBlobTypes } from "@smithy/types";
3
- import { BedrockAgentCoreServiceException as __BaseException } from "./BedrockAgentCoreServiceException";
4
- /**
5
- * <p>The exception that occurs when you do not have sufficient permissions to perform an action. Verify that your IAM policy includes the necessary permissions for the operation you are trying to perform.</p>
6
- * @public
7
- */
8
- export declare class AccessDeniedException extends __BaseException {
9
- readonly name: "AccessDeniedException";
10
- readonly $fault: "client";
11
- /**
12
- * @internal
13
- */
14
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
- }
2
+ import { AutomationStreamStatus, BrowserSessionStatus, CodeInterpreterSessionStatus, ContentBlockType, MemoryRecordStatus, Oauth2FlowType, OperatorType, ProgrammingLanguage, ResourceContentType, Role, SessionStatus, TaskStatus, ToolName } from "./enums";
3
+ import { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException } from "./errors";
16
4
  /**
17
5
  * <p>Contains summary information about an actor in an AgentCore Memory resource.</p>
18
6
  * @public
@@ -64,66 +52,6 @@ export interface GetAgentCardResponse {
64
52
  */
65
53
  statusCode?: number | undefined;
66
54
  }
67
- /**
68
- * <p>The exception that occurs when the service encounters an unexpected internal error. This is a temporary condition that will resolve itself with retries. We recommend implementing exponential backoff retry logic in your application.</p>
69
- * @public
70
- */
71
- export declare class InternalServerException extends __BaseException {
72
- readonly name: "InternalServerException";
73
- readonly $fault: "server";
74
- /**
75
- * @internal
76
- */
77
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
78
- }
79
- /**
80
- * <p>The exception that occurs when the specified resource does not exist. This can happen when using an invalid identifier or when trying to access a resource that has been deleted.</p>
81
- * @public
82
- */
83
- export declare class ResourceNotFoundException extends __BaseException {
84
- readonly name: "ResourceNotFoundException";
85
- readonly $fault: "client";
86
- /**
87
- * @internal
88
- */
89
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
90
- }
91
- /**
92
- * <p>The exception that occurs when there is an error in the runtime client. This can happen due to network issues, invalid configuration, or other client-side problems. Check the error message for specific details about the error.</p>
93
- * @public
94
- */
95
- export declare class RuntimeClientError extends __BaseException {
96
- readonly name: "RuntimeClientError";
97
- readonly $fault: "client";
98
- /**
99
- * @internal
100
- */
101
- constructor(opts: __ExceptionOptionType<RuntimeClientError, __BaseException>);
102
- }
103
- /**
104
- * <p>The exception that occurs when the request would cause a service quota to be exceeded. Review your service quotas and either reduce your request rate or request a quota increase.</p>
105
- * @public
106
- */
107
- export declare class ServiceQuotaExceededException extends __BaseException {
108
- readonly name: "ServiceQuotaExceededException";
109
- readonly $fault: "client";
110
- /**
111
- * @internal
112
- */
113
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
114
- }
115
- /**
116
- * <p>The exception that occurs when the request was denied due to request throttling. This happens when you exceed the allowed request rate for an operation. Reduce the frequency of requests or implement exponential backoff retry logic in your application.</p>
117
- * @public
118
- */
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>);
126
- }
127
55
  /**
128
56
  * <p>Stores information about a field passed inside a request that resulted in an exception.</p>
129
57
  * @public
@@ -140,35 +68,6 @@ export interface ValidationExceptionField {
140
68
  */
141
69
  message: string | undefined;
142
70
  }
143
- /**
144
- * @public
145
- * @enum
146
- */
147
- export declare const ValidationExceptionReason: {
148
- readonly CANNOT_PARSE: "CannotParse";
149
- readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
150
- readonly IDEMPOTENT_PARAMETER_MISMATCH_EXCEPTION: "IdempotentParameterMismatchException";
151
- readonly RESOURCE_CONFLICT: "ResourceConflict";
152
- readonly ROOT_EVENT_IN_OTHER_SESSION: "EventInOtherSession";
153
- };
154
- /**
155
- * @public
156
- */
157
- export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
158
- /**
159
- * <p>The exception that occurs when the input fails to satisfy the constraints specified by the service. Check the error message for details about which input parameter is invalid and correct your request.</p>
160
- * @public
161
- */
162
- export declare class ValidationException extends __BaseException {
163
- readonly name: "ValidationException";
164
- readonly $fault: "client";
165
- reason: ValidationExceptionReason | undefined;
166
- fieldList?: ValidationExceptionField[] | undefined;
167
- /**
168
- * @internal
169
- */
170
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
171
- }
172
71
  /**
173
72
  * @public
174
73
  */
@@ -299,18 +198,6 @@ export interface InvokeAgentRuntimeResponse {
299
198
  */
300
199
  statusCode?: number | undefined;
301
200
  }
302
- /**
303
- * <p>The exception that occurs when the request conflicts with the current state of the resource. This can happen when trying to modify a resource that is currently being modified by another request, or when trying to create a resource that already exists.</p>
304
- * @public
305
- */
306
- export declare class ConflictException extends __BaseException {
307
- readonly name: "ConflictException";
308
- readonly $fault: "client";
309
- /**
310
- * @internal
311
- */
312
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
313
- }
314
201
  /**
315
202
  * @public
316
203
  */
@@ -351,18 +238,6 @@ export interface StopRuntimeSessionResponse {
351
238
  */
352
239
  statusCode?: number | undefined;
353
240
  }
354
- /**
355
- * <p>This exception is thrown when the JWT bearer token is invalid or not found for OAuth bearer token based access</p>
356
- * @public
357
- */
358
- export declare class UnauthorizedException extends __BaseException {
359
- readonly name: "UnauthorizedException";
360
- readonly $fault: "client";
361
- /**
362
- * @internal
363
- */
364
- constructor(opts: __ExceptionOptionType<UnauthorizedException, __BaseException>);
365
- }
366
241
  /**
367
242
  * @public
368
243
  */
@@ -378,30 +253,6 @@ export interface GetBrowserSessionRequest {
378
253
  */
379
254
  sessionId: string | undefined;
380
255
  }
381
- /**
382
- * @public
383
- * @enum
384
- */
385
- export declare const BrowserSessionStatus: {
386
- readonly READY: "READY";
387
- readonly TERMINATED: "TERMINATED";
388
- };
389
- /**
390
- * @public
391
- */
392
- export type BrowserSessionStatus = (typeof BrowserSessionStatus)[keyof typeof BrowserSessionStatus];
393
- /**
394
- * @public
395
- * @enum
396
- */
397
- export declare const AutomationStreamStatus: {
398
- readonly DISABLED: "DISABLED";
399
- readonly ENABLED: "ENABLED";
400
- };
401
- /**
402
- * @public
403
- */
404
- export type AutomationStreamStatus = (typeof AutomationStreamStatus)[keyof typeof AutomationStreamStatus];
405
256
  /**
406
257
  * <p>The configuration for a stream that enables programmatic control of a browser session in Amazon Bedrock. This stream provides a bidirectional communication channel for sending commands to the browser and receiving responses, allowing agents to automate web interactions such as navigation, form filling, and element clicking.</p>
407
258
  * @public
@@ -816,18 +667,6 @@ export interface GetCodeInterpreterSessionRequest {
816
667
  */
817
668
  sessionId: string | undefined;
818
669
  }
819
- /**
820
- * @public
821
- * @enum
822
- */
823
- export declare const CodeInterpreterSessionStatus: {
824
- readonly READY: "READY";
825
- readonly TERMINATED: "TERMINATED";
826
- };
827
- /**
828
- * @public
829
- */
830
- export type CodeInterpreterSessionStatus = (typeof CodeInterpreterSessionStatus)[keyof typeof CodeInterpreterSessionStatus];
831
670
  /**
832
671
  * @public
833
672
  */
@@ -1134,18 +973,6 @@ export interface GetResourceApiKeyResponse {
1134
973
  */
1135
974
  apiKey: string | undefined;
1136
975
  }
1137
- /**
1138
- * @public
1139
- * @enum
1140
- */
1141
- export declare const Oauth2FlowType: {
1142
- readonly M2M: "M2M";
1143
- readonly USER_FEDERATION: "USER_FEDERATION";
1144
- };
1145
- /**
1146
- * @public
1147
- */
1148
- export type Oauth2FlowType = (typeof Oauth2FlowType)[keyof typeof Oauth2FlowType];
1149
976
  /**
1150
977
  * @public
1151
978
  */
@@ -1196,18 +1023,6 @@ export interface GetResourceOauth2TokenRequest {
1196
1023
  */
1197
1024
  customState?: string | undefined;
1198
1025
  }
1199
- /**
1200
- * @public
1201
- * @enum
1202
- */
1203
- export declare const SessionStatus: {
1204
- readonly FAILED: "FAILED";
1205
- readonly IN_PROGRESS: "IN_PROGRESS";
1206
- };
1207
- /**
1208
- * @public
1209
- */
1210
- export type SessionStatus = (typeof SessionStatus)[keyof typeof SessionStatus];
1211
1026
  /**
1212
1027
  * @public
1213
1028
  */
@@ -1324,19 +1139,6 @@ export interface InputContentBlock {
1324
1139
  */
1325
1140
  blob?: Uint8Array | undefined;
1326
1141
  }
1327
- /**
1328
- * @public
1329
- * @enum
1330
- */
1331
- export declare const ProgrammingLanguage: {
1332
- readonly JAVASCRIPT: "javascript";
1333
- readonly PYTHON: "python";
1334
- readonly TYPESCRIPT: "typescript";
1335
- };
1336
- /**
1337
- * @public
1338
- */
1339
- export type ProgrammingLanguage = (typeof ProgrammingLanguage)[keyof typeof ProgrammingLanguage];
1340
1142
  /**
1341
1143
  * <p>The collection of arguments that specify the operation to perform and its parameters when invoking a tool in Amazon Bedrock. Different tools require different arguments, and this structure provides a flexible way to pass the appropriate arguments to each tool type.</p>
1342
1144
  * @public
@@ -1388,25 +1190,6 @@ export interface ToolArguments {
1388
1190
  */
1389
1191
  taskId?: string | undefined;
1390
1192
  }
1391
- /**
1392
- * @public
1393
- * @enum
1394
- */
1395
- export declare const ToolName: {
1396
- readonly EXECUTE_CODE: "executeCode";
1397
- readonly EXECUTE_COMMAND: "executeCommand";
1398
- readonly GET_TASK: "getTask";
1399
- readonly LIST_FILES: "listFiles";
1400
- readonly READ_FILES: "readFiles";
1401
- readonly REMOVE_FILES: "removeFiles";
1402
- readonly START_COMMAND_EXECUTION: "startCommandExecution";
1403
- readonly STOP_TASK: "stopTask";
1404
- readonly WRITE_FILES: "writeFiles";
1405
- };
1406
- /**
1407
- * @public
1408
- */
1409
- export type ToolName = (typeof ToolName)[keyof typeof ToolName];
1410
1193
  /**
1411
1194
  * @public
1412
1195
  */
@@ -1442,18 +1225,6 @@ export interface InvokeCodeInterpreterRequest {
1442
1225
  */
1443
1226
  arguments?: ToolArguments | undefined;
1444
1227
  }
1445
- /**
1446
- * @public
1447
- * @enum
1448
- */
1449
- export declare const ResourceContentType: {
1450
- readonly BLOB: "blob";
1451
- readonly TEXT: "text";
1452
- };
1453
- /**
1454
- * @public
1455
- */
1456
- export type ResourceContentType = (typeof ResourceContentType)[keyof typeof ResourceContentType];
1457
1228
  /**
1458
1229
  * <p>Contains information about resource content.</p>
1459
1230
  * @public
@@ -1485,20 +1256,6 @@ export interface ResourceContent {
1485
1256
  */
1486
1257
  blob?: Uint8Array | undefined;
1487
1258
  }
1488
- /**
1489
- * @public
1490
- * @enum
1491
- */
1492
- export declare const ContentBlockType: {
1493
- readonly EMBEDDED_RESOURCE: "resource";
1494
- readonly IMAGE: "image";
1495
- readonly RESOURCE_LINK: "resource_link";
1496
- readonly TEXT: "text";
1497
- };
1498
- /**
1499
- * @public
1500
- */
1501
- export type ContentBlockType = (typeof ContentBlockType)[keyof typeof ContentBlockType];
1502
1259
  /**
1503
1260
  * <p>A block of content in a response.</p>
1504
1261
  * @public
@@ -1550,21 +1307,6 @@ export interface ContentBlock {
1550
1307
  */
1551
1308
  resource?: ResourceContent | undefined;
1552
1309
  }
1553
- /**
1554
- * @public
1555
- * @enum
1556
- */
1557
- export declare const TaskStatus: {
1558
- readonly CANCELED: "canceled";
1559
- readonly COMPLETED: "completed";
1560
- readonly FAILED: "failed";
1561
- readonly SUBMITTED: "submitted";
1562
- readonly WORKING: "working";
1563
- };
1564
- /**
1565
- * @public
1566
- */
1567
- export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
1568
1310
  /**
1569
1311
  * <p>Contains structured content from a tool result.</p>
1570
1312
  * @public
@@ -1880,18 +1622,6 @@ export interface BatchCreateMemoryRecordsInput {
1880
1622
  */
1881
1623
  clientToken?: string | undefined;
1882
1624
  }
1883
- /**
1884
- * @public
1885
- * @enum
1886
- */
1887
- export declare const MemoryRecordStatus: {
1888
- readonly FAILED: "FAILED";
1889
- readonly SUCCEEDED: "SUCCEEDED";
1890
- };
1891
- /**
1892
- * @public
1893
- */
1894
- export type MemoryRecordStatus = (typeof MemoryRecordStatus)[keyof typeof MemoryRecordStatus];
1895
1625
  /**
1896
1626
  * <p>Output information returned after processing a memory record operation.</p>
1897
1627
  * @public
@@ -1938,30 +1668,6 @@ export interface BatchCreateMemoryRecordsOutput {
1938
1668
  */
1939
1669
  failedRecords: MemoryRecordOutput[] | undefined;
1940
1670
  }
1941
- /**
1942
- * <p>The service encountered an internal error. Try your request again later.</p>
1943
- * @public
1944
- */
1945
- export declare class ServiceException extends __BaseException {
1946
- readonly name: "ServiceException";
1947
- readonly $fault: "server";
1948
- /**
1949
- * @internal
1950
- */
1951
- constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
1952
- }
1953
- /**
1954
- * <p>The request was denied due to request throttling. Reduce the frequency of requests and try again.</p>
1955
- * @public
1956
- */
1957
- export declare class ThrottledException extends __BaseException {
1958
- readonly name: "ThrottledException";
1959
- readonly $fault: "client";
1960
- /**
1961
- * @internal
1962
- */
1963
- constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
1964
- }
1965
1671
  /**
1966
1672
  * <p>Input structure to delete an existing memory record.</p>
1967
1673
  * @public
@@ -2146,20 +1852,6 @@ export declare namespace Content {
2146
1852
  _: (name: string, value: any) => T;
2147
1853
  }
2148
1854
  }
2149
- /**
2150
- * @public
2151
- * @enum
2152
- */
2153
- export declare const Role: {
2154
- readonly ASSISTANT: "ASSISTANT";
2155
- readonly OTHER: "OTHER";
2156
- readonly TOOL: "TOOL";
2157
- readonly USER: "USER";
2158
- };
2159
- /**
2160
- * @public
2161
- */
2162
- export type Role = (typeof Role)[keyof typeof Role];
2163
1855
  /**
2164
1856
  * <p>Contains conversational content for an event payload.</p>
2165
1857
  * @public
@@ -2322,18 +2014,6 @@ export interface CreateEventOutput {
2322
2014
  */
2323
2015
  event: Event | undefined;
2324
2016
  }
2325
- /**
2326
- * <p>The input fails to satisfy the constraints specified by AgentCore. Check your input values and try again.</p>
2327
- * @public
2328
- */
2329
- export declare class InvalidInputException extends __BaseException {
2330
- readonly name: "InvalidInputException";
2331
- readonly $fault: "client";
2332
- /**
2333
- * @internal
2334
- */
2335
- constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
2336
- }
2337
2017
  /**
2338
2018
  * @public
2339
2019
  */
@@ -2569,19 +2249,6 @@ export declare namespace LeftExpression {
2569
2249
  _: (name: string, value: any) => T;
2570
2250
  }
2571
2251
  }
2572
- /**
2573
- * @public
2574
- * @enum
2575
- */
2576
- export declare const OperatorType: {
2577
- readonly EQUALS_TO: "EQUALS_TO";
2578
- readonly EXISTS: "EXISTS";
2579
- readonly NOT_EXISTS: "NOT_EXISTS";
2580
- };
2581
- /**
2582
- * @public
2583
- */
2584
- export type OperatorType = (typeof OperatorType)[keyof typeof OperatorType];
2585
2252
  /**
2586
2253
  * <p>Right expression of the <code>eventMetadata</code>filter.</p>
2587
2254
  * @public
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { BedrockAgentCoreExtensionConfiguration } 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 { BedrockAgentCoreServiceException } from "./models/BedrockAgentCoreServiceException";
@@ -0,0 +1,98 @@
1
+ export declare const ValidationExceptionReason: {
2
+ readonly CANNOT_PARSE: "CannotParse";
3
+ readonly FIELD_VALIDATION_FAILED: "FieldValidationFailed";
4
+ readonly IDEMPOTENT_PARAMETER_MISMATCH_EXCEPTION: "IdempotentParameterMismatchException";
5
+ readonly RESOURCE_CONFLICT: "ResourceConflict";
6
+ readonly ROOT_EVENT_IN_OTHER_SESSION: "EventInOtherSession";
7
+ };
8
+ export type ValidationExceptionReason =
9
+ (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
10
+ export declare const BrowserSessionStatus: {
11
+ readonly READY: "READY";
12
+ readonly TERMINATED: "TERMINATED";
13
+ };
14
+ export type BrowserSessionStatus =
15
+ (typeof BrowserSessionStatus)[keyof typeof BrowserSessionStatus];
16
+ export declare const AutomationStreamStatus: {
17
+ readonly DISABLED: "DISABLED";
18
+ readonly ENABLED: "ENABLED";
19
+ };
20
+ export type AutomationStreamStatus =
21
+ (typeof AutomationStreamStatus)[keyof typeof AutomationStreamStatus];
22
+ export declare const CodeInterpreterSessionStatus: {
23
+ readonly READY: "READY";
24
+ readonly TERMINATED: "TERMINATED";
25
+ };
26
+ export type CodeInterpreterSessionStatus =
27
+ (typeof CodeInterpreterSessionStatus)[keyof typeof CodeInterpreterSessionStatus];
28
+ export declare const Oauth2FlowType: {
29
+ readonly M2M: "M2M";
30
+ readonly USER_FEDERATION: "USER_FEDERATION";
31
+ };
32
+ export type Oauth2FlowType =
33
+ (typeof Oauth2FlowType)[keyof typeof Oauth2FlowType];
34
+ export declare const SessionStatus: {
35
+ readonly FAILED: "FAILED";
36
+ readonly IN_PROGRESS: "IN_PROGRESS";
37
+ };
38
+ export type SessionStatus = (typeof SessionStatus)[keyof typeof SessionStatus];
39
+ export declare const ProgrammingLanguage: {
40
+ readonly JAVASCRIPT: "javascript";
41
+ readonly PYTHON: "python";
42
+ readonly TYPESCRIPT: "typescript";
43
+ };
44
+ export type ProgrammingLanguage =
45
+ (typeof ProgrammingLanguage)[keyof typeof ProgrammingLanguage];
46
+ export declare const ToolName: {
47
+ readonly EXECUTE_CODE: "executeCode";
48
+ readonly EXECUTE_COMMAND: "executeCommand";
49
+ readonly GET_TASK: "getTask";
50
+ readonly LIST_FILES: "listFiles";
51
+ readonly READ_FILES: "readFiles";
52
+ readonly REMOVE_FILES: "removeFiles";
53
+ readonly START_COMMAND_EXECUTION: "startCommandExecution";
54
+ readonly STOP_TASK: "stopTask";
55
+ readonly WRITE_FILES: "writeFiles";
56
+ };
57
+ export type ToolName = (typeof ToolName)[keyof typeof ToolName];
58
+ export declare const ResourceContentType: {
59
+ readonly BLOB: "blob";
60
+ readonly TEXT: "text";
61
+ };
62
+ export type ResourceContentType =
63
+ (typeof ResourceContentType)[keyof typeof ResourceContentType];
64
+ export declare const ContentBlockType: {
65
+ readonly EMBEDDED_RESOURCE: "resource";
66
+ readonly IMAGE: "image";
67
+ readonly RESOURCE_LINK: "resource_link";
68
+ readonly TEXT: "text";
69
+ };
70
+ export type ContentBlockType =
71
+ (typeof ContentBlockType)[keyof typeof ContentBlockType];
72
+ export declare const TaskStatus: {
73
+ readonly CANCELED: "canceled";
74
+ readonly COMPLETED: "completed";
75
+ readonly FAILED: "failed";
76
+ readonly SUBMITTED: "submitted";
77
+ readonly WORKING: "working";
78
+ };
79
+ export type TaskStatus = (typeof TaskStatus)[keyof typeof TaskStatus];
80
+ export declare const MemoryRecordStatus: {
81
+ readonly FAILED: "FAILED";
82
+ readonly SUCCEEDED: "SUCCEEDED";
83
+ };
84
+ export type MemoryRecordStatus =
85
+ (typeof MemoryRecordStatus)[keyof typeof MemoryRecordStatus];
86
+ export declare const Role: {
87
+ readonly ASSISTANT: "ASSISTANT";
88
+ readonly OTHER: "OTHER";
89
+ readonly TOOL: "TOOL";
90
+ readonly USER: "USER";
91
+ };
92
+ export type Role = (typeof Role)[keyof typeof Role];
93
+ export declare const OperatorType: {
94
+ readonly EQUALS_TO: "EQUALS_TO";
95
+ readonly EXISTS: "EXISTS";
96
+ readonly NOT_EXISTS: "NOT_EXISTS";
97
+ };
98
+ export type OperatorType = (typeof OperatorType)[keyof typeof OperatorType];
@@ -0,0 +1,82 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { BedrockAgentCoreServiceException as __BaseException } from "./BedrockAgentCoreServiceException";
3
+ import { ValidationExceptionReason } from "./enums";
4
+ import { ValidationExceptionField } from "./models_0";
5
+ export declare class AccessDeniedException extends __BaseException {
6
+ readonly name: "AccessDeniedException";
7
+ readonly $fault: "client";
8
+ constructor(
9
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
10
+ );
11
+ }
12
+ export declare class InternalServerException extends __BaseException {
13
+ readonly name: "InternalServerException";
14
+ readonly $fault: "server";
15
+ constructor(
16
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
17
+ );
18
+ }
19
+ export declare class ResourceNotFoundException extends __BaseException {
20
+ readonly name: "ResourceNotFoundException";
21
+ readonly $fault: "client";
22
+ constructor(
23
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
24
+ );
25
+ }
26
+ export declare class RuntimeClientError extends __BaseException {
27
+ readonly name: "RuntimeClientError";
28
+ readonly $fault: "client";
29
+ constructor(opts: __ExceptionOptionType<RuntimeClientError, __BaseException>);
30
+ }
31
+ export declare class ServiceQuotaExceededException extends __BaseException {
32
+ readonly name: "ServiceQuotaExceededException";
33
+ readonly $fault: "client";
34
+ constructor(
35
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
36
+ );
37
+ }
38
+ export declare class ThrottlingException extends __BaseException {
39
+ readonly name: "ThrottlingException";
40
+ readonly $fault: "client";
41
+ constructor(
42
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
43
+ );
44
+ }
45
+ export declare class ValidationException extends __BaseException {
46
+ readonly name: "ValidationException";
47
+ readonly $fault: "client";
48
+ reason: ValidationExceptionReason | undefined;
49
+ fieldList?: ValidationExceptionField[] | undefined;
50
+ constructor(
51
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
52
+ );
53
+ }
54
+ export declare class ConflictException extends __BaseException {
55
+ readonly name: "ConflictException";
56
+ readonly $fault: "client";
57
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
58
+ }
59
+ export declare class UnauthorizedException extends __BaseException {
60
+ readonly name: "UnauthorizedException";
61
+ readonly $fault: "client";
62
+ constructor(
63
+ opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
64
+ );
65
+ }
66
+ export declare class ServiceException extends __BaseException {
67
+ readonly name: "ServiceException";
68
+ readonly $fault: "server";
69
+ constructor(opts: __ExceptionOptionType<ServiceException, __BaseException>);
70
+ }
71
+ export declare class ThrottledException extends __BaseException {
72
+ readonly name: "ThrottledException";
73
+ readonly $fault: "client";
74
+ constructor(opts: __ExceptionOptionType<ThrottledException, __BaseException>);
75
+ }
76
+ export declare class InvalidInputException extends __BaseException {
77
+ readonly name: "InvalidInputException";
78
+ readonly $fault: "client";
79
+ constructor(
80
+ opts: __ExceptionOptionType<InvalidInputException, __BaseException>
81
+ );
82
+ }