@aws-sdk/client-iot-managed-integrations 3.933.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 +182 -181
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +181 -0
- package/dist-es/models/errors.js +173 -0
- package/dist-es/models/models_0.js +1 -354
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +445 -0
- package/dist-types/models/errors.d.ts +168 -0
- package/dist-types/models/models_0.d.ts +1 -613
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +237 -0
- package/dist-types/ts3.4/models/errors.d.ts +98 -0
- package/dist-types/ts3.4/models/models_0.d.ts +35 -335
- 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 { IoTManagedIntegrationsExtensionConfiguration } 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 { IoTManagedIntegrationsServiceException } from "./models/IoTManagedIntegrationsServiceException";
|
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
export declare const AbortCriteriaAction: {
|
|
2
|
+
readonly CANCEL: "CANCEL";
|
|
3
|
+
};
|
|
4
|
+
export type AbortCriteriaAction =
|
|
5
|
+
(typeof AbortCriteriaAction)[keyof typeof AbortCriteriaAction];
|
|
6
|
+
export declare const AbortCriteriaFailureType: {
|
|
7
|
+
readonly ALL: "ALL";
|
|
8
|
+
readonly FAILED: "FAILED";
|
|
9
|
+
readonly REJECTED: "REJECTED";
|
|
10
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
11
|
+
};
|
|
12
|
+
export type AbortCriteriaFailureType =
|
|
13
|
+
(typeof AbortCriteriaFailureType)[keyof typeof AbortCriteriaFailureType];
|
|
14
|
+
export declare const AssociationState: {
|
|
15
|
+
readonly ASSOCIATION_DELETING: "ASSOCIATION_DELETING";
|
|
16
|
+
readonly ASSOCIATION_FAILED: "ASSOCIATION_FAILED";
|
|
17
|
+
readonly ASSOCIATION_IN_PROGRESS: "ASSOCIATION_IN_PROGRESS";
|
|
18
|
+
readonly ASSOCIATION_SUCCEEDED: "ASSOCIATION_SUCCEEDED";
|
|
19
|
+
readonly REFRESH_TOKEN_EXPIRED: "REFRESH_TOKEN_EXPIRED";
|
|
20
|
+
};
|
|
21
|
+
export type AssociationState =
|
|
22
|
+
(typeof AssociationState)[keyof typeof AssociationState];
|
|
23
|
+
export declare const TokenEndpointAuthenticationScheme: {
|
|
24
|
+
readonly HTTP_BASIC: "HTTP_BASIC";
|
|
25
|
+
readonly REQUEST_BODY_CREDENTIALS: "REQUEST_BODY_CREDENTIALS";
|
|
26
|
+
};
|
|
27
|
+
export type TokenEndpointAuthenticationScheme =
|
|
28
|
+
(typeof TokenEndpointAuthenticationScheme)[keyof typeof TokenEndpointAuthenticationScheme];
|
|
29
|
+
export declare const AuthMaterialType: {
|
|
30
|
+
readonly CUSTOM_PROTOCOL_QR_BAR_CODE: "CUSTOM_PROTOCOL_QR_BAR_CODE";
|
|
31
|
+
readonly DISCOVERED_DEVICE: "DISCOVERED_DEVICE";
|
|
32
|
+
readonly WIFI_SETUP_QR_BAR_CODE: "WIFI_SETUP_QR_BAR_CODE";
|
|
33
|
+
readonly ZIGBEE_QR_BAR_CODE: "ZIGBEE_QR_BAR_CODE";
|
|
34
|
+
readonly ZWAVE_QR_BAR_CODE: "ZWAVE_QR_BAR_CODE";
|
|
35
|
+
};
|
|
36
|
+
export type AuthMaterialType =
|
|
37
|
+
(typeof AuthMaterialType)[keyof typeof AuthMaterialType];
|
|
38
|
+
export declare const AuthType: {
|
|
39
|
+
readonly OAUTH: "OAUTH";
|
|
40
|
+
};
|
|
41
|
+
export type AuthType = (typeof AuthType)[keyof typeof AuthType];
|
|
42
|
+
export declare const SchemaVersionFormat: {
|
|
43
|
+
readonly AWS: "AWS";
|
|
44
|
+
readonly CONNECTOR: "CONNECTOR";
|
|
45
|
+
readonly ZCL: "ZCL";
|
|
46
|
+
};
|
|
47
|
+
export type SchemaVersionFormat =
|
|
48
|
+
(typeof SchemaVersionFormat)[keyof typeof SchemaVersionFormat];
|
|
49
|
+
export declare const EndpointType: {
|
|
50
|
+
readonly LAMBDA: "LAMBDA";
|
|
51
|
+
};
|
|
52
|
+
export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
|
|
53
|
+
export declare const CloudConnectorType: {
|
|
54
|
+
readonly LISTED: "LISTED";
|
|
55
|
+
readonly UNLISTED: "UNLISTED";
|
|
56
|
+
};
|
|
57
|
+
export type CloudConnectorType =
|
|
58
|
+
(typeof CloudConnectorType)[keyof typeof CloudConnectorType];
|
|
59
|
+
export declare const ConfigurationState: {
|
|
60
|
+
readonly ENABLED: "ENABLED";
|
|
61
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
62
|
+
readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
|
|
63
|
+
};
|
|
64
|
+
export type ConfigurationState =
|
|
65
|
+
(typeof ConfigurationState)[keyof typeof ConfigurationState];
|
|
66
|
+
export declare const ConnectorEventOperation: {
|
|
67
|
+
readonly DEVICE_COMMAND_REQUEST: "DEVICE_COMMAND_REQUEST";
|
|
68
|
+
readonly DEVICE_COMMAND_RESPONSE: "DEVICE_COMMAND_RESPONSE";
|
|
69
|
+
readonly DEVICE_DISCOVERY: "DEVICE_DISCOVERY";
|
|
70
|
+
readonly DEVICE_EVENT: "DEVICE_EVENT";
|
|
71
|
+
};
|
|
72
|
+
export type ConnectorEventOperation =
|
|
73
|
+
(typeof ConnectorEventOperation)[keyof typeof ConnectorEventOperation];
|
|
74
|
+
export declare const DeliveryDestinationType: {
|
|
75
|
+
readonly KINESIS: "KINESIS";
|
|
76
|
+
};
|
|
77
|
+
export type DeliveryDestinationType =
|
|
78
|
+
(typeof DeliveryDestinationType)[keyof typeof DeliveryDestinationType];
|
|
79
|
+
export declare const LogLevel: {
|
|
80
|
+
readonly DEBUG: "DEBUG";
|
|
81
|
+
readonly ERROR: "ERROR";
|
|
82
|
+
readonly INFO: "INFO";
|
|
83
|
+
readonly WARN: "WARN";
|
|
84
|
+
};
|
|
85
|
+
export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
|
|
86
|
+
export declare const Role: {
|
|
87
|
+
readonly CONTROLLER: "CONTROLLER";
|
|
88
|
+
readonly DEVICE: "DEVICE";
|
|
89
|
+
};
|
|
90
|
+
export type Role = (typeof Role)[keyof typeof Role];
|
|
91
|
+
export declare const EventType: {
|
|
92
|
+
readonly ACCOUNT_ASSOCIATION: "ACCOUNT_ASSOCIATION";
|
|
93
|
+
readonly CONNECTOR_ASSOCIATION: "CONNECTOR_ASSOCIATION";
|
|
94
|
+
readonly CONNECTOR_ERROR_REPORT: "CONNECTOR_ERROR_REPORT";
|
|
95
|
+
readonly DEVICE_COMMAND: "DEVICE_COMMAND";
|
|
96
|
+
readonly DEVICE_COMMAND_REQUEST: "DEVICE_COMMAND_REQUEST";
|
|
97
|
+
readonly DEVICE_DISCOVERY_STATUS: "DEVICE_DISCOVERY_STATUS";
|
|
98
|
+
readonly DEVICE_EVENT: "DEVICE_EVENT";
|
|
99
|
+
readonly DEVICE_LIFE_CYCLE: "DEVICE_LIFE_CYCLE";
|
|
100
|
+
readonly DEVICE_OTA: "DEVICE_OTA";
|
|
101
|
+
readonly DEVICE_STATE: "DEVICE_STATE";
|
|
102
|
+
};
|
|
103
|
+
export type EventType = (typeof EventType)[keyof typeof EventType];
|
|
104
|
+
export declare const OtaMechanism: {
|
|
105
|
+
readonly PUSH: "PUSH";
|
|
106
|
+
};
|
|
107
|
+
export type OtaMechanism = (typeof OtaMechanism)[keyof typeof OtaMechanism];
|
|
108
|
+
export declare const SchedulingConfigEndBehavior: {
|
|
109
|
+
readonly CANCEL: "CANCEL";
|
|
110
|
+
readonly FORCE_CANCEL: "FORCE_CANCEL";
|
|
111
|
+
readonly STOP_ROLLOUT: "STOP_ROLLOUT";
|
|
112
|
+
};
|
|
113
|
+
export type SchedulingConfigEndBehavior =
|
|
114
|
+
(typeof SchedulingConfigEndBehavior)[keyof typeof SchedulingConfigEndBehavior];
|
|
115
|
+
export declare const RetryCriteriaFailureType: {
|
|
116
|
+
readonly ALL: "ALL";
|
|
117
|
+
readonly FAILED: "FAILED";
|
|
118
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
119
|
+
};
|
|
120
|
+
export type RetryCriteriaFailureType =
|
|
121
|
+
(typeof RetryCriteriaFailureType)[keyof typeof RetryCriteriaFailureType];
|
|
122
|
+
export declare const OtaType: {
|
|
123
|
+
readonly CONTINUOUS: "CONTINUOUS";
|
|
124
|
+
readonly ONE_TIME: "ONE_TIME";
|
|
125
|
+
};
|
|
126
|
+
export type OtaType = (typeof OtaType)[keyof typeof OtaType];
|
|
127
|
+
export declare const OtaProtocol: {
|
|
128
|
+
readonly HTTP: "HTTP";
|
|
129
|
+
};
|
|
130
|
+
export type OtaProtocol = (typeof OtaProtocol)[keyof typeof OtaProtocol];
|
|
131
|
+
export declare const ProvisioningType: {
|
|
132
|
+
readonly FLEET_PROVISIONING: "FLEET_PROVISIONING";
|
|
133
|
+
readonly JITR: "JITR";
|
|
134
|
+
};
|
|
135
|
+
export type ProvisioningType =
|
|
136
|
+
(typeof ProvisioningType)[keyof typeof ProvisioningType];
|
|
137
|
+
export declare const DiscoveryType: {
|
|
138
|
+
readonly CLOUD: "CLOUD";
|
|
139
|
+
readonly CUSTOM: "CUSTOM";
|
|
140
|
+
readonly ZIGBEE: "ZIGBEE";
|
|
141
|
+
readonly ZWAVE: "ZWAVE";
|
|
142
|
+
};
|
|
143
|
+
export type DiscoveryType = (typeof DiscoveryType)[keyof typeof DiscoveryType];
|
|
144
|
+
export declare const DeviceDiscoveryStatus: {
|
|
145
|
+
readonly FAILED: "FAILED";
|
|
146
|
+
readonly RUNNING: "RUNNING";
|
|
147
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
148
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
149
|
+
};
|
|
150
|
+
export type DeviceDiscoveryStatus =
|
|
151
|
+
(typeof DeviceDiscoveryStatus)[keyof typeof DeviceDiscoveryStatus];
|
|
152
|
+
export declare const DiscoveryModification: {
|
|
153
|
+
readonly DISCOVERED: "DISCOVERED";
|
|
154
|
+
readonly NO_CHANGE: "NO_CHANGE";
|
|
155
|
+
readonly UPDATED: "UPDATED";
|
|
156
|
+
};
|
|
157
|
+
export type DiscoveryModification =
|
|
158
|
+
(typeof DiscoveryModification)[keyof typeof DiscoveryModification];
|
|
159
|
+
export declare const DiscoveryAuthMaterialType: {
|
|
160
|
+
readonly ZWAVE_INSTALL_CODE: "ZWAVE_INSTALL_CODE";
|
|
161
|
+
};
|
|
162
|
+
export type DiscoveryAuthMaterialType =
|
|
163
|
+
(typeof DiscoveryAuthMaterialType)[keyof typeof DiscoveryAuthMaterialType];
|
|
164
|
+
export declare const DisconnectReasonValue: {
|
|
165
|
+
readonly AUTH_ERROR: "AUTH_ERROR";
|
|
166
|
+
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
167
|
+
readonly CLIENT_INITIATED_DISCONNECT: "CLIENT_INITIATED_DISCONNECT";
|
|
168
|
+
readonly CONNECTION_LOST: "CONNECTION_LOST";
|
|
169
|
+
readonly CUSTOMAUTH_TTL_EXPIRATION: "CUSTOMAUTH_TTL_EXPIRATION";
|
|
170
|
+
readonly DUPLICATE_CLIENTID: "DUPLICATE_CLIENTID";
|
|
171
|
+
readonly FORBIDDEN_ACCESS: "FORBIDDEN_ACCESS";
|
|
172
|
+
readonly MQTT_KEEP_ALIVE_TIMEOUT: "MQTT_KEEP_ALIVE_TIMEOUT";
|
|
173
|
+
readonly NONE: "NONE";
|
|
174
|
+
readonly SERVER_ERROR: "SERVER_ERROR";
|
|
175
|
+
readonly SERVER_INITIATED_DISCONNECT: "SERVER_INITIATED_DISCONNECT";
|
|
176
|
+
readonly THROTTLED: "THROTTLED";
|
|
177
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
178
|
+
readonly WEBSOCKET_TTL_EXPIRATION: "WEBSOCKET_TTL_EXPIRATION";
|
|
179
|
+
};
|
|
180
|
+
export type DisconnectReasonValue =
|
|
181
|
+
(typeof DisconnectReasonValue)[keyof typeof DisconnectReasonValue];
|
|
182
|
+
export declare const EncryptionType: {
|
|
183
|
+
readonly CUSTOMER_KEY_ENCRYPTION: "CUSTOMER_KEY_ENCRYPTION";
|
|
184
|
+
readonly MANAGED_INTEGRATIONS_DEFAULT_ENCRYPTION: "MANAGED_INTEGRATIONS_DEFAULT_ENCRYPTION";
|
|
185
|
+
};
|
|
186
|
+
export type EncryptionType =
|
|
187
|
+
(typeof EncryptionType)[keyof typeof EncryptionType];
|
|
188
|
+
export declare const HubNetworkMode: {
|
|
189
|
+
readonly NETWORK_WIDE_EXCLUSION: "NETWORK_WIDE_EXCLUSION";
|
|
190
|
+
readonly STANDARD: "STANDARD";
|
|
191
|
+
};
|
|
192
|
+
export type HubNetworkMode =
|
|
193
|
+
(typeof HubNetworkMode)[keyof typeof HubNetworkMode];
|
|
194
|
+
export declare const ProvisioningStatus: {
|
|
195
|
+
readonly ACTIVATED: "ACTIVATED";
|
|
196
|
+
readonly DELETED: "DELETED";
|
|
197
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
198
|
+
readonly DELETION_FAILED: "DELETION_FAILED";
|
|
199
|
+
readonly DISCOVERED: "DISCOVERED";
|
|
200
|
+
readonly ISOLATED: "ISOLATED";
|
|
201
|
+
readonly PRE_ASSOCIATED: "PRE_ASSOCIATED";
|
|
202
|
+
readonly UNASSOCIATED: "UNASSOCIATED";
|
|
203
|
+
};
|
|
204
|
+
export type ProvisioningStatus =
|
|
205
|
+
(typeof ProvisioningStatus)[keyof typeof ProvisioningStatus];
|
|
206
|
+
export declare const OtaStatus: {
|
|
207
|
+
readonly CANCELED: "CANCELED";
|
|
208
|
+
readonly COMPLETED: "COMPLETED";
|
|
209
|
+
readonly DELETION_IN_PROGRESS: "DELETION_IN_PROGRESS";
|
|
210
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
211
|
+
readonly SCHEDULED: "SCHEDULED";
|
|
212
|
+
};
|
|
213
|
+
export type OtaStatus = (typeof OtaStatus)[keyof typeof OtaStatus];
|
|
214
|
+
export declare const SchemaVersionType: {
|
|
215
|
+
readonly CAPABILITY: "capability";
|
|
216
|
+
readonly DEFINITION: "definition";
|
|
217
|
+
};
|
|
218
|
+
export type SchemaVersionType =
|
|
219
|
+
(typeof SchemaVersionType)[keyof typeof SchemaVersionType];
|
|
220
|
+
export declare const SchemaVersionVisibility: {
|
|
221
|
+
readonly PRIVATE: "PRIVATE";
|
|
222
|
+
readonly PUBLIC: "PUBLIC";
|
|
223
|
+
};
|
|
224
|
+
export type SchemaVersionVisibility =
|
|
225
|
+
(typeof SchemaVersionVisibility)[keyof typeof SchemaVersionVisibility];
|
|
226
|
+
export declare const OtaTaskExecutionStatus: {
|
|
227
|
+
readonly CANCELED: "CANCELED";
|
|
228
|
+
readonly FAILED: "FAILED";
|
|
229
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
230
|
+
readonly QUEUED: "QUEUED";
|
|
231
|
+
readonly REJECTED: "REJECTED";
|
|
232
|
+
readonly REMOVED: "REMOVED";
|
|
233
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
234
|
+
readonly TIMED_OUT: "TIMED_OUT";
|
|
235
|
+
};
|
|
236
|
+
export type OtaTaskExecutionStatus =
|
|
237
|
+
(typeof OtaTaskExecutionStatus)[keyof typeof OtaTaskExecutionStatus];
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { IoTManagedIntegrationsServiceException as __BaseException } from "./IoTManagedIntegrationsServiceException";
|
|
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 InternalServerException extends __BaseException {
|
|
18
|
+
readonly name: "InternalServerException";
|
|
19
|
+
readonly $fault: "server";
|
|
20
|
+
Message?: string | undefined;
|
|
21
|
+
constructor(
|
|
22
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
26
|
+
readonly name: "ResourceNotFoundException";
|
|
27
|
+
readonly $fault: "client";
|
|
28
|
+
Message?: string | undefined;
|
|
29
|
+
ResourceId?: string | undefined;
|
|
30
|
+
ResourceType?: string | undefined;
|
|
31
|
+
constructor(
|
|
32
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
33
|
+
);
|
|
34
|
+
}
|
|
35
|
+
export declare class ServiceUnavailableException extends __BaseException {
|
|
36
|
+
readonly name: "ServiceUnavailableException";
|
|
37
|
+
readonly $fault: "server";
|
|
38
|
+
Message?: string | undefined;
|
|
39
|
+
constructor(
|
|
40
|
+
opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
|
|
41
|
+
);
|
|
42
|
+
}
|
|
43
|
+
export declare class ThrottlingException extends __BaseException {
|
|
44
|
+
readonly name: "ThrottlingException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
Message?: string | undefined;
|
|
47
|
+
constructor(
|
|
48
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
export declare class UnauthorizedException extends __BaseException {
|
|
52
|
+
readonly name: "UnauthorizedException";
|
|
53
|
+
readonly $fault: "client";
|
|
54
|
+
Message?: string | undefined;
|
|
55
|
+
constructor(
|
|
56
|
+
opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
export declare class ValidationException extends __BaseException {
|
|
60
|
+
readonly name: "ValidationException";
|
|
61
|
+
readonly $fault: "client";
|
|
62
|
+
Message?: string | undefined;
|
|
63
|
+
constructor(
|
|
64
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
65
|
+
);
|
|
66
|
+
}
|
|
67
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
68
|
+
readonly name: "ServiceQuotaExceededException";
|
|
69
|
+
readonly $fault: "client";
|
|
70
|
+
Message?: string | undefined;
|
|
71
|
+
constructor(
|
|
72
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
73
|
+
);
|
|
74
|
+
}
|
|
75
|
+
export declare class LimitExceededException extends __BaseException {
|
|
76
|
+
readonly name: "LimitExceededException";
|
|
77
|
+
readonly $fault: "client";
|
|
78
|
+
Message?: string | undefined;
|
|
79
|
+
constructor(
|
|
80
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
81
|
+
);
|
|
82
|
+
}
|
|
83
|
+
export declare class InternalFailureException extends __BaseException {
|
|
84
|
+
readonly name: "InternalFailureException";
|
|
85
|
+
readonly $fault: "server";
|
|
86
|
+
Message?: string | undefined;
|
|
87
|
+
constructor(
|
|
88
|
+
opts: __ExceptionOptionType<InternalFailureException, __BaseException>
|
|
89
|
+
);
|
|
90
|
+
}
|
|
91
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
92
|
+
readonly name: "InvalidRequestException";
|
|
93
|
+
readonly $fault: "client";
|
|
94
|
+
Message?: string | undefined;
|
|
95
|
+
constructor(
|
|
96
|
+
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
97
|
+
);
|
|
98
|
+
}
|