@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,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListWorkflowRunsRequest,
5
+ ListWorkflowRunsResponse,
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 ListWorkflowRunsCommandInput extends ListWorkflowRunsRequest {}
15
+ export interface ListWorkflowRunsCommandOutput
16
+ extends ListWorkflowRunsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListWorkflowRunsCommand_base: {
19
+ new (
20
+ input: ListWorkflowRunsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListWorkflowRunsCommandInput,
23
+ ListWorkflowRunsCommandOutput,
24
+ MWAAServerlessClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: ListWorkflowRunsCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListWorkflowRunsCommandInput,
32
+ ListWorkflowRunsCommandOutput,
33
+ MWAAServerlessClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListWorkflowRunsCommand extends ListWorkflowRunsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListWorkflowRunsRequest;
43
+ output: ListWorkflowRunsResponse;
44
+ };
45
+ sdk: {
46
+ input: ListWorkflowRunsCommandInput;
47
+ output: ListWorkflowRunsCommandOutput;
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
+ ListWorkflowVersionsRequest,
5
+ ListWorkflowVersionsResponse,
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 ListWorkflowVersionsCommandInput
15
+ extends ListWorkflowVersionsRequest {}
16
+ export interface ListWorkflowVersionsCommandOutput
17
+ extends ListWorkflowVersionsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListWorkflowVersionsCommand_base: {
20
+ new (
21
+ input: ListWorkflowVersionsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListWorkflowVersionsCommandInput,
24
+ ListWorkflowVersionsCommandOutput,
25
+ MWAAServerlessClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListWorkflowVersionsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListWorkflowVersionsCommandInput,
33
+ ListWorkflowVersionsCommandOutput,
34
+ MWAAServerlessClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListWorkflowVersionsCommand extends ListWorkflowVersionsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListWorkflowVersionsRequest;
44
+ output: ListWorkflowVersionsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListWorkflowVersionsCommandInput;
48
+ output: ListWorkflowVersionsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListWorkflowsRequest,
5
+ ListWorkflowsResponse,
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 ListWorkflowsCommandInput extends ListWorkflowsRequest {}
15
+ export interface ListWorkflowsCommandOutput
16
+ extends ListWorkflowsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListWorkflowsCommand_base: {
19
+ new (
20
+ input: ListWorkflowsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListWorkflowsCommandInput,
23
+ ListWorkflowsCommandOutput,
24
+ MWAAServerlessClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ ...[input]: [] | [ListWorkflowsCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListWorkflowsCommandInput,
32
+ ListWorkflowsCommandOutput,
33
+ MWAAServerlessClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListWorkflowsCommand extends ListWorkflowsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListWorkflowsRequest;
43
+ output: ListWorkflowsResponse;
44
+ };
45
+ sdk: {
46
+ input: ListWorkflowsCommandInput;
47
+ output: ListWorkflowsCommandOutput;
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
+ StartWorkflowRunRequest,
5
+ StartWorkflowRunResponse,
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 StartWorkflowRunCommandInput extends StartWorkflowRunRequest {}
15
+ export interface StartWorkflowRunCommandOutput
16
+ extends StartWorkflowRunResponse,
17
+ __MetadataBearer {}
18
+ declare const StartWorkflowRunCommand_base: {
19
+ new (
20
+ input: StartWorkflowRunCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ StartWorkflowRunCommandInput,
23
+ StartWorkflowRunCommandOutput,
24
+ MWAAServerlessClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: StartWorkflowRunCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ StartWorkflowRunCommandInput,
32
+ StartWorkflowRunCommandOutput,
33
+ MWAAServerlessClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class StartWorkflowRunCommand extends StartWorkflowRunCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: StartWorkflowRunRequest;
43
+ output: StartWorkflowRunResponse;
44
+ };
45
+ sdk: {
46
+ input: StartWorkflowRunCommandInput;
47
+ output: StartWorkflowRunCommandOutput;
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
+ StopWorkflowRunRequest,
5
+ StopWorkflowRunResponse,
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 StopWorkflowRunCommandInput extends StopWorkflowRunRequest {}
15
+ export interface StopWorkflowRunCommandOutput
16
+ extends StopWorkflowRunResponse,
17
+ __MetadataBearer {}
18
+ declare const StopWorkflowRunCommand_base: {
19
+ new (
20
+ input: StopWorkflowRunCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ StopWorkflowRunCommandInput,
23
+ StopWorkflowRunCommandOutput,
24
+ MWAAServerlessClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: StopWorkflowRunCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ StopWorkflowRunCommandInput,
32
+ StopWorkflowRunCommandOutput,
33
+ MWAAServerlessClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class StopWorkflowRunCommand extends StopWorkflowRunCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: StopWorkflowRunRequest;
43
+ output: StopWorkflowRunResponse;
44
+ };
45
+ sdk: {
46
+ input: StopWorkflowRunCommandInput;
47
+ output: StopWorkflowRunCommandOutput;
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
4
+ import {
5
+ MWAAServerlessClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../MWAAServerlessClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface TagResourceCommandInput extends TagResourceRequest {}
12
+ export interface TagResourceCommandOutput
13
+ extends TagResourceResponse,
14
+ __MetadataBearer {}
15
+ declare const TagResourceCommand_base: {
16
+ new (
17
+ input: TagResourceCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ TagResourceCommandInput,
20
+ TagResourceCommandOutput,
21
+ MWAAServerlessClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: TagResourceCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ TagResourceCommandInput,
29
+ TagResourceCommandOutput,
30
+ MWAAServerlessClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class TagResourceCommand extends TagResourceCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: TagResourceRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: TagResourceCommandInput;
44
+ output: TagResourceCommandOutput;
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
+ UntagResourceRequest,
5
+ UntagResourceResponse,
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 UntagResourceCommandInput extends UntagResourceRequest {}
15
+ export interface UntagResourceCommandOutput
16
+ extends UntagResourceResponse,
17
+ __MetadataBearer {}
18
+ declare const UntagResourceCommand_base: {
19
+ new (
20
+ input: UntagResourceCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ UntagResourceCommandInput,
23
+ UntagResourceCommandOutput,
24
+ MWAAServerlessClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: UntagResourceCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UntagResourceCommandInput,
32
+ UntagResourceCommandOutput,
33
+ MWAAServerlessClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UntagResourceRequest;
43
+ output: {};
44
+ };
45
+ sdk: {
46
+ input: UntagResourceCommandInput;
47
+ output: UntagResourceCommandOutput;
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
+ UpdateWorkflowRequest,
5
+ UpdateWorkflowResponse,
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 UpdateWorkflowCommandInput extends UpdateWorkflowRequest {}
15
+ export interface UpdateWorkflowCommandOutput
16
+ extends UpdateWorkflowResponse,
17
+ __MetadataBearer {}
18
+ declare const UpdateWorkflowCommand_base: {
19
+ new (
20
+ input: UpdateWorkflowCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ UpdateWorkflowCommandInput,
23
+ UpdateWorkflowCommandOutput,
24
+ MWAAServerlessClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: UpdateWorkflowCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateWorkflowCommandInput,
32
+ UpdateWorkflowCommandOutput,
33
+ MWAAServerlessClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class UpdateWorkflowCommand extends UpdateWorkflowCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UpdateWorkflowRequest;
43
+ output: UpdateWorkflowResponse;
44
+ };
45
+ sdk: {
46
+ input: UpdateWorkflowCommandInput;
47
+ output: UpdateWorkflowCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,15 @@
1
+ export * from "./CreateWorkflowCommand";
2
+ export * from "./DeleteWorkflowCommand";
3
+ export * from "./GetTaskInstanceCommand";
4
+ export * from "./GetWorkflowCommand";
5
+ export * from "./GetWorkflowRunCommand";
6
+ export * from "./ListTagsForResourceCommand";
7
+ export * from "./ListTaskInstancesCommand";
8
+ export * from "./ListWorkflowRunsCommand";
9
+ export * from "./ListWorkflowVersionsCommand";
10
+ export * from "./ListWorkflowsCommand";
11
+ export * from "./StartWorkflowRunCommand";
12
+ export * from "./StopWorkflowRunCommand";
13
+ export * from "./TagResourceCommand";
14
+ export * from "./UntagResourceCommand";
15
+ export * from "./UpdateWorkflowCommand";
@@ -0,0 +1,45 @@
1
+ import {
2
+ Endpoint,
3
+ EndpointParameters as __EndpointParameters,
4
+ EndpointV2,
5
+ Provider,
6
+ } from "@smithy/types";
7
+ export interface ClientInputEndpointParameters {
8
+ useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
9
+ endpoint?:
10
+ | string
11
+ | Provider<string>
12
+ | Endpoint
13
+ | Provider<Endpoint>
14
+ | EndpointV2
15
+ | Provider<EndpointV2>;
16
+ region?: string | undefined | Provider<string | undefined>;
17
+ }
18
+ export type ClientResolvedEndpointParameters = Pick<
19
+ ClientInputEndpointParameters,
20
+ Exclude<keyof ClientInputEndpointParameters, "endpoint">
21
+ > & {
22
+ defaultSigningName: string;
23
+ };
24
+ export declare const resolveClientEndpointParameters: <T>(
25
+ options: T & ClientInputEndpointParameters
26
+ ) => T & ClientResolvedEndpointParameters;
27
+ export declare const commonParams: {
28
+ readonly UseFIPS: {
29
+ readonly type: "builtInParams";
30
+ readonly name: "useFipsEndpoint";
31
+ };
32
+ readonly Endpoint: {
33
+ readonly type: "builtInParams";
34
+ readonly name: "endpoint";
35
+ };
36
+ readonly Region: {
37
+ readonly type: "builtInParams";
38
+ readonly name: "region";
39
+ };
40
+ };
41
+ export interface EndpointParameters extends __EndpointParameters {
42
+ UseFIPS?: boolean | undefined;
43
+ Endpoint?: string | undefined;
44
+ Region?: string | undefined;
45
+ }
@@ -0,0 +1,8 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (
4
+ endpointParams: EndpointParameters,
5
+ context?: {
6
+ logger?: Logger;
7
+ }
8
+ ) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,9 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
+ export interface MWAAServerlessExtensionConfiguration
6
+ extends HttpHandlerExtensionConfiguration,
7
+ DefaultExtensionConfiguration,
8
+ AwsRegionExtensionConfiguration,
9
+ HttpAuthExtensionConfiguration {}
@@ -0,0 +1,9 @@
1
+ export * from "./MWAAServerlessClient";
2
+ export * from "./MWAAServerless";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
+ export { RuntimeExtension } from "./runtimeExtensions";
5
+ export { MWAAServerlessExtensionConfiguration } from "./extensionConfiguration";
6
+ export * from "./commands";
7
+ export * from "./pagination";
8
+ export * from "./models";
9
+ export { MWAAServerlessServiceException } from "./models/MWAAServerlessServiceException";
@@ -0,0 +1,9 @@
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@smithy/smithy-client";
5
+ export { __ServiceExceptionOptions };
6
+ export { __ServiceException };
7
+ export declare class MWAAServerlessServiceException extends __ServiceException {
8
+ constructor(options: __ServiceExceptionOptions);
9
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";