@aws-sdk/client-sfn 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.
@@ -3,10 +3,16 @@ export declare var AliasDescription: StaticSimpleSchema;
3
3
  export declare var ConnectorParameters: StaticSimpleSchema;
4
4
  export declare var Definition: StaticSimpleSchema;
5
5
  export declare var EvaluationFailureLocation: StaticSimpleSchema;
6
+ export declare var ExceptionHandlerIndex: StaticSimpleSchema;
7
+ export declare var InspectionMaxConcurrency: StaticSimpleSchema;
8
+ export declare var InspectionToleratedFailureCount: StaticSimpleSchema;
9
+ export declare var InspectionToleratedFailurePercentage: StaticSimpleSchema;
10
+ export declare var RetryBackoffIntervalSeconds: StaticSimpleSchema;
6
11
  export declare var SensitiveCause: StaticSimpleSchema;
7
12
  export declare var SensitiveData: StaticSimpleSchema;
8
13
  export declare var SensitiveDataJobInput: StaticSimpleSchema;
9
14
  export declare var SensitiveError: StaticSimpleSchema;
15
+ export declare var TestStateStateName: StaticSimpleSchema;
10
16
  export declare var ValidateStateMachineDefinitionCode: StaticSimpleSchema;
11
17
  export declare var ValidateStateMachineDefinitionLocation: StaticSimpleSchema;
12
18
  export declare var ValidateStateMachineDefinitionMessage: StaticSimpleSchema;
@@ -77,6 +83,7 @@ export declare var HistoryEventExecutionDataDetails: StaticStructureSchema;
77
83
  export declare var InspectionData: StaticStructureSchema;
78
84
  export declare var InspectionDataRequest: StaticStructureSchema;
79
85
  export declare var InspectionDataResponse: StaticStructureSchema;
86
+ export declare var InspectionErrorDetails: StaticStructureSchema;
80
87
  export declare var InvalidArn: StaticErrorSchema;
81
88
  export declare var InvalidDefinition: StaticErrorSchema;
82
89
  export declare var InvalidEncryptionConfiguration: StaticErrorSchema;
@@ -120,6 +127,8 @@ export declare var MapRunRedrivenEventDetails: StaticStructureSchema;
120
127
  export declare var MapRunStartedEventDetails: StaticStructureSchema;
121
128
  export declare var MapStateStartedEventDetails: StaticStructureSchema;
122
129
  export declare var MissingRequiredParameter: StaticErrorSchema;
130
+ export declare var MockErrorOutput: StaticStructureSchema;
131
+ export declare var MockInput: StaticStructureSchema;
123
132
  export declare var PublishStateMachineVersionInput: StaticStructureSchema;
124
133
  export declare var PublishStateMachineVersionOutput: StaticStructureSchema;
125
134
  export declare var RedriveExecutionInput: StaticStructureSchema;
@@ -163,6 +172,7 @@ export declare var TaskSubmittedEventDetails: StaticStructureSchema;
163
172
  export declare var TaskSucceededEventDetails: StaticStructureSchema;
164
173
  export declare var TaskTimedOut: StaticErrorSchema;
165
174
  export declare var TaskTimedOutEventDetails: StaticStructureSchema;
175
+ export declare var TestStateConfiguration: StaticStructureSchema;
166
176
  export declare var TestStateInput: StaticStructureSchema;
167
177
  export declare var TestStateOutput: StaticStructureSchema;
168
178
  export declare var TooManyTags: StaticErrorSchema;
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { SFNExtensionConfiguration } 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 { SFNServiceException } from "./models/SFNServiceException";
@@ -0,0 +1,183 @@
1
+ export declare const EncryptionType: {
2
+ readonly AWS_OWNED_KEY: "AWS_OWNED_KEY";
3
+ readonly CUSTOMER_MANAGED_KMS_KEY: "CUSTOMER_MANAGED_KMS_KEY";
4
+ };
5
+ export type EncryptionType =
6
+ (typeof EncryptionType)[keyof typeof EncryptionType];
7
+ export declare const LogLevel: {
8
+ readonly ALL: "ALL";
9
+ readonly ERROR: "ERROR";
10
+ readonly FATAL: "FATAL";
11
+ readonly OFF: "OFF";
12
+ };
13
+ export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
14
+ export declare const StateMachineType: {
15
+ readonly EXPRESS: "EXPRESS";
16
+ readonly STANDARD: "STANDARD";
17
+ };
18
+ export type StateMachineType =
19
+ (typeof StateMachineType)[keyof typeof StateMachineType];
20
+ export declare const ValidationExceptionReason: {
21
+ readonly API_DOES_NOT_SUPPORT_LABELED_ARNS: "API_DOES_NOT_SUPPORT_LABELED_ARNS";
22
+ readonly CANNOT_UPDATE_COMPLETED_MAP_RUN: "CANNOT_UPDATE_COMPLETED_MAP_RUN";
23
+ readonly INVALID_ROUTING_CONFIGURATION: "INVALID_ROUTING_CONFIGURATION";
24
+ readonly MISSING_REQUIRED_PARAMETER: "MISSING_REQUIRED_PARAMETER";
25
+ };
26
+ export type ValidationExceptionReason =
27
+ (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
28
+ export declare const IncludedData: {
29
+ readonly ALL_DATA: "ALL_DATA";
30
+ readonly METADATA_ONLY: "METADATA_ONLY";
31
+ };
32
+ export type IncludedData = (typeof IncludedData)[keyof typeof IncludedData];
33
+ export declare const ExecutionRedriveStatus: {
34
+ readonly NOT_REDRIVABLE: "NOT_REDRIVABLE";
35
+ readonly REDRIVABLE: "REDRIVABLE";
36
+ readonly REDRIVABLE_BY_MAP_RUN: "REDRIVABLE_BY_MAP_RUN";
37
+ };
38
+ export type ExecutionRedriveStatus =
39
+ (typeof ExecutionRedriveStatus)[keyof typeof ExecutionRedriveStatus];
40
+ export declare const ExecutionStatus: {
41
+ readonly ABORTED: "ABORTED";
42
+ readonly FAILED: "FAILED";
43
+ readonly PENDING_REDRIVE: "PENDING_REDRIVE";
44
+ readonly RUNNING: "RUNNING";
45
+ readonly SUCCEEDED: "SUCCEEDED";
46
+ readonly TIMED_OUT: "TIMED_OUT";
47
+ };
48
+ export type ExecutionStatus =
49
+ (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
50
+ export declare const KmsKeyState: {
51
+ readonly CREATING: "CREATING";
52
+ readonly DISABLED: "DISABLED";
53
+ readonly PENDING_DELETION: "PENDING_DELETION";
54
+ readonly PENDING_IMPORT: "PENDING_IMPORT";
55
+ readonly UNAVAILABLE: "UNAVAILABLE";
56
+ };
57
+ export type KmsKeyState = (typeof KmsKeyState)[keyof typeof KmsKeyState];
58
+ export declare const MapRunStatus: {
59
+ readonly ABORTED: "ABORTED";
60
+ readonly FAILED: "FAILED";
61
+ readonly RUNNING: "RUNNING";
62
+ readonly SUCCEEDED: "SUCCEEDED";
63
+ };
64
+ export type MapRunStatus = (typeof MapRunStatus)[keyof typeof MapRunStatus];
65
+ export declare const StateMachineStatus: {
66
+ readonly ACTIVE: "ACTIVE";
67
+ readonly DELETING: "DELETING";
68
+ };
69
+ export type StateMachineStatus =
70
+ (typeof StateMachineStatus)[keyof typeof StateMachineStatus];
71
+ export declare const HistoryEventType: {
72
+ readonly ActivityFailed: "ActivityFailed";
73
+ readonly ActivityScheduleFailed: "ActivityScheduleFailed";
74
+ readonly ActivityScheduled: "ActivityScheduled";
75
+ readonly ActivityStarted: "ActivityStarted";
76
+ readonly ActivitySucceeded: "ActivitySucceeded";
77
+ readonly ActivityTimedOut: "ActivityTimedOut";
78
+ readonly ChoiceStateEntered: "ChoiceStateEntered";
79
+ readonly ChoiceStateExited: "ChoiceStateExited";
80
+ readonly EvaluationFailed: "EvaluationFailed";
81
+ readonly ExecutionAborted: "ExecutionAborted";
82
+ readonly ExecutionFailed: "ExecutionFailed";
83
+ readonly ExecutionRedriven: "ExecutionRedriven";
84
+ readonly ExecutionStarted: "ExecutionStarted";
85
+ readonly ExecutionSucceeded: "ExecutionSucceeded";
86
+ readonly ExecutionTimedOut: "ExecutionTimedOut";
87
+ readonly FailStateEntered: "FailStateEntered";
88
+ readonly LambdaFunctionFailed: "LambdaFunctionFailed";
89
+ readonly LambdaFunctionScheduleFailed: "LambdaFunctionScheduleFailed";
90
+ readonly LambdaFunctionScheduled: "LambdaFunctionScheduled";
91
+ readonly LambdaFunctionStartFailed: "LambdaFunctionStartFailed";
92
+ readonly LambdaFunctionStarted: "LambdaFunctionStarted";
93
+ readonly LambdaFunctionSucceeded: "LambdaFunctionSucceeded";
94
+ readonly LambdaFunctionTimedOut: "LambdaFunctionTimedOut";
95
+ readonly MapIterationAborted: "MapIterationAborted";
96
+ readonly MapIterationFailed: "MapIterationFailed";
97
+ readonly MapIterationStarted: "MapIterationStarted";
98
+ readonly MapIterationSucceeded: "MapIterationSucceeded";
99
+ readonly MapRunAborted: "MapRunAborted";
100
+ readonly MapRunFailed: "MapRunFailed";
101
+ readonly MapRunRedriven: "MapRunRedriven";
102
+ readonly MapRunStarted: "MapRunStarted";
103
+ readonly MapRunSucceeded: "MapRunSucceeded";
104
+ readonly MapStateAborted: "MapStateAborted";
105
+ readonly MapStateEntered: "MapStateEntered";
106
+ readonly MapStateExited: "MapStateExited";
107
+ readonly MapStateFailed: "MapStateFailed";
108
+ readonly MapStateStarted: "MapStateStarted";
109
+ readonly MapStateSucceeded: "MapStateSucceeded";
110
+ readonly ParallelStateAborted: "ParallelStateAborted";
111
+ readonly ParallelStateEntered: "ParallelStateEntered";
112
+ readonly ParallelStateExited: "ParallelStateExited";
113
+ readonly ParallelStateFailed: "ParallelStateFailed";
114
+ readonly ParallelStateStarted: "ParallelStateStarted";
115
+ readonly ParallelStateSucceeded: "ParallelStateSucceeded";
116
+ readonly PassStateEntered: "PassStateEntered";
117
+ readonly PassStateExited: "PassStateExited";
118
+ readonly SucceedStateEntered: "SucceedStateEntered";
119
+ readonly SucceedStateExited: "SucceedStateExited";
120
+ readonly TaskFailed: "TaskFailed";
121
+ readonly TaskScheduled: "TaskScheduled";
122
+ readonly TaskStartFailed: "TaskStartFailed";
123
+ readonly TaskStarted: "TaskStarted";
124
+ readonly TaskStateAborted: "TaskStateAborted";
125
+ readonly TaskStateEntered: "TaskStateEntered";
126
+ readonly TaskStateExited: "TaskStateExited";
127
+ readonly TaskSubmitFailed: "TaskSubmitFailed";
128
+ readonly TaskSubmitted: "TaskSubmitted";
129
+ readonly TaskSucceeded: "TaskSucceeded";
130
+ readonly TaskTimedOut: "TaskTimedOut";
131
+ readonly WaitStateAborted: "WaitStateAborted";
132
+ readonly WaitStateEntered: "WaitStateEntered";
133
+ readonly WaitStateExited: "WaitStateExited";
134
+ };
135
+ export type HistoryEventType =
136
+ (typeof HistoryEventType)[keyof typeof HistoryEventType];
137
+ export declare const ExecutionRedriveFilter: {
138
+ readonly NOT_REDRIVEN: "NOT_REDRIVEN";
139
+ readonly REDRIVEN: "REDRIVEN";
140
+ };
141
+ export type ExecutionRedriveFilter =
142
+ (typeof ExecutionRedriveFilter)[keyof typeof ExecutionRedriveFilter];
143
+ export declare const SyncExecutionStatus: {
144
+ readonly FAILED: "FAILED";
145
+ readonly SUCCEEDED: "SUCCEEDED";
146
+ readonly TIMED_OUT: "TIMED_OUT";
147
+ };
148
+ export type SyncExecutionStatus =
149
+ (typeof SyncExecutionStatus)[keyof typeof SyncExecutionStatus];
150
+ export declare const InspectionLevel: {
151
+ readonly DEBUG: "DEBUG";
152
+ readonly INFO: "INFO";
153
+ readonly TRACE: "TRACE";
154
+ };
155
+ export type InspectionLevel =
156
+ (typeof InspectionLevel)[keyof typeof InspectionLevel];
157
+ export declare const MockResponseValidationMode: {
158
+ readonly NONE: "NONE";
159
+ readonly PRESENT: "PRESENT";
160
+ readonly STRICT: "STRICT";
161
+ };
162
+ export type MockResponseValidationMode =
163
+ (typeof MockResponseValidationMode)[keyof typeof MockResponseValidationMode];
164
+ export declare const TestExecutionStatus: {
165
+ readonly CAUGHT_ERROR: "CAUGHT_ERROR";
166
+ readonly FAILED: "FAILED";
167
+ readonly RETRIABLE: "RETRIABLE";
168
+ readonly SUCCEEDED: "SUCCEEDED";
169
+ };
170
+ export type TestExecutionStatus =
171
+ (typeof TestExecutionStatus)[keyof typeof TestExecutionStatus];
172
+ export declare const ValidateStateMachineDefinitionSeverity: {
173
+ readonly ERROR: "ERROR";
174
+ readonly WARNING: "WARNING";
175
+ };
176
+ export type ValidateStateMachineDefinitionSeverity =
177
+ (typeof ValidateStateMachineDefinitionSeverity)[keyof typeof ValidateStateMachineDefinitionSeverity];
178
+ export declare const ValidateStateMachineDefinitionResultCode: {
179
+ readonly FAIL: "FAIL";
180
+ readonly OK: "OK";
181
+ };
182
+ export type ValidateStateMachineDefinitionResultCode =
183
+ (typeof ValidateStateMachineDefinitionResultCode)[keyof typeof ValidateStateMachineDefinitionResultCode];
@@ -0,0 +1,218 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { KmsKeyState, ValidationExceptionReason } from "./enums";
3
+ import { SFNServiceException as __BaseException } from "./SFNServiceException";
4
+ export declare class ActivityAlreadyExists extends __BaseException {
5
+ readonly name: "ActivityAlreadyExists";
6
+ readonly $fault: "client";
7
+ constructor(
8
+ opts: __ExceptionOptionType<ActivityAlreadyExists, __BaseException>
9
+ );
10
+ }
11
+ export declare class ActivityDoesNotExist extends __BaseException {
12
+ readonly name: "ActivityDoesNotExist";
13
+ readonly $fault: "client";
14
+ constructor(
15
+ opts: __ExceptionOptionType<ActivityDoesNotExist, __BaseException>
16
+ );
17
+ }
18
+ export declare class ActivityLimitExceeded extends __BaseException {
19
+ readonly name: "ActivityLimitExceeded";
20
+ readonly $fault: "client";
21
+ constructor(
22
+ opts: __ExceptionOptionType<ActivityLimitExceeded, __BaseException>
23
+ );
24
+ }
25
+ export declare class ActivityWorkerLimitExceeded extends __BaseException {
26
+ readonly name: "ActivityWorkerLimitExceeded";
27
+ readonly $fault: "client";
28
+ constructor(
29
+ opts: __ExceptionOptionType<ActivityWorkerLimitExceeded, __BaseException>
30
+ );
31
+ }
32
+ export declare class InvalidEncryptionConfiguration extends __BaseException {
33
+ readonly name: "InvalidEncryptionConfiguration";
34
+ readonly $fault: "client";
35
+ constructor(
36
+ opts: __ExceptionOptionType<InvalidEncryptionConfiguration, __BaseException>
37
+ );
38
+ }
39
+ export declare class InvalidName extends __BaseException {
40
+ readonly name: "InvalidName";
41
+ readonly $fault: "client";
42
+ constructor(opts: __ExceptionOptionType<InvalidName, __BaseException>);
43
+ }
44
+ export declare class KmsAccessDeniedException extends __BaseException {
45
+ readonly name: "KmsAccessDeniedException";
46
+ readonly $fault: "client";
47
+ constructor(
48
+ opts: __ExceptionOptionType<KmsAccessDeniedException, __BaseException>
49
+ );
50
+ }
51
+ export declare class KmsThrottlingException extends __BaseException {
52
+ readonly name: "KmsThrottlingException";
53
+ readonly $fault: "client";
54
+ constructor(
55
+ opts: __ExceptionOptionType<KmsThrottlingException, __BaseException>
56
+ );
57
+ }
58
+ export declare class TooManyTags extends __BaseException {
59
+ readonly name: "TooManyTags";
60
+ readonly $fault: "client";
61
+ resourceName?: string | undefined;
62
+ constructor(opts: __ExceptionOptionType<TooManyTags, __BaseException>);
63
+ }
64
+ export declare class ConflictException extends __BaseException {
65
+ readonly name: "ConflictException";
66
+ readonly $fault: "client";
67
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
68
+ }
69
+ export declare class InvalidArn extends __BaseException {
70
+ readonly name: "InvalidArn";
71
+ readonly $fault: "client";
72
+ constructor(opts: __ExceptionOptionType<InvalidArn, __BaseException>);
73
+ }
74
+ export declare class InvalidDefinition extends __BaseException {
75
+ readonly name: "InvalidDefinition";
76
+ readonly $fault: "client";
77
+ constructor(opts: __ExceptionOptionType<InvalidDefinition, __BaseException>);
78
+ }
79
+ export declare class InvalidLoggingConfiguration extends __BaseException {
80
+ readonly name: "InvalidLoggingConfiguration";
81
+ readonly $fault: "client";
82
+ constructor(
83
+ opts: __ExceptionOptionType<InvalidLoggingConfiguration, __BaseException>
84
+ );
85
+ }
86
+ export declare class InvalidTracingConfiguration extends __BaseException {
87
+ readonly name: "InvalidTracingConfiguration";
88
+ readonly $fault: "client";
89
+ constructor(
90
+ opts: __ExceptionOptionType<InvalidTracingConfiguration, __BaseException>
91
+ );
92
+ }
93
+ export declare class StateMachineAlreadyExists extends __BaseException {
94
+ readonly name: "StateMachineAlreadyExists";
95
+ readonly $fault: "client";
96
+ constructor(
97
+ opts: __ExceptionOptionType<StateMachineAlreadyExists, __BaseException>
98
+ );
99
+ }
100
+ export declare class StateMachineDeleting extends __BaseException {
101
+ readonly name: "StateMachineDeleting";
102
+ readonly $fault: "client";
103
+ constructor(
104
+ opts: __ExceptionOptionType<StateMachineDeleting, __BaseException>
105
+ );
106
+ }
107
+ export declare class StateMachineLimitExceeded extends __BaseException {
108
+ readonly name: "StateMachineLimitExceeded";
109
+ readonly $fault: "client";
110
+ constructor(
111
+ opts: __ExceptionOptionType<StateMachineLimitExceeded, __BaseException>
112
+ );
113
+ }
114
+ export declare class StateMachineTypeNotSupported extends __BaseException {
115
+ readonly name: "StateMachineTypeNotSupported";
116
+ readonly $fault: "client";
117
+ constructor(
118
+ opts: __ExceptionOptionType<StateMachineTypeNotSupported, __BaseException>
119
+ );
120
+ }
121
+ export declare class ValidationException extends __BaseException {
122
+ readonly name: "ValidationException";
123
+ readonly $fault: "client";
124
+ reason?: ValidationExceptionReason | undefined;
125
+ constructor(
126
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
127
+ );
128
+ }
129
+ export declare class ResourceNotFound extends __BaseException {
130
+ readonly name: "ResourceNotFound";
131
+ readonly $fault: "client";
132
+ resourceName?: string | undefined;
133
+ constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
134
+ }
135
+ export declare class ServiceQuotaExceededException extends __BaseException {
136
+ readonly name: "ServiceQuotaExceededException";
137
+ readonly $fault: "client";
138
+ constructor(
139
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
140
+ );
141
+ }
142
+ export declare class ExecutionDoesNotExist extends __BaseException {
143
+ readonly name: "ExecutionDoesNotExist";
144
+ readonly $fault: "client";
145
+ constructor(
146
+ opts: __ExceptionOptionType<ExecutionDoesNotExist, __BaseException>
147
+ );
148
+ }
149
+ export declare class KmsInvalidStateException extends __BaseException {
150
+ readonly name: "KmsInvalidStateException";
151
+ readonly $fault: "client";
152
+ kmsKeyState?: KmsKeyState | undefined;
153
+ constructor(
154
+ opts: __ExceptionOptionType<KmsInvalidStateException, __BaseException>
155
+ );
156
+ }
157
+ export declare class StateMachineDoesNotExist extends __BaseException {
158
+ readonly name: "StateMachineDoesNotExist";
159
+ readonly $fault: "client";
160
+ constructor(
161
+ opts: __ExceptionOptionType<StateMachineDoesNotExist, __BaseException>
162
+ );
163
+ }
164
+ export declare class InvalidToken extends __BaseException {
165
+ readonly name: "InvalidToken";
166
+ readonly $fault: "client";
167
+ constructor(opts: __ExceptionOptionType<InvalidToken, __BaseException>);
168
+ }
169
+ export declare class ExecutionLimitExceeded extends __BaseException {
170
+ readonly name: "ExecutionLimitExceeded";
171
+ readonly $fault: "client";
172
+ constructor(
173
+ opts: __ExceptionOptionType<ExecutionLimitExceeded, __BaseException>
174
+ );
175
+ }
176
+ export declare class ExecutionNotRedrivable extends __BaseException {
177
+ readonly name: "ExecutionNotRedrivable";
178
+ readonly $fault: "client";
179
+ constructor(
180
+ opts: __ExceptionOptionType<ExecutionNotRedrivable, __BaseException>
181
+ );
182
+ }
183
+ export declare class TaskDoesNotExist extends __BaseException {
184
+ readonly name: "TaskDoesNotExist";
185
+ readonly $fault: "client";
186
+ constructor(opts: __ExceptionOptionType<TaskDoesNotExist, __BaseException>);
187
+ }
188
+ export declare class TaskTimedOut extends __BaseException {
189
+ readonly name: "TaskTimedOut";
190
+ readonly $fault: "client";
191
+ constructor(opts: __ExceptionOptionType<TaskTimedOut, __BaseException>);
192
+ }
193
+ export declare class InvalidOutput extends __BaseException {
194
+ readonly name: "InvalidOutput";
195
+ readonly $fault: "client";
196
+ constructor(opts: __ExceptionOptionType<InvalidOutput, __BaseException>);
197
+ }
198
+ export declare class ExecutionAlreadyExists extends __BaseException {
199
+ readonly name: "ExecutionAlreadyExists";
200
+ readonly $fault: "client";
201
+ constructor(
202
+ opts: __ExceptionOptionType<ExecutionAlreadyExists, __BaseException>
203
+ );
204
+ }
205
+ export declare class InvalidExecutionInput extends __BaseException {
206
+ readonly name: "InvalidExecutionInput";
207
+ readonly $fault: "client";
208
+ constructor(
209
+ opts: __ExceptionOptionType<InvalidExecutionInput, __BaseException>
210
+ );
211
+ }
212
+ export declare class MissingRequiredParameter extends __BaseException {
213
+ readonly name: "MissingRequiredParameter";
214
+ readonly $fault: "client";
215
+ constructor(
216
+ opts: __ExceptionOptionType<MissingRequiredParameter, __BaseException>
217
+ );
218
+ }