@aws-sdk/client-mwaa-serverless 3.933.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 (131) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +325 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +1324 -0
  7. package/dist-cjs/runtimeConfig.browser.js +39 -0
  8. package/dist-cjs/runtimeConfig.js +56 -0
  9. package/dist-cjs/runtimeConfig.native.js +15 -0
  10. package/dist-cjs/runtimeConfig.shared.js +41 -0
  11. package/dist-es/MWAAServerless.js +37 -0
  12. package/dist-es/MWAAServerlessClient.js +50 -0
  13. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  14. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  15. package/dist-es/commands/CreateWorkflowCommand.js +16 -0
  16. package/dist-es/commands/DeleteWorkflowCommand.js +16 -0
  17. package/dist-es/commands/GetTaskInstanceCommand.js +16 -0
  18. package/dist-es/commands/GetWorkflowCommand.js +16 -0
  19. package/dist-es/commands/GetWorkflowRunCommand.js +16 -0
  20. package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
  21. package/dist-es/commands/ListTaskInstancesCommand.js +16 -0
  22. package/dist-es/commands/ListWorkflowRunsCommand.js +16 -0
  23. package/dist-es/commands/ListWorkflowVersionsCommand.js +16 -0
  24. package/dist-es/commands/ListWorkflowsCommand.js +16 -0
  25. package/dist-es/commands/StartWorkflowRunCommand.js +16 -0
  26. package/dist-es/commands/StopWorkflowRunCommand.js +16 -0
  27. package/dist-es/commands/TagResourceCommand.js +16 -0
  28. package/dist-es/commands/UntagResourceCommand.js +16 -0
  29. package/dist-es/commands/UpdateWorkflowCommand.js +16 -0
  30. package/dist-es/commands/index.js +15 -0
  31. package/dist-es/endpoint/EndpointParameters.js +11 -0
  32. package/dist-es/endpoint/endpointResolver.js +14 -0
  33. package/dist-es/endpoint/ruleset.js +4 -0
  34. package/dist-es/extensionConfiguration.js +1 -0
  35. package/dist-es/index.js +6 -0
  36. package/dist-es/models/MWAAServerlessServiceException.js +8 -0
  37. package/dist-es/models/index.js +1 -0
  38. package/dist-es/models/models_0.js +193 -0
  39. package/dist-es/pagination/Interfaces.js +1 -0
  40. package/dist-es/pagination/ListTaskInstancesPaginator.js +4 -0
  41. package/dist-es/pagination/ListWorkflowRunsPaginator.js +4 -0
  42. package/dist-es/pagination/ListWorkflowVersionsPaginator.js +4 -0
  43. package/dist-es/pagination/ListWorkflowsPaginator.js +4 -0
  44. package/dist-es/pagination/index.js +5 -0
  45. package/dist-es/runtimeConfig.browser.js +34 -0
  46. package/dist-es/runtimeConfig.js +51 -0
  47. package/dist-es/runtimeConfig.native.js +11 -0
  48. package/dist-es/runtimeConfig.shared.js +37 -0
  49. package/dist-es/runtimeExtensions.js +9 -0
  50. package/dist-es/schemas/schemas_0.js +771 -0
  51. package/dist-types/MWAAServerless.d.ts +116 -0
  52. package/dist-types/MWAAServerlessClient.d.ts +211 -0
  53. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  54. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  55. package/dist-types/commands/CreateWorkflowCommand.d.ts +131 -0
  56. package/dist-types/commands/DeleteWorkflowCommand.d.ts +94 -0
  57. package/dist-types/commands/GetTaskInstanceCommand.d.ts +110 -0
  58. package/dist-types/commands/GetWorkflowCommand.d.ts +126 -0
  59. package/dist-types/commands/GetWorkflowRunCommand.d.ts +115 -0
  60. package/dist-types/commands/ListTagsForResourceCommand.d.ts +94 -0
  61. package/dist-types/commands/ListTaskInstancesCommand.d.ts +103 -0
  62. package/dist-types/commands/ListWorkflowRunsCommand.d.ts +106 -0
  63. package/dist-types/commands/ListWorkflowVersionsCommand.d.ts +109 -0
  64. package/dist-types/commands/ListWorkflowsCommand.d.ts +102 -0
  65. package/dist-types/commands/StartWorkflowRunCommand.d.ts +105 -0
  66. package/dist-types/commands/StopWorkflowRunCommand.d.ts +96 -0
  67. package/dist-types/commands/TagResourceCommand.d.ts +93 -0
  68. package/dist-types/commands/UntagResourceCommand.d.ts +93 -0
  69. package/dist-types/commands/UpdateWorkflowCommand.d.ts +123 -0
  70. package/dist-types/commands/index.d.ts +15 -0
  71. package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
  72. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  73. package/dist-types/endpoint/ruleset.d.ts +2 -0
  74. package/dist-types/extensionConfiguration.d.ts +9 -0
  75. package/dist-types/index.d.ts +14 -0
  76. package/dist-types/models/MWAAServerlessServiceException.d.ts +14 -0
  77. package/dist-types/models/index.d.ts +1 -0
  78. package/dist-types/models/models_0.d.ts +1363 -0
  79. package/dist-types/pagination/Interfaces.d.ts +8 -0
  80. package/dist-types/pagination/ListTaskInstancesPaginator.d.ts +7 -0
  81. package/dist-types/pagination/ListWorkflowRunsPaginator.d.ts +7 -0
  82. package/dist-types/pagination/ListWorkflowVersionsPaginator.d.ts +7 -0
  83. package/dist-types/pagination/ListWorkflowsPaginator.d.ts +7 -0
  84. package/dist-types/pagination/index.d.ts +5 -0
  85. package/dist-types/runtimeConfig.browser.d.ts +51 -0
  86. package/dist-types/runtimeConfig.d.ts +51 -0
  87. package/dist-types/runtimeConfig.native.d.ts +50 -0
  88. package/dist-types/runtimeConfig.shared.d.ts +22 -0
  89. package/dist-types/runtimeExtensions.d.ts +17 -0
  90. package/dist-types/schemas/schemas_0.d.ts +81 -0
  91. package/dist-types/ts3.4/MWAAServerless.d.ts +263 -0
  92. package/dist-types/ts3.4/MWAAServerlessClient.d.ts +214 -0
  93. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  94. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  95. package/dist-types/ts3.4/commands/CreateWorkflowCommand.d.ts +50 -0
  96. package/dist-types/ts3.4/commands/DeleteWorkflowCommand.d.ts +50 -0
  97. package/dist-types/ts3.4/commands/GetTaskInstanceCommand.d.ts +50 -0
  98. package/dist-types/ts3.4/commands/GetWorkflowCommand.d.ts +47 -0
  99. package/dist-types/ts3.4/commands/GetWorkflowRunCommand.d.ts +50 -0
  100. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  101. package/dist-types/ts3.4/commands/ListTaskInstancesCommand.d.ts +51 -0
  102. package/dist-types/ts3.4/commands/ListWorkflowRunsCommand.d.ts +50 -0
  103. package/dist-types/ts3.4/commands/ListWorkflowVersionsCommand.d.ts +51 -0
  104. package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +50 -0
  105. package/dist-types/ts3.4/commands/StartWorkflowRunCommand.d.ts +50 -0
  106. package/dist-types/ts3.4/commands/StopWorkflowRunCommand.d.ts +50 -0
  107. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  108. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  109. package/dist-types/ts3.4/commands/UpdateWorkflowCommand.d.ts +50 -0
  110. package/dist-types/ts3.4/commands/index.d.ts +15 -0
  111. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  112. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  113. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  114. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  115. package/dist-types/ts3.4/index.d.ts +9 -0
  116. package/dist-types/ts3.4/models/MWAAServerlessServiceException.d.ts +9 -0
  117. package/dist-types/ts3.4/models/index.d.ts +1 -0
  118. package/dist-types/ts3.4/models/models_0.d.ts +396 -0
  119. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  120. package/dist-types/ts3.4/pagination/ListTaskInstancesPaginator.d.ts +11 -0
  121. package/dist-types/ts3.4/pagination/ListWorkflowRunsPaginator.d.ts +11 -0
  122. package/dist-types/ts3.4/pagination/ListWorkflowVersionsPaginator.d.ts +11 -0
  123. package/dist-types/ts3.4/pagination/ListWorkflowsPaginator.d.ts +11 -0
  124. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  125. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
  126. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  127. package/dist-types/ts3.4/runtimeConfig.native.d.ts +99 -0
  128. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +25 -0
  129. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  130. package/dist-types/ts3.4/schemas/schemas_0.d.ts +87 -0
  131. package/package.json +99 -0
@@ -0,0 +1,214 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ UserAgentInputConfig,
7
+ UserAgentResolvedConfig,
8
+ } from "@aws-sdk/middleware-user-agent";
9
+ import {
10
+ RegionInputConfig,
11
+ RegionResolvedConfig,
12
+ } from "@smithy/config-resolver";
13
+ import {
14
+ EndpointInputConfig,
15
+ EndpointResolvedConfig,
16
+ } from "@smithy/middleware-endpoint";
17
+ import {
18
+ RetryInputConfig,
19
+ RetryResolvedConfig,
20
+ } from "@smithy/middleware-retry";
21
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
+ import {
23
+ Client as __Client,
24
+ DefaultsMode as __DefaultsMode,
25
+ SmithyConfiguration as __SmithyConfiguration,
26
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
27
+ } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ BodyLengthCalculator as __BodyLengthCalculator,
31
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
+ ChecksumConstructor as __ChecksumConstructor,
33
+ ClientProtocol,
34
+ Decoder as __Decoder,
35
+ Encoder as __Encoder,
36
+ HashConstructor as __HashConstructor,
37
+ HttpHandlerOptions as __HttpHandlerOptions,
38
+ HttpRequest,
39
+ HttpResponse,
40
+ Logger as __Logger,
41
+ Provider as __Provider,
42
+ Provider,
43
+ StreamCollector as __StreamCollector,
44
+ UrlParser as __UrlParser,
45
+ UserAgent as __UserAgent,
46
+ } from "@smithy/types";
47
+ import {
48
+ HttpAuthSchemeInputConfig,
49
+ HttpAuthSchemeResolvedConfig,
50
+ } from "./auth/httpAuthSchemeProvider";
51
+ import {
52
+ CreateWorkflowCommandInput,
53
+ CreateWorkflowCommandOutput,
54
+ } from "./commands/CreateWorkflowCommand";
55
+ import {
56
+ DeleteWorkflowCommandInput,
57
+ DeleteWorkflowCommandOutput,
58
+ } from "./commands/DeleteWorkflowCommand";
59
+ import {
60
+ GetTaskInstanceCommandInput,
61
+ GetTaskInstanceCommandOutput,
62
+ } from "./commands/GetTaskInstanceCommand";
63
+ import {
64
+ GetWorkflowCommandInput,
65
+ GetWorkflowCommandOutput,
66
+ } from "./commands/GetWorkflowCommand";
67
+ import {
68
+ GetWorkflowRunCommandInput,
69
+ GetWorkflowRunCommandOutput,
70
+ } from "./commands/GetWorkflowRunCommand";
71
+ import {
72
+ ListTagsForResourceCommandInput,
73
+ ListTagsForResourceCommandOutput,
74
+ } from "./commands/ListTagsForResourceCommand";
75
+ import {
76
+ ListTaskInstancesCommandInput,
77
+ ListTaskInstancesCommandOutput,
78
+ } from "./commands/ListTaskInstancesCommand";
79
+ import {
80
+ ListWorkflowRunsCommandInput,
81
+ ListWorkflowRunsCommandOutput,
82
+ } from "./commands/ListWorkflowRunsCommand";
83
+ import {
84
+ ListWorkflowsCommandInput,
85
+ ListWorkflowsCommandOutput,
86
+ } from "./commands/ListWorkflowsCommand";
87
+ import {
88
+ ListWorkflowVersionsCommandInput,
89
+ ListWorkflowVersionsCommandOutput,
90
+ } from "./commands/ListWorkflowVersionsCommand";
91
+ import {
92
+ StartWorkflowRunCommandInput,
93
+ StartWorkflowRunCommandOutput,
94
+ } from "./commands/StartWorkflowRunCommand";
95
+ import {
96
+ StopWorkflowRunCommandInput,
97
+ StopWorkflowRunCommandOutput,
98
+ } from "./commands/StopWorkflowRunCommand";
99
+ import {
100
+ TagResourceCommandInput,
101
+ TagResourceCommandOutput,
102
+ } from "./commands/TagResourceCommand";
103
+ import {
104
+ UntagResourceCommandInput,
105
+ UntagResourceCommandOutput,
106
+ } from "./commands/UntagResourceCommand";
107
+ import {
108
+ UpdateWorkflowCommandInput,
109
+ UpdateWorkflowCommandOutput,
110
+ } from "./commands/UpdateWorkflowCommand";
111
+ import {
112
+ ClientInputEndpointParameters,
113
+ ClientResolvedEndpointParameters,
114
+ EndpointParameters,
115
+ } from "./endpoint/EndpointParameters";
116
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
117
+ export { __Client };
118
+ export type ServiceInputTypes =
119
+ | CreateWorkflowCommandInput
120
+ | DeleteWorkflowCommandInput
121
+ | GetTaskInstanceCommandInput
122
+ | GetWorkflowCommandInput
123
+ | GetWorkflowRunCommandInput
124
+ | ListTagsForResourceCommandInput
125
+ | ListTaskInstancesCommandInput
126
+ | ListWorkflowRunsCommandInput
127
+ | ListWorkflowVersionsCommandInput
128
+ | ListWorkflowsCommandInput
129
+ | StartWorkflowRunCommandInput
130
+ | StopWorkflowRunCommandInput
131
+ | TagResourceCommandInput
132
+ | UntagResourceCommandInput
133
+ | UpdateWorkflowCommandInput;
134
+ export type ServiceOutputTypes =
135
+ | CreateWorkflowCommandOutput
136
+ | DeleteWorkflowCommandOutput
137
+ | GetTaskInstanceCommandOutput
138
+ | GetWorkflowCommandOutput
139
+ | GetWorkflowRunCommandOutput
140
+ | ListTagsForResourceCommandOutput
141
+ | ListTaskInstancesCommandOutput
142
+ | ListWorkflowRunsCommandOutput
143
+ | ListWorkflowVersionsCommandOutput
144
+ | ListWorkflowsCommandOutput
145
+ | StartWorkflowRunCommandOutput
146
+ | StopWorkflowRunCommandOutput
147
+ | TagResourceCommandOutput
148
+ | UntagResourceCommandOutput
149
+ | UpdateWorkflowCommandOutput;
150
+ export interface ClientDefaults
151
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
152
+ requestHandler?: __HttpHandlerUserInput;
153
+ sha256?: __ChecksumConstructor | __HashConstructor;
154
+ urlParser?: __UrlParser;
155
+ bodyLengthChecker?: __BodyLengthCalculator;
156
+ streamCollector?: __StreamCollector;
157
+ base64Decoder?: __Decoder;
158
+ base64Encoder?: __Encoder;
159
+ utf8Decoder?: __Decoder;
160
+ utf8Encoder?: __Encoder;
161
+ runtime?: string;
162
+ disableHostPrefix?: boolean;
163
+ serviceId?: string;
164
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
165
+ useFipsEndpoint?: boolean | __Provider<boolean>;
166
+ region?: string | __Provider<string>;
167
+ profile?: string;
168
+ defaultUserAgentProvider?: Provider<__UserAgent>;
169
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
170
+ maxAttempts?: number | __Provider<number>;
171
+ retryMode?: string | __Provider<string>;
172
+ logger?: __Logger;
173
+ extensions?: RuntimeExtension[];
174
+ protocol?: ClientProtocol<HttpRequest, HttpResponse>;
175
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
176
+ }
177
+ export type MWAAServerlessClientConfigType = Partial<
178
+ __SmithyConfiguration<__HttpHandlerOptions>
179
+ > &
180
+ ClientDefaults &
181
+ UserAgentInputConfig &
182
+ RetryInputConfig &
183
+ RegionInputConfig &
184
+ HostHeaderInputConfig &
185
+ EndpointInputConfig<EndpointParameters> &
186
+ HttpAuthSchemeInputConfig &
187
+ ClientInputEndpointParameters;
188
+ export interface MWAAServerlessClientConfig
189
+ extends MWAAServerlessClientConfigType {}
190
+ export type MWAAServerlessClientResolvedConfigType =
191
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
192
+ Required<ClientDefaults> &
193
+ RuntimeExtensionsConfig &
194
+ UserAgentResolvedConfig &
195
+ RetryResolvedConfig &
196
+ RegionResolvedConfig &
197
+ HostHeaderResolvedConfig &
198
+ EndpointResolvedConfig<EndpointParameters> &
199
+ HttpAuthSchemeResolvedConfig &
200
+ ClientResolvedEndpointParameters;
201
+ export interface MWAAServerlessClientResolvedConfig
202
+ extends MWAAServerlessClientResolvedConfigType {}
203
+ export declare class MWAAServerlessClient extends __Client<
204
+ __HttpHandlerOptions,
205
+ ServiceInputTypes,
206
+ ServiceOutputTypes,
207
+ MWAAServerlessClientResolvedConfig
208
+ > {
209
+ readonly config: MWAAServerlessClientResolvedConfig;
210
+ constructor(
211
+ ...[configuration]: __CheckOptionalClientConfig<MWAAServerlessClientConfig>
212
+ );
213
+ destroy(): void;
214
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ AwsCredentialIdentity,
3
+ AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
+ } from "@smithy/types";
6
+ import { MWAAServerlessHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
+ export interface HttpAuthExtensionConfiguration {
8
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
+ httpAuthSchemes(): HttpAuthScheme[];
10
+ setHttpAuthSchemeProvider(
11
+ httpAuthSchemeProvider: MWAAServerlessHttpAuthSchemeProvider
12
+ ): void;
13
+ httpAuthSchemeProvider(): MWAAServerlessHttpAuthSchemeProvider;
14
+ setCredentials(
15
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
+ ): void;
17
+ credentials():
18
+ | AwsCredentialIdentity
19
+ | AwsCredentialIdentityProvider
20
+ | undefined;
21
+ }
22
+ export type HttpAuthRuntimeConfig = Partial<{
23
+ httpAuthSchemes: HttpAuthScheme[];
24
+ httpAuthSchemeProvider: MWAAServerlessHttpAuthSchemeProvider;
25
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
+ }>;
27
+ export declare const getHttpAuthExtensionConfiguration: (
28
+ runtimeConfig: HttpAuthRuntimeConfig
29
+ ) => HttpAuthExtensionConfiguration;
30
+ export declare const resolveHttpAuthRuntimeConfig: (
31
+ config: HttpAuthExtensionConfiguration
32
+ ) => HttpAuthRuntimeConfig;
@@ -0,0 +1,47 @@
1
+ import {
2
+ AwsSdkSigV4AuthInputConfig,
3
+ AwsSdkSigV4AuthResolvedConfig,
4
+ AwsSdkSigV4PreviouslyResolved,
5
+ } from "@aws-sdk/core";
6
+ import {
7
+ HandlerExecutionContext,
8
+ HttpAuthScheme,
9
+ HttpAuthSchemeParameters,
10
+ HttpAuthSchemeParametersProvider,
11
+ HttpAuthSchemeProvider,
12
+ Provider,
13
+ } from "@smithy/types";
14
+ import { MWAAServerlessClientResolvedConfig } from "../MWAAServerlessClient";
15
+ export interface MWAAServerlessHttpAuthSchemeParameters
16
+ extends HttpAuthSchemeParameters {
17
+ region?: string;
18
+ }
19
+ export interface MWAAServerlessHttpAuthSchemeParametersProvider
20
+ extends HttpAuthSchemeParametersProvider<
21
+ MWAAServerlessClientResolvedConfig,
22
+ HandlerExecutionContext,
23
+ MWAAServerlessHttpAuthSchemeParameters,
24
+ object
25
+ > {}
26
+ export declare const defaultMWAAServerlessHttpAuthSchemeParametersProvider: (
27
+ config: MWAAServerlessClientResolvedConfig,
28
+ context: HandlerExecutionContext,
29
+ input: object
30
+ ) => Promise<MWAAServerlessHttpAuthSchemeParameters>;
31
+ export interface MWAAServerlessHttpAuthSchemeProvider
32
+ extends HttpAuthSchemeProvider<MWAAServerlessHttpAuthSchemeParameters> {}
33
+ export declare const defaultMWAAServerlessHttpAuthSchemeProvider: MWAAServerlessHttpAuthSchemeProvider;
34
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
+ authSchemePreference?: string[] | Provider<string[]>;
36
+ httpAuthSchemes?: HttpAuthScheme[];
37
+ httpAuthSchemeProvider?: MWAAServerlessHttpAuthSchemeProvider;
38
+ }
39
+ export interface HttpAuthSchemeResolvedConfig
40
+ extends AwsSdkSigV4AuthResolvedConfig {
41
+ readonly authSchemePreference: Provider<string[]>;
42
+ readonly httpAuthSchemes: HttpAuthScheme[];
43
+ readonly httpAuthSchemeProvider: MWAAServerlessHttpAuthSchemeProvider;
44
+ }
45
+ export declare const resolveHttpAuthSchemeConfig: <T>(
46
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
47
+ ) => T & HttpAuthSchemeResolvedConfig;
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateWorkflowRequest,
5
+ CreateWorkflowResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ MWAAServerlessClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../MWAAServerlessClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateWorkflowCommandInput extends CreateWorkflowRequest {}
15
+ export interface CreateWorkflowCommandOutput
16
+ extends CreateWorkflowResponse,
17
+ __MetadataBearer {}
18
+ declare const CreateWorkflowCommand_base: {
19
+ new (
20
+ input: CreateWorkflowCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateWorkflowCommandInput,
23
+ CreateWorkflowCommandOutput,
24
+ MWAAServerlessClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: CreateWorkflowCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateWorkflowCommandInput,
32
+ CreateWorkflowCommandOutput,
33
+ MWAAServerlessClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateWorkflowCommand extends CreateWorkflowCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CreateWorkflowRequest;
43
+ output: CreateWorkflowResponse;
44
+ };
45
+ sdk: {
46
+ input: CreateWorkflowCommandInput;
47
+ output: CreateWorkflowCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteWorkflowRequest,
5
+ DeleteWorkflowResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ MWAAServerlessClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../MWAAServerlessClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteWorkflowCommandInput extends DeleteWorkflowRequest {}
15
+ export interface DeleteWorkflowCommandOutput
16
+ extends DeleteWorkflowResponse,
17
+ __MetadataBearer {}
18
+ declare const DeleteWorkflowCommand_base: {
19
+ new (
20
+ input: DeleteWorkflowCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeleteWorkflowCommandInput,
23
+ DeleteWorkflowCommandOutput,
24
+ MWAAServerlessClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: DeleteWorkflowCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteWorkflowCommandInput,
32
+ DeleteWorkflowCommandOutput,
33
+ MWAAServerlessClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DeleteWorkflowCommand extends DeleteWorkflowCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: DeleteWorkflowRequest;
43
+ output: DeleteWorkflowResponse;
44
+ };
45
+ sdk: {
46
+ input: DeleteWorkflowCommandInput;
47
+ output: DeleteWorkflowCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetTaskInstanceRequest,
5
+ GetTaskInstanceResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ MWAAServerlessClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../MWAAServerlessClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetTaskInstanceCommandInput extends GetTaskInstanceRequest {}
15
+ export interface GetTaskInstanceCommandOutput
16
+ extends GetTaskInstanceResponse,
17
+ __MetadataBearer {}
18
+ declare const GetTaskInstanceCommand_base: {
19
+ new (
20
+ input: GetTaskInstanceCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetTaskInstanceCommandInput,
23
+ GetTaskInstanceCommandOutput,
24
+ MWAAServerlessClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: GetTaskInstanceCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetTaskInstanceCommandInput,
32
+ GetTaskInstanceCommandOutput,
33
+ MWAAServerlessClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetTaskInstanceCommand extends GetTaskInstanceCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetTaskInstanceRequest;
43
+ output: GetTaskInstanceResponse;
44
+ };
45
+ sdk: {
46
+ input: GetTaskInstanceCommandInput;
47
+ output: GetTaskInstanceCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetWorkflowRequest, GetWorkflowResponse } from "../models/models_0";
4
+ import {
5
+ MWAAServerlessClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../MWAAServerlessClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetWorkflowCommandInput extends GetWorkflowRequest {}
12
+ export interface GetWorkflowCommandOutput
13
+ extends GetWorkflowResponse,
14
+ __MetadataBearer {}
15
+ declare const GetWorkflowCommand_base: {
16
+ new (
17
+ input: GetWorkflowCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetWorkflowCommandInput,
20
+ GetWorkflowCommandOutput,
21
+ MWAAServerlessClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: GetWorkflowCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetWorkflowCommandInput,
29
+ GetWorkflowCommandOutput,
30
+ MWAAServerlessClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetWorkflowCommand extends GetWorkflowCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetWorkflowRequest;
40
+ output: GetWorkflowResponse;
41
+ };
42
+ sdk: {
43
+ input: GetWorkflowCommandInput;
44
+ output: GetWorkflowCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetWorkflowRunRequest,
5
+ GetWorkflowRunResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ MWAAServerlessClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../MWAAServerlessClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetWorkflowRunCommandInput extends GetWorkflowRunRequest {}
15
+ export interface GetWorkflowRunCommandOutput
16
+ extends GetWorkflowRunResponse,
17
+ __MetadataBearer {}
18
+ declare const GetWorkflowRunCommand_base: {
19
+ new (
20
+ input: GetWorkflowRunCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetWorkflowRunCommandInput,
23
+ GetWorkflowRunCommandOutput,
24
+ MWAAServerlessClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: GetWorkflowRunCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetWorkflowRunCommandInput,
32
+ GetWorkflowRunCommandOutput,
33
+ MWAAServerlessClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetWorkflowRunCommand extends GetWorkflowRunCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetWorkflowRunRequest;
43
+ output: GetWorkflowRunResponse;
44
+ };
45
+ sdk: {
46
+ input: GetWorkflowRunCommandInput;
47
+ output: GetWorkflowRunCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListTagsForResourceRequest,
5
+ ListTagsForResourceResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ MWAAServerlessClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../MWAAServerlessClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListTagsForResourceCommandInput
15
+ extends ListTagsForResourceRequest {}
16
+ export interface ListTagsForResourceCommandOutput
17
+ extends ListTagsForResourceResponse,
18
+ __MetadataBearer {}
19
+ declare const ListTagsForResourceCommand_base: {
20
+ new (
21
+ input: ListTagsForResourceCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ MWAAServerlessClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListTagsForResourceCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListTagsForResourceCommandInput,
33
+ ListTagsForResourceCommandOutput,
34
+ MWAAServerlessClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListTagsForResourceRequest;
44
+ output: ListTagsForResourceResponse;
45
+ };
46
+ sdk: {
47
+ input: ListTagsForResourceCommandInput;
48
+ output: ListTagsForResourceCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListTaskInstancesRequest,
5
+ ListTaskInstancesResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ MWAAServerlessClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../MWAAServerlessClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListTaskInstancesCommandInput
15
+ extends ListTaskInstancesRequest {}
16
+ export interface ListTaskInstancesCommandOutput
17
+ extends ListTaskInstancesResponse,
18
+ __MetadataBearer {}
19
+ declare const ListTaskInstancesCommand_base: {
20
+ new (
21
+ input: ListTaskInstancesCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListTaskInstancesCommandInput,
24
+ ListTaskInstancesCommandOutput,
25
+ MWAAServerlessClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListTaskInstancesCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListTaskInstancesCommandInput,
33
+ ListTaskInstancesCommandOutput,
34
+ MWAAServerlessClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListTaskInstancesCommand extends ListTaskInstancesCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListTaskInstancesRequest;
44
+ output: ListTaskInstancesResponse;
45
+ };
46
+ sdk: {
47
+ input: ListTaskInstancesCommandInput;
48
+ output: ListTaskInstancesCommandOutput;
49
+ };
50
+ };
51
+ }