@aws-sdk/client-mwaa-serverless 3.1086.0 → 3.1088.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.
Files changed (34) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/ts3.4/MWAAServerless.d.ts +52 -60
  3. package/dist-types/ts3.4/MWAAServerlessClient.d.ts +8 -24
  4. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
  5. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
  6. package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
  7. package/dist-types/ts3.4/commands/CreateWorkflowCommand.d.ts +4 -9
  8. package/dist-types/ts3.4/commands/DeleteWorkflowCommand.d.ts +4 -9
  9. package/dist-types/ts3.4/commands/GetTaskInstanceCommand.d.ts +4 -9
  10. package/dist-types/ts3.4/commands/GetWorkflowCommand.d.ts +3 -5
  11. package/dist-types/ts3.4/commands/GetWorkflowRunCommand.d.ts +4 -9
  12. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
  13. package/dist-types/ts3.4/commands/ListTaskInstancesCommand.d.ts +5 -10
  14. package/dist-types/ts3.4/commands/ListWorkflowRunsCommand.d.ts +4 -9
  15. package/dist-types/ts3.4/commands/ListWorkflowVersionsCommand.d.ts +5 -10
  16. package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +3 -8
  17. package/dist-types/ts3.4/commands/StartWorkflowRunCommand.d.ts +4 -9
  18. package/dist-types/ts3.4/commands/StopWorkflowRunCommand.d.ts +4 -9
  19. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
  20. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
  21. package/dist-types/ts3.4/commands/UpdateWorkflowCommand.d.ts +4 -9
  22. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  23. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
  24. package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
  25. package/dist-types/ts3.4/models/enums.d.ts +4 -8
  26. package/dist-types/ts3.4/models/errors.d.ts +7 -21
  27. package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
  28. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
  29. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
  30. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
  31. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
  32. package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
  33. package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
  34. package/package.json +39 -39
package/dist-cjs/index.js CHANGED
@@ -67,7 +67,7 @@ const commonParams = {
67
67
  Region: { type: "builtInParams", name: "region" },
68
68
  };
69
69
 
70
- var version = "3.1085.0";
70
+ var version = "3.1087.0";
71
71
  var packageInfo = {
72
72
  version: version};
73
73
 
@@ -15,10 +15,7 @@ import {
15
15
  GetTaskInstanceCommandInput,
16
16
  GetTaskInstanceCommandOutput,
17
17
  } from "./commands/GetTaskInstanceCommand";
18
- import {
19
- GetWorkflowCommandInput,
20
- GetWorkflowCommandOutput,
21
- } from "./commands/GetWorkflowCommand";
18
+ import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "./commands/GetWorkflowCommand";
22
19
  import {
23
20
  GetWorkflowRunCommandInput,
24
21
  GetWorkflowRunCommandOutput,
@@ -51,10 +48,7 @@ import {
51
48
  StopWorkflowRunCommandInput,
52
49
  StopWorkflowRunCommandOutput,
53
50
  } from "./commands/StopWorkflowRunCommand";
54
- import {
55
- TagResourceCommandInput,
56
- TagResourceCommandOutput,
57
- } from "./commands/TagResourceCommand";
51
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
58
52
  import {
59
53
  UntagResourceCommandInput,
60
54
  UntagResourceCommandOutput,
@@ -67,229 +61,227 @@ import { MWAAServerlessClient } from "./MWAAServerlessClient";
67
61
  export interface MWAAServerless {
68
62
  createWorkflow(
69
63
  args: CreateWorkflowCommandInput,
70
- options?: __HttpHandlerOptions
64
+ options?: __HttpHandlerOptions,
71
65
  ): Promise<CreateWorkflowCommandOutput>;
72
66
  createWorkflow(
73
67
  args: CreateWorkflowCommandInput,
74
- cb: (err: any, data?: CreateWorkflowCommandOutput) => void
68
+ cb: (err: any, data?: CreateWorkflowCommandOutput) => void,
75
69
  ): void;
76
70
  createWorkflow(
77
71
  args: CreateWorkflowCommandInput,
78
72
  options: __HttpHandlerOptions,
79
- cb: (err: any, data?: CreateWorkflowCommandOutput) => void
73
+ cb: (err: any, data?: CreateWorkflowCommandOutput) => void,
80
74
  ): void;
81
75
  deleteWorkflow(
82
76
  args: DeleteWorkflowCommandInput,
83
- options?: __HttpHandlerOptions
77
+ options?: __HttpHandlerOptions,
84
78
  ): Promise<DeleteWorkflowCommandOutput>;
85
79
  deleteWorkflow(
86
80
  args: DeleteWorkflowCommandInput,
87
- cb: (err: any, data?: DeleteWorkflowCommandOutput) => void
81
+ cb: (err: any, data?: DeleteWorkflowCommandOutput) => void,
88
82
  ): void;
89
83
  deleteWorkflow(
90
84
  args: DeleteWorkflowCommandInput,
91
85
  options: __HttpHandlerOptions,
92
- cb: (err: any, data?: DeleteWorkflowCommandOutput) => void
86
+ cb: (err: any, data?: DeleteWorkflowCommandOutput) => void,
93
87
  ): void;
94
88
  getTaskInstance(
95
89
  args: GetTaskInstanceCommandInput,
96
- options?: __HttpHandlerOptions
90
+ options?: __HttpHandlerOptions,
97
91
  ): Promise<GetTaskInstanceCommandOutput>;
98
92
  getTaskInstance(
99
93
  args: GetTaskInstanceCommandInput,
100
- cb: (err: any, data?: GetTaskInstanceCommandOutput) => void
94
+ cb: (err: any, data?: GetTaskInstanceCommandOutput) => void,
101
95
  ): void;
102
96
  getTaskInstance(
103
97
  args: GetTaskInstanceCommandInput,
104
98
  options: __HttpHandlerOptions,
105
- cb: (err: any, data?: GetTaskInstanceCommandOutput) => void
99
+ cb: (err: any, data?: GetTaskInstanceCommandOutput) => void,
106
100
  ): void;
107
101
  getWorkflow(
108
102
  args: GetWorkflowCommandInput,
109
- options?: __HttpHandlerOptions
103
+ options?: __HttpHandlerOptions,
110
104
  ): Promise<GetWorkflowCommandOutput>;
111
105
  getWorkflow(
112
106
  args: GetWorkflowCommandInput,
113
- cb: (err: any, data?: GetWorkflowCommandOutput) => void
107
+ cb: (err: any, data?: GetWorkflowCommandOutput) => void,
114
108
  ): void;
115
109
  getWorkflow(
116
110
  args: GetWorkflowCommandInput,
117
111
  options: __HttpHandlerOptions,
118
- cb: (err: any, data?: GetWorkflowCommandOutput) => void
112
+ cb: (err: any, data?: GetWorkflowCommandOutput) => void,
119
113
  ): void;
120
114
  getWorkflowRun(
121
115
  args: GetWorkflowRunCommandInput,
122
- options?: __HttpHandlerOptions
116
+ options?: __HttpHandlerOptions,
123
117
  ): Promise<GetWorkflowRunCommandOutput>;
124
118
  getWorkflowRun(
125
119
  args: GetWorkflowRunCommandInput,
126
- cb: (err: any, data?: GetWorkflowRunCommandOutput) => void
120
+ cb: (err: any, data?: GetWorkflowRunCommandOutput) => void,
127
121
  ): void;
128
122
  getWorkflowRun(
129
123
  args: GetWorkflowRunCommandInput,
130
124
  options: __HttpHandlerOptions,
131
- cb: (err: any, data?: GetWorkflowRunCommandOutput) => void
125
+ cb: (err: any, data?: GetWorkflowRunCommandOutput) => void,
132
126
  ): void;
133
127
  listTagsForResource(
134
128
  args: ListTagsForResourceCommandInput,
135
- options?: __HttpHandlerOptions
129
+ options?: __HttpHandlerOptions,
136
130
  ): Promise<ListTagsForResourceCommandOutput>;
137
131
  listTagsForResource(
138
132
  args: ListTagsForResourceCommandInput,
139
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
133
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
140
134
  ): void;
141
135
  listTagsForResource(
142
136
  args: ListTagsForResourceCommandInput,
143
137
  options: __HttpHandlerOptions,
144
- cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
138
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
145
139
  ): void;
146
140
  listTaskInstances(
147
141
  args: ListTaskInstancesCommandInput,
148
- options?: __HttpHandlerOptions
142
+ options?: __HttpHandlerOptions,
149
143
  ): Promise<ListTaskInstancesCommandOutput>;
150
144
  listTaskInstances(
151
145
  args: ListTaskInstancesCommandInput,
152
- cb: (err: any, data?: ListTaskInstancesCommandOutput) => void
146
+ cb: (err: any, data?: ListTaskInstancesCommandOutput) => void,
153
147
  ): void;
154
148
  listTaskInstances(
155
149
  args: ListTaskInstancesCommandInput,
156
150
  options: __HttpHandlerOptions,
157
- cb: (err: any, data?: ListTaskInstancesCommandOutput) => void
151
+ cb: (err: any, data?: ListTaskInstancesCommandOutput) => void,
158
152
  ): void;
159
153
  listWorkflowRuns(
160
154
  args: ListWorkflowRunsCommandInput,
161
- options?: __HttpHandlerOptions
155
+ options?: __HttpHandlerOptions,
162
156
  ): Promise<ListWorkflowRunsCommandOutput>;
163
157
  listWorkflowRuns(
164
158
  args: ListWorkflowRunsCommandInput,
165
- cb: (err: any, data?: ListWorkflowRunsCommandOutput) => void
159
+ cb: (err: any, data?: ListWorkflowRunsCommandOutput) => void,
166
160
  ): void;
167
161
  listWorkflowRuns(
168
162
  args: ListWorkflowRunsCommandInput,
169
163
  options: __HttpHandlerOptions,
170
- cb: (err: any, data?: ListWorkflowRunsCommandOutput) => void
164
+ cb: (err: any, data?: ListWorkflowRunsCommandOutput) => void,
171
165
  ): void;
172
166
  listWorkflows(): Promise<ListWorkflowsCommandOutput>;
173
167
  listWorkflows(
174
168
  args: ListWorkflowsCommandInput,
175
- options?: __HttpHandlerOptions
169
+ options?: __HttpHandlerOptions,
176
170
  ): Promise<ListWorkflowsCommandOutput>;
177
171
  listWorkflows(
178
172
  args: ListWorkflowsCommandInput,
179
- cb: (err: any, data?: ListWorkflowsCommandOutput) => void
173
+ cb: (err: any, data?: ListWorkflowsCommandOutput) => void,
180
174
  ): void;
181
175
  listWorkflows(
182
176
  args: ListWorkflowsCommandInput,
183
177
  options: __HttpHandlerOptions,
184
- cb: (err: any, data?: ListWorkflowsCommandOutput) => void
178
+ cb: (err: any, data?: ListWorkflowsCommandOutput) => void,
185
179
  ): void;
186
180
  listWorkflowVersions(
187
181
  args: ListWorkflowVersionsCommandInput,
188
- options?: __HttpHandlerOptions
182
+ options?: __HttpHandlerOptions,
189
183
  ): Promise<ListWorkflowVersionsCommandOutput>;
190
184
  listWorkflowVersions(
191
185
  args: ListWorkflowVersionsCommandInput,
192
- cb: (err: any, data?: ListWorkflowVersionsCommandOutput) => void
186
+ cb: (err: any, data?: ListWorkflowVersionsCommandOutput) => void,
193
187
  ): void;
194
188
  listWorkflowVersions(
195
189
  args: ListWorkflowVersionsCommandInput,
196
190
  options: __HttpHandlerOptions,
197
- cb: (err: any, data?: ListWorkflowVersionsCommandOutput) => void
191
+ cb: (err: any, data?: ListWorkflowVersionsCommandOutput) => void,
198
192
  ): void;
199
193
  startWorkflowRun(
200
194
  args: StartWorkflowRunCommandInput,
201
- options?: __HttpHandlerOptions
195
+ options?: __HttpHandlerOptions,
202
196
  ): Promise<StartWorkflowRunCommandOutput>;
203
197
  startWorkflowRun(
204
198
  args: StartWorkflowRunCommandInput,
205
- cb: (err: any, data?: StartWorkflowRunCommandOutput) => void
199
+ cb: (err: any, data?: StartWorkflowRunCommandOutput) => void,
206
200
  ): void;
207
201
  startWorkflowRun(
208
202
  args: StartWorkflowRunCommandInput,
209
203
  options: __HttpHandlerOptions,
210
- cb: (err: any, data?: StartWorkflowRunCommandOutput) => void
204
+ cb: (err: any, data?: StartWorkflowRunCommandOutput) => void,
211
205
  ): void;
212
206
  stopWorkflowRun(
213
207
  args: StopWorkflowRunCommandInput,
214
- options?: __HttpHandlerOptions
208
+ options?: __HttpHandlerOptions,
215
209
  ): Promise<StopWorkflowRunCommandOutput>;
216
210
  stopWorkflowRun(
217
211
  args: StopWorkflowRunCommandInput,
218
- cb: (err: any, data?: StopWorkflowRunCommandOutput) => void
212
+ cb: (err: any, data?: StopWorkflowRunCommandOutput) => void,
219
213
  ): void;
220
214
  stopWorkflowRun(
221
215
  args: StopWorkflowRunCommandInput,
222
216
  options: __HttpHandlerOptions,
223
- cb: (err: any, data?: StopWorkflowRunCommandOutput) => void
217
+ cb: (err: any, data?: StopWorkflowRunCommandOutput) => void,
224
218
  ): void;
225
219
  tagResource(
226
220
  args: TagResourceCommandInput,
227
- options?: __HttpHandlerOptions
221
+ options?: __HttpHandlerOptions,
228
222
  ): Promise<TagResourceCommandOutput>;
229
223
  tagResource(
230
224
  args: TagResourceCommandInput,
231
- cb: (err: any, data?: TagResourceCommandOutput) => void
225
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
232
226
  ): void;
233
227
  tagResource(
234
228
  args: TagResourceCommandInput,
235
229
  options: __HttpHandlerOptions,
236
- cb: (err: any, data?: TagResourceCommandOutput) => void
230
+ cb: (err: any, data?: TagResourceCommandOutput) => void,
237
231
  ): void;
238
232
  untagResource(
239
233
  args: UntagResourceCommandInput,
240
- options?: __HttpHandlerOptions
234
+ options?: __HttpHandlerOptions,
241
235
  ): Promise<UntagResourceCommandOutput>;
242
236
  untagResource(
243
237
  args: UntagResourceCommandInput,
244
- cb: (err: any, data?: UntagResourceCommandOutput) => void
238
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
245
239
  ): void;
246
240
  untagResource(
247
241
  args: UntagResourceCommandInput,
248
242
  options: __HttpHandlerOptions,
249
- cb: (err: any, data?: UntagResourceCommandOutput) => void
243
+ cb: (err: any, data?: UntagResourceCommandOutput) => void,
250
244
  ): void;
251
245
  updateWorkflow(
252
246
  args: UpdateWorkflowCommandInput,
253
- options?: __HttpHandlerOptions
247
+ options?: __HttpHandlerOptions,
254
248
  ): Promise<UpdateWorkflowCommandOutput>;
255
249
  updateWorkflow(
256
250
  args: UpdateWorkflowCommandInput,
257
- cb: (err: any, data?: UpdateWorkflowCommandOutput) => void
251
+ cb: (err: any, data?: UpdateWorkflowCommandOutput) => void,
258
252
  ): void;
259
253
  updateWorkflow(
260
254
  args: UpdateWorkflowCommandInput,
261
255
  options: __HttpHandlerOptions,
262
- cb: (err: any, data?: UpdateWorkflowCommandOutput) => void
256
+ cb: (err: any, data?: UpdateWorkflowCommandOutput) => void,
263
257
  ): void;
264
258
  paginateListTaskInstances(
265
259
  args: ListTaskInstancesCommandInput,
266
260
  paginationConfig?: Pick<
267
261
  PaginationConfiguration,
268
262
  Exclude<keyof PaginationConfiguration, "client">
269
- >
263
+ >,
270
264
  ): Paginator<ListTaskInstancesCommandOutput>;
271
265
  paginateListWorkflowRuns(
272
266
  args: ListWorkflowRunsCommandInput,
273
267
  paginationConfig?: Pick<
274
268
  PaginationConfiguration,
275
269
  Exclude<keyof PaginationConfiguration, "client">
276
- >
270
+ >,
277
271
  ): Paginator<ListWorkflowRunsCommandOutput>;
278
272
  paginateListWorkflows(
279
273
  args?: ListWorkflowsCommandInput,
280
274
  paginationConfig?: Pick<
281
275
  PaginationConfiguration,
282
276
  Exclude<keyof PaginationConfiguration, "client">
283
- >
277
+ >,
284
278
  ): Paginator<ListWorkflowsCommandOutput>;
285
279
  paginateListWorkflowVersions(
286
280
  args: ListWorkflowVersionsCommandInput,
287
281
  paginationConfig?: Pick<
288
282
  PaginationConfiguration,
289
283
  Exclude<keyof PaginationConfiguration, "client">
290
- >
284
+ >,
291
285
  ): Paginator<ListWorkflowVersionsCommandOutput>;
292
286
  }
293
- export declare class MWAAServerless
294
- extends MWAAServerlessClient
295
- implements MWAAServerless {}
287
+ export declare class MWAAServerless extends MWAAServerlessClient implements MWAAServerless {}
@@ -11,10 +11,7 @@ import {
11
11
  Client as __Client,
12
12
  } from "@smithy/core/client";
13
13
  import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
14
- import {
15
- EndpointInputConfig,
16
- EndpointResolvedConfig,
17
- } from "@smithy/core/endpoints";
14
+ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
18
15
  import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
19
16
  import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
20
17
  import {
@@ -48,10 +45,7 @@ import {
48
45
  GetTaskInstanceCommandInput,
49
46
  GetTaskInstanceCommandOutput,
50
47
  } from "./commands/GetTaskInstanceCommand";
51
- import {
52
- GetWorkflowCommandInput,
53
- GetWorkflowCommandOutput,
54
- } from "./commands/GetWorkflowCommand";
48
+ import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "./commands/GetWorkflowCommand";
55
49
  import {
56
50
  GetWorkflowRunCommandInput,
57
51
  GetWorkflowRunCommandOutput,
@@ -84,10 +78,7 @@ import {
84
78
  StopWorkflowRunCommandInput,
85
79
  StopWorkflowRunCommandOutput,
86
80
  } from "./commands/StopWorkflowRunCommand";
87
- import {
88
- TagResourceCommandInput,
89
- TagResourceCommandOutput,
90
- } from "./commands/TagResourceCommand";
81
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
91
82
  import {
92
83
  UntagResourceCommandInput,
93
84
  UntagResourceCommandOutput,
@@ -135,8 +126,7 @@ export type ServiceOutputTypes =
135
126
  | TagResourceCommandOutput
136
127
  | UntagResourceCommandOutput
137
128
  | UpdateWorkflowCommandOutput;
138
- export interface ClientDefaults
139
- extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
129
+ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
140
130
  requestHandler?: __HttpHandlerUserInput;
141
131
  sha256?: __ChecksumConstructor | __HashConstructor;
142
132
  urlParser?: __UrlParser;
@@ -161,9 +151,7 @@ export interface ClientDefaults
161
151
  extensions?: RuntimeExtension[];
162
152
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
163
153
  }
164
- export type MWAAServerlessClientConfigType = Partial<
165
- __SmithyConfiguration<__HttpHandlerOptions>
166
- > &
154
+ export type MWAAServerlessClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
167
155
  ClientDefaults &
168
156
  UserAgentInputConfig &
169
157
  RetryInputConfig &
@@ -172,8 +160,7 @@ export type MWAAServerlessClientConfigType = Partial<
172
160
  EndpointInputConfig<EndpointParameters> &
173
161
  HttpAuthSchemeInputConfig &
174
162
  ClientInputEndpointParameters;
175
- export interface MWAAServerlessClientConfig
176
- extends MWAAServerlessClientConfigType {}
163
+ export interface MWAAServerlessClientConfig extends MWAAServerlessClientConfigType {}
177
164
  export type MWAAServerlessClientResolvedConfigType =
178
165
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
179
166
  Required<ClientDefaults> &
@@ -185,8 +172,7 @@ export type MWAAServerlessClientResolvedConfigType =
185
172
  EndpointResolvedConfig<EndpointParameters> &
186
173
  HttpAuthSchemeResolvedConfig &
187
174
  ClientResolvedEndpointParameters;
188
- export interface MWAAServerlessClientResolvedConfig
189
- extends MWAAServerlessClientResolvedConfigType {}
175
+ export interface MWAAServerlessClientResolvedConfig extends MWAAServerlessClientResolvedConfigType {}
190
176
  export declare class MWAAServerlessClient extends __Client<
191
177
  __HttpHandlerOptions,
192
178
  ServiceInputTypes,
@@ -194,8 +180,6 @@ export declare class MWAAServerlessClient extends __Client<
194
180
  MWAAServerlessClientResolvedConfig
195
181
  > {
196
182
  readonly config: MWAAServerlessClientResolvedConfig;
197
- constructor(
198
- ...[configuration]: __CheckOptionalClientConfig<MWAAServerlessClientConfig>
199
- );
183
+ constructor(...[configuration]: __CheckOptionalClientConfig<MWAAServerlessClientConfig>);
200
184
  destroy(): void;
201
185
  }
@@ -7,17 +7,10 @@ import { MWAAServerlessHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
8
8
  setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
9
  httpAuthSchemes(): HttpAuthScheme[];
10
- setHttpAuthSchemeProvider(
11
- httpAuthSchemeProvider: MWAAServerlessHttpAuthSchemeProvider
12
- ): void;
10
+ setHttpAuthSchemeProvider(httpAuthSchemeProvider: MWAAServerlessHttpAuthSchemeProvider): void;
13
11
  httpAuthSchemeProvider(): MWAAServerlessHttpAuthSchemeProvider;
14
- setCredentials(
15
- credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
- ): void;
17
- credentials():
18
- | AwsCredentialIdentity
19
- | AwsCredentialIdentityProvider
20
- | undefined;
12
+ setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
13
+ credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
21
14
  }
22
15
  export type HttpAuthRuntimeConfig = Partial<{
23
16
  httpAuthSchemes: HttpAuthScheme[];
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
25
18
  credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
19
  }>;
27
20
  export declare const getHttpAuthExtensionConfiguration: (
28
- runtimeConfig: HttpAuthRuntimeConfig
21
+ runtimeConfig: HttpAuthRuntimeConfig,
29
22
  ) => HttpAuthExtensionConfiguration;
30
23
  export declare const resolveHttpAuthRuntimeConfig: (
31
- config: HttpAuthExtensionConfiguration
24
+ config: HttpAuthExtensionConfiguration,
32
25
  ) => HttpAuthRuntimeConfig;
@@ -12,36 +12,32 @@ import {
12
12
  Provider,
13
13
  } from "@smithy/types";
14
14
  import { MWAAServerlessClientResolvedConfig } from "../MWAAServerlessClient";
15
- export interface MWAAServerlessHttpAuthSchemeParameters
16
- extends HttpAuthSchemeParameters {
15
+ export interface MWAAServerlessHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
17
16
  region?: string;
18
17
  }
19
- export interface MWAAServerlessHttpAuthSchemeParametersProvider
20
- extends HttpAuthSchemeParametersProvider<
21
- MWAAServerlessClientResolvedConfig,
22
- HandlerExecutionContext,
23
- MWAAServerlessHttpAuthSchemeParameters,
24
- object
25
- > {}
18
+ export interface MWAAServerlessHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
19
+ MWAAServerlessClientResolvedConfig,
20
+ HandlerExecutionContext,
21
+ MWAAServerlessHttpAuthSchemeParameters,
22
+ object
23
+ > {}
26
24
  export declare const defaultMWAAServerlessHttpAuthSchemeParametersProvider: (
27
25
  config: MWAAServerlessClientResolvedConfig,
28
26
  context: HandlerExecutionContext,
29
- input: object
27
+ input: object,
30
28
  ) => Promise<MWAAServerlessHttpAuthSchemeParameters>;
31
- export interface MWAAServerlessHttpAuthSchemeProvider
32
- extends HttpAuthSchemeProvider<MWAAServerlessHttpAuthSchemeParameters> {}
29
+ export interface MWAAServerlessHttpAuthSchemeProvider extends HttpAuthSchemeProvider<MWAAServerlessHttpAuthSchemeParameters> {}
33
30
  export declare const defaultMWAAServerlessHttpAuthSchemeProvider: MWAAServerlessHttpAuthSchemeProvider;
34
31
  export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
32
  authSchemePreference?: string[] | Provider<string[]>;
36
33
  httpAuthSchemes?: HttpAuthScheme[];
37
34
  httpAuthSchemeProvider?: MWAAServerlessHttpAuthSchemeProvider;
38
35
  }
39
- export interface HttpAuthSchemeResolvedConfig
40
- extends AwsSdkSigV4AuthResolvedConfig {
36
+ export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
41
37
  readonly authSchemePreference: Provider<string[]>;
42
38
  readonly httpAuthSchemes: HttpAuthScheme[];
43
39
  readonly httpAuthSchemeProvider: MWAAServerlessHttpAuthSchemeProvider;
44
40
  }
45
41
  export declare const resolveHttpAuthSchemeConfig: <T>(
46
- config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
42
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
47
43
  ) => T & HttpAuthSchemeResolvedConfig;
@@ -4,22 +4,21 @@ import {
4
4
  ServiceInputTypes,
5
5
  ServiceOutputTypes,
6
6
  } from "./MWAAServerlessClient";
7
- export declare const command: <
8
- I extends ServiceInputTypes,
9
- O extends ServiceOutputTypes
10
- >(
7
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
11
8
  added: EndpointParameterInstructions,
12
9
  plugins: (
13
10
  CommandCtor: any,
14
11
  clientStack: any,
15
12
  config: any,
16
- options: any
13
+ options: any,
17
14
  ) => import("@smithy/types").Pluggable<any, any>[],
18
15
  op: string,
19
16
  $: import("@smithy/types").StaticOperationSchema,
20
- smithyContext?: Record<string, unknown>
17
+ smithyContext?: Record<string, unknown>,
21
18
  ) => {
22
- new (input: I): import("@smithy/core/client").CommandImpl<
19
+ new (
20
+ input: I,
21
+ ): import("@smithy/core/client").CommandImpl<
23
22
  I,
24
23
  O,
25
24
  MWAAServerlessClientResolvedConfig,
@@ -38,9 +37,4 @@ export declare const command: <
38
37
  getEndpointParameterInstructions(): EndpointParameterInstructions;
39
38
  };
40
39
  export declare const _ep0: EndpointParameterInstructions;
41
- export declare const _mw0: (
42
- Command: any,
43
- cs: any,
44
- config: any,
45
- o: any
46
- ) => never[];
40
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- CreateWorkflowRequest,
4
- CreateWorkflowResponse,
5
- } from "../models/models_0";
2
+ import { CreateWorkflowRequest, CreateWorkflowResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface CreateWorkflowCommandInput extends CreateWorkflowRequest {}
8
- export interface CreateWorkflowCommandOutput
9
- extends CreateWorkflowResponse,
10
- __MetadataBearer {}
5
+ export interface CreateWorkflowCommandOutput extends CreateWorkflowResponse, __MetadataBearer {}
11
6
  declare const CreateWorkflowCommand_base: {
12
7
  new (
13
- input: CreateWorkflowCommandInput
8
+ input: CreateWorkflowCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  CreateWorkflowCommandInput,
16
11
  CreateWorkflowCommandOutput,
@@ -19,7 +14,7 @@ declare const CreateWorkflowCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: CreateWorkflowCommandInput
17
+ input: CreateWorkflowCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  CreateWorkflowCommandInput,
25
20
  CreateWorkflowCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- DeleteWorkflowRequest,
4
- DeleteWorkflowResponse,
5
- } from "../models/models_0";
2
+ import { DeleteWorkflowRequest, DeleteWorkflowResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface DeleteWorkflowCommandInput extends DeleteWorkflowRequest {}
8
- export interface DeleteWorkflowCommandOutput
9
- extends DeleteWorkflowResponse,
10
- __MetadataBearer {}
5
+ export interface DeleteWorkflowCommandOutput extends DeleteWorkflowResponse, __MetadataBearer {}
11
6
  declare const DeleteWorkflowCommand_base: {
12
7
  new (
13
- input: DeleteWorkflowCommandInput
8
+ input: DeleteWorkflowCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  DeleteWorkflowCommandInput,
16
11
  DeleteWorkflowCommandOutput,
@@ -19,7 +14,7 @@ declare const DeleteWorkflowCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: DeleteWorkflowCommandInput
17
+ input: DeleteWorkflowCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  DeleteWorkflowCommandInput,
25
20
  DeleteWorkflowCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetTaskInstanceRequest,
4
- GetTaskInstanceResponse,
5
- } from "../models/models_0";
2
+ import { GetTaskInstanceRequest, GetTaskInstanceResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface GetTaskInstanceCommandInput extends GetTaskInstanceRequest {}
8
- export interface GetTaskInstanceCommandOutput
9
- extends GetTaskInstanceResponse,
10
- __MetadataBearer {}
5
+ export interface GetTaskInstanceCommandOutput extends GetTaskInstanceResponse, __MetadataBearer {}
11
6
  declare const GetTaskInstanceCommand_base: {
12
7
  new (
13
- input: GetTaskInstanceCommandInput
8
+ input: GetTaskInstanceCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  GetTaskInstanceCommandInput,
16
11
  GetTaskInstanceCommandOutput,
@@ -19,7 +14,7 @@ declare const GetTaskInstanceCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: GetTaskInstanceCommandInput
17
+ input: GetTaskInstanceCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  GetTaskInstanceCommandInput,
25
20
  GetTaskInstanceCommandOutput,
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import { GetWorkflowRequest, GetWorkflowResponse } from "../models/models_0";
3
3
  export { __MetadataBearer };
4
4
  export interface GetWorkflowCommandInput extends GetWorkflowRequest {}
5
- export interface GetWorkflowCommandOutput
6
- extends GetWorkflowResponse,
7
- __MetadataBearer {}
5
+ export interface GetWorkflowCommandOutput extends GetWorkflowResponse, __MetadataBearer {}
8
6
  declare const GetWorkflowCommand_base: {
9
7
  new (
10
- input: GetWorkflowCommandInput
8
+ input: GetWorkflowCommandInput,
11
9
  ): import("@smithy/core/client").CommandImpl<
12
10
  GetWorkflowCommandInput,
13
11
  GetWorkflowCommandOutput,
@@ -16,7 +14,7 @@ declare const GetWorkflowCommand_base: {
16
14
  import("..").ServiceOutputTypes
17
15
  >;
18
16
  new (
19
- input: GetWorkflowCommandInput
17
+ input: GetWorkflowCommandInput,
20
18
  ): import("@smithy/core/client").CommandImpl<
21
19
  GetWorkflowCommandInput,
22
20
  GetWorkflowCommandOutput,
@@ -1,16 +1,11 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import {
3
- GetWorkflowRunRequest,
4
- GetWorkflowRunResponse,
5
- } from "../models/models_0";
2
+ import { GetWorkflowRunRequest, GetWorkflowRunResponse } from "../models/models_0";
6
3
  export { __MetadataBearer };
7
4
  export interface GetWorkflowRunCommandInput extends GetWorkflowRunRequest {}
8
- export interface GetWorkflowRunCommandOutput
9
- extends GetWorkflowRunResponse,
10
- __MetadataBearer {}
5
+ export interface GetWorkflowRunCommandOutput extends GetWorkflowRunResponse, __MetadataBearer {}
11
6
  declare const GetWorkflowRunCommand_base: {
12
7
  new (
13
- input: GetWorkflowRunCommandInput
8
+ input: GetWorkflowRunCommandInput,
14
9
  ): import("@smithy/core/client").CommandImpl<
15
10
  GetWorkflowRunCommandInput,
16
11
  GetWorkflowRunCommandOutput,
@@ -19,7 +14,7 @@ declare const GetWorkflowRunCommand_base: {
19
14
  import("..").ServiceOutputTypes
20
15
  >;
21
16
  new (
22
- input: GetWorkflowRunCommandInput
17
+ input: GetWorkflowRunCommandInput,
23
18
  ): import("@smithy/core/client").CommandImpl<
24
19
  GetWorkflowRunCommandInput,
25
20
  GetWorkflowRunCommandOutput,