@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,8 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { MWAAServerlessClient } from "../MWAAServerlessClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface MWAAServerlessPaginationConfiguration extends PaginationConfiguration {
7
+ client: MWAAServerlessClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListTaskInstancesCommandInput, ListTaskInstancesCommandOutput } from "../commands/ListTaskInstancesCommand";
3
+ import { MWAAServerlessPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListTaskInstances: (config: MWAAServerlessPaginationConfiguration, input: ListTaskInstancesCommandInput, ...rest: any[]) => Paginator<ListTaskInstancesCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListWorkflowRunsCommandInput, ListWorkflowRunsCommandOutput } from "../commands/ListWorkflowRunsCommand";
3
+ import { MWAAServerlessPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListWorkflowRuns: (config: MWAAServerlessPaginationConfiguration, input: ListWorkflowRunsCommandInput, ...rest: any[]) => Paginator<ListWorkflowRunsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListWorkflowVersionsCommandInput, ListWorkflowVersionsCommandOutput } from "../commands/ListWorkflowVersionsCommand";
3
+ import { MWAAServerlessPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListWorkflowVersions: (config: MWAAServerlessPaginationConfiguration, input: ListWorkflowVersionsCommandInput, ...rest: any[]) => Paginator<ListWorkflowVersionsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "../commands/ListWorkflowsCommand";
3
+ import { MWAAServerlessPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListWorkflows: (config: MWAAServerlessPaginationConfiguration, input: ListWorkflowsCommandInput, ...rest: any[]) => Paginator<ListWorkflowsCommandOutput>;
@@ -0,0 +1,5 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListTaskInstancesPaginator";
3
+ export * from "./ListWorkflowRunsPaginator";
4
+ export * from "./ListWorkflowVersionsPaginator";
5
+ export * from "./ListWorkflowsPaginator";
@@ -0,0 +1,51 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { MWAAServerlessClientConfig } from "./MWAAServerlessClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: MWAAServerlessClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
20
+ apiVersion: string;
21
+ cacheMiddleware?: boolean | undefined;
22
+ urlParser: import("@smithy/types").UrlParser;
23
+ base64Decoder: import("@smithy/types").Decoder;
24
+ base64Encoder: (_input: Uint8Array | string) => string;
25
+ utf8Decoder: import("@smithy/types").Decoder;
26
+ utf8Encoder: (input: Uint8Array | string) => string;
27
+ disableHostPrefix: boolean;
28
+ serviceId: string;
29
+ profile?: string;
30
+ logger: import("@smithy/types").Logger;
31
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
33
+ customUserAgent?: string | import("@smithy/types").UserAgent;
34
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
35
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
37
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
38
+ logger?: import("@smithy/types").Logger;
39
+ }) => import("@smithy/types").EndpointV2;
40
+ tls?: boolean;
41
+ serviceConfiguredEndpoint?: never;
42
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
43
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
44
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MWAAServerlessHttpAuthSchemeProvider;
45
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
46
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
47
+ signingEscapePath?: boolean;
48
+ systemClockOffset?: number;
49
+ signingRegion?: string;
50
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
51
+ };
@@ -0,0 +1,51 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { MWAAServerlessClientConfig } from "./MWAAServerlessClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: MWAAServerlessClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
10
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
12
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
13
+ maxAttempts: number | import("@smithy/types").Provider<number>;
14
+ region: string | import("@smithy/types").Provider<string>;
15
+ requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
16
+ retryMode: string | import("@smithy/types").Provider<string>;
17
+ sha256: import("@smithy/types").HashConstructor;
18
+ streamCollector: import("@smithy/types").StreamCollector;
19
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
22
+ apiVersion: string;
23
+ cacheMiddleware?: boolean | undefined;
24
+ urlParser: import("@smithy/types").UrlParser;
25
+ base64Decoder: import("@smithy/types").Decoder;
26
+ base64Encoder: (_input: Uint8Array | string) => string;
27
+ utf8Decoder: import("@smithy/types").Decoder;
28
+ utf8Encoder: (input: Uint8Array | string) => string;
29
+ disableHostPrefix: boolean;
30
+ serviceId: string;
31
+ profile?: string;
32
+ logger: import("@smithy/types").Logger;
33
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
35
+ customUserAgent?: string | import("@smithy/types").UserAgent;
36
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
37
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
38
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
39
+ logger?: import("@smithy/types").Logger;
40
+ }) => import("@smithy/types").EndpointV2;
41
+ tls?: boolean;
42
+ serviceConfiguredEndpoint?: never;
43
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
44
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MWAAServerlessHttpAuthSchemeProvider;
45
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
46
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
47
+ signingEscapePath?: boolean;
48
+ systemClockOffset?: number;
49
+ signingRegion?: string;
50
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
51
+ };
@@ -0,0 +1,50 @@
1
+ import { MWAAServerlessClientConfig } from "./MWAAServerlessClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: MWAAServerlessClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ cacheMiddleware?: boolean;
11
+ urlParser: import("@smithy/types").UrlParser;
12
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
13
+ streamCollector: import("@smithy/types").StreamCollector;
14
+ base64Decoder: import("@smithy/types").Decoder;
15
+ base64Encoder: (_input: Uint8Array | string) => string;
16
+ utf8Decoder: import("@smithy/types").Decoder;
17
+ utf8Encoder: (input: Uint8Array | string) => string;
18
+ disableHostPrefix: boolean;
19
+ serviceId: string;
20
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
22
+ region: string | import("@smithy/types").Provider<any>;
23
+ profile?: string;
24
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
25
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
26
+ maxAttempts: number | import("@smithy/types").Provider<number>;
27
+ retryMode: string | import("@smithy/types").Provider<string>;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
31
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
32
+ customUserAgent?: string | import("@smithy/types").UserAgent;
33
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
35
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
36
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
37
+ logger?: import("@smithy/types").Logger;
38
+ }) => import("@smithy/types").EndpointV2;
39
+ tls?: boolean;
40
+ serviceConfiguredEndpoint?: never;
41
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
42
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
43
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MWAAServerlessHttpAuthSchemeProvider;
44
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
45
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
46
+ signingEscapePath?: boolean;
47
+ systemClockOffset?: number;
48
+ signingRegion?: string;
49
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
50
+ };
@@ -0,0 +1,22 @@
1
+ import { MWAAServerlessClientConfig } from "./MWAAServerlessClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: MWAAServerlessClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: (_input: Uint8Array | string) => string;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@smithy/types").Logger;
12
+ }) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MWAAServerlessHttpAuthSchemeProvider;
15
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
+ logger: import("@smithy/types").Logger;
17
+ protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
18
+ serviceId: string;
19
+ urlParser: import("@smithy/types").UrlParser;
20
+ utf8Decoder: import("@smithy/types").Decoder;
21
+ utf8Encoder: (input: Uint8Array | string) => string;
22
+ };
@@ -0,0 +1,17 @@
1
+ import { MWAAServerlessExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: MWAAServerlessExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
@@ -0,0 +1,81 @@
1
+ import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
2
+ export declare var AccessDeniedException: StaticErrorSchema;
3
+ export declare var ConflictException: StaticErrorSchema;
4
+ export declare var CreateWorkflowRequest: StaticStructureSchema;
5
+ export declare var CreateWorkflowResponse: StaticStructureSchema;
6
+ export declare var DefinitionS3Location: StaticStructureSchema;
7
+ export declare var DeleteWorkflowRequest: StaticStructureSchema;
8
+ export declare var DeleteWorkflowResponse: StaticStructureSchema;
9
+ export declare var EncryptionConfiguration: StaticStructureSchema;
10
+ export declare var GetTaskInstanceRequest: StaticStructureSchema;
11
+ export declare var GetTaskInstanceResponse: StaticStructureSchema;
12
+ export declare var GetWorkflowRequest: StaticStructureSchema;
13
+ export declare var GetWorkflowResponse: StaticStructureSchema;
14
+ export declare var GetWorkflowRunRequest: StaticStructureSchema;
15
+ export declare var GetWorkflowRunResponse: StaticStructureSchema;
16
+ export declare var InternalServerException: StaticErrorSchema;
17
+ export declare var ListTagsForResourceRequest: StaticStructureSchema;
18
+ export declare var ListTagsForResourceResponse: StaticStructureSchema;
19
+ export declare var ListTaskInstancesRequest: StaticStructureSchema;
20
+ export declare var ListTaskInstancesResponse: StaticStructureSchema;
21
+ export declare var ListWorkflowRunsRequest: StaticStructureSchema;
22
+ export declare var ListWorkflowRunsResponse: StaticStructureSchema;
23
+ export declare var ListWorkflowsRequest: StaticStructureSchema;
24
+ export declare var ListWorkflowsResponse: StaticStructureSchema;
25
+ export declare var ListWorkflowVersionsRequest: StaticStructureSchema;
26
+ export declare var ListWorkflowVersionsResponse: StaticStructureSchema;
27
+ export declare var LoggingConfiguration: StaticStructureSchema;
28
+ export declare var NetworkConfiguration: StaticStructureSchema;
29
+ export declare var OperationTimeoutException: StaticErrorSchema;
30
+ export declare var ResourceNotFoundException: StaticErrorSchema;
31
+ export declare var RunDetailSummary: StaticStructureSchema;
32
+ export declare var ScheduleConfiguration: StaticStructureSchema;
33
+ export declare var ServiceQuotaExceededException: StaticErrorSchema;
34
+ export declare var StartWorkflowRunRequest: StaticStructureSchema;
35
+ export declare var StartWorkflowRunResponse: StaticStructureSchema;
36
+ export declare var StopWorkflowRunRequest: StaticStructureSchema;
37
+ export declare var StopWorkflowRunResponse: StaticStructureSchema;
38
+ export declare var TagResourceRequest: StaticStructureSchema;
39
+ export declare var TagResourceResponse: StaticStructureSchema;
40
+ export declare var TaskInstanceSummary: StaticStructureSchema;
41
+ export declare var ThrottlingException: StaticErrorSchema;
42
+ export declare var UntagResourceRequest: StaticStructureSchema;
43
+ export declare var UntagResourceResponse: StaticStructureSchema;
44
+ export declare var UpdateWorkflowRequest: StaticStructureSchema;
45
+ export declare var UpdateWorkflowResponse: StaticStructureSchema;
46
+ export declare var ValidationException: StaticErrorSchema;
47
+ export declare var ValidationExceptionField: StaticStructureSchema;
48
+ export declare var WorkflowRunDetail: StaticStructureSchema;
49
+ export declare var WorkflowRunSummary: StaticStructureSchema;
50
+ export declare var WorkflowSummary: StaticStructureSchema;
51
+ export declare var WorkflowVersionSummary: StaticStructureSchema;
52
+ export declare var __Unit: "unit";
53
+ export declare var MWAAServerlessServiceException: StaticErrorSchema;
54
+ export declare var SecurityGroupIds: number;
55
+ export declare var SubnetIds: number;
56
+ export declare var TagKeys: number;
57
+ export declare var TaskInstanceIds: number;
58
+ export declare var TaskInstanceSummaries: StaticListSchema;
59
+ export declare var ValidationExceptionFields: StaticListSchema;
60
+ export declare var WarningMessages: number;
61
+ export declare var WorkflowRunSummaries: StaticListSchema;
62
+ export declare var WorkflowSummaries: StaticListSchema;
63
+ export declare var WorkflowVersionSummaries: StaticListSchema;
64
+ export declare var GenericMap: number;
65
+ export declare var ObjectMap: StaticMapSchema;
66
+ export declare var Tags: number;
67
+ export declare var CreateWorkflow: StaticOperationSchema;
68
+ export declare var DeleteWorkflow: StaticOperationSchema;
69
+ export declare var GetTaskInstance: StaticOperationSchema;
70
+ export declare var GetWorkflow: StaticOperationSchema;
71
+ export declare var GetWorkflowRun: StaticOperationSchema;
72
+ export declare var ListTagsForResource: StaticOperationSchema;
73
+ export declare var ListTaskInstances: StaticOperationSchema;
74
+ export declare var ListWorkflowRuns: StaticOperationSchema;
75
+ export declare var ListWorkflows: StaticOperationSchema;
76
+ export declare var ListWorkflowVersions: StaticOperationSchema;
77
+ export declare var StartWorkflowRun: StaticOperationSchema;
78
+ export declare var StopWorkflowRun: StaticOperationSchema;
79
+ export declare var TagResource: StaticOperationSchema;
80
+ export declare var UntagResource: StaticOperationSchema;
81
+ export declare var UpdateWorkflow: StaticOperationSchema;
@@ -0,0 +1,263 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ CreateWorkflowCommandInput,
4
+ CreateWorkflowCommandOutput,
5
+ } from "./commands/CreateWorkflowCommand";
6
+ import {
7
+ DeleteWorkflowCommandInput,
8
+ DeleteWorkflowCommandOutput,
9
+ } from "./commands/DeleteWorkflowCommand";
10
+ import {
11
+ GetTaskInstanceCommandInput,
12
+ GetTaskInstanceCommandOutput,
13
+ } from "./commands/GetTaskInstanceCommand";
14
+ import {
15
+ GetWorkflowCommandInput,
16
+ GetWorkflowCommandOutput,
17
+ } from "./commands/GetWorkflowCommand";
18
+ import {
19
+ GetWorkflowRunCommandInput,
20
+ GetWorkflowRunCommandOutput,
21
+ } from "./commands/GetWorkflowRunCommand";
22
+ import {
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ } from "./commands/ListTagsForResourceCommand";
26
+ import {
27
+ ListTaskInstancesCommandInput,
28
+ ListTaskInstancesCommandOutput,
29
+ } from "./commands/ListTaskInstancesCommand";
30
+ import {
31
+ ListWorkflowRunsCommandInput,
32
+ ListWorkflowRunsCommandOutput,
33
+ } from "./commands/ListWorkflowRunsCommand";
34
+ import {
35
+ ListWorkflowsCommandInput,
36
+ ListWorkflowsCommandOutput,
37
+ } from "./commands/ListWorkflowsCommand";
38
+ import {
39
+ ListWorkflowVersionsCommandInput,
40
+ ListWorkflowVersionsCommandOutput,
41
+ } from "./commands/ListWorkflowVersionsCommand";
42
+ import {
43
+ StartWorkflowRunCommandInput,
44
+ StartWorkflowRunCommandOutput,
45
+ } from "./commands/StartWorkflowRunCommand";
46
+ import {
47
+ StopWorkflowRunCommandInput,
48
+ StopWorkflowRunCommandOutput,
49
+ } from "./commands/StopWorkflowRunCommand";
50
+ import {
51
+ TagResourceCommandInput,
52
+ TagResourceCommandOutput,
53
+ } from "./commands/TagResourceCommand";
54
+ import {
55
+ UntagResourceCommandInput,
56
+ UntagResourceCommandOutput,
57
+ } from "./commands/UntagResourceCommand";
58
+ import {
59
+ UpdateWorkflowCommandInput,
60
+ UpdateWorkflowCommandOutput,
61
+ } from "./commands/UpdateWorkflowCommand";
62
+ import { MWAAServerlessClient } from "./MWAAServerlessClient";
63
+ export interface MWAAServerless {
64
+ createWorkflow(
65
+ args: CreateWorkflowCommandInput,
66
+ options?: __HttpHandlerOptions
67
+ ): Promise<CreateWorkflowCommandOutput>;
68
+ createWorkflow(
69
+ args: CreateWorkflowCommandInput,
70
+ cb: (err: any, data?: CreateWorkflowCommandOutput) => void
71
+ ): void;
72
+ createWorkflow(
73
+ args: CreateWorkflowCommandInput,
74
+ options: __HttpHandlerOptions,
75
+ cb: (err: any, data?: CreateWorkflowCommandOutput) => void
76
+ ): void;
77
+ deleteWorkflow(
78
+ args: DeleteWorkflowCommandInput,
79
+ options?: __HttpHandlerOptions
80
+ ): Promise<DeleteWorkflowCommandOutput>;
81
+ deleteWorkflow(
82
+ args: DeleteWorkflowCommandInput,
83
+ cb: (err: any, data?: DeleteWorkflowCommandOutput) => void
84
+ ): void;
85
+ deleteWorkflow(
86
+ args: DeleteWorkflowCommandInput,
87
+ options: __HttpHandlerOptions,
88
+ cb: (err: any, data?: DeleteWorkflowCommandOutput) => void
89
+ ): void;
90
+ getTaskInstance(
91
+ args: GetTaskInstanceCommandInput,
92
+ options?: __HttpHandlerOptions
93
+ ): Promise<GetTaskInstanceCommandOutput>;
94
+ getTaskInstance(
95
+ args: GetTaskInstanceCommandInput,
96
+ cb: (err: any, data?: GetTaskInstanceCommandOutput) => void
97
+ ): void;
98
+ getTaskInstance(
99
+ args: GetTaskInstanceCommandInput,
100
+ options: __HttpHandlerOptions,
101
+ cb: (err: any, data?: GetTaskInstanceCommandOutput) => void
102
+ ): void;
103
+ getWorkflow(
104
+ args: GetWorkflowCommandInput,
105
+ options?: __HttpHandlerOptions
106
+ ): Promise<GetWorkflowCommandOutput>;
107
+ getWorkflow(
108
+ args: GetWorkflowCommandInput,
109
+ cb: (err: any, data?: GetWorkflowCommandOutput) => void
110
+ ): void;
111
+ getWorkflow(
112
+ args: GetWorkflowCommandInput,
113
+ options: __HttpHandlerOptions,
114
+ cb: (err: any, data?: GetWorkflowCommandOutput) => void
115
+ ): void;
116
+ getWorkflowRun(
117
+ args: GetWorkflowRunCommandInput,
118
+ options?: __HttpHandlerOptions
119
+ ): Promise<GetWorkflowRunCommandOutput>;
120
+ getWorkflowRun(
121
+ args: GetWorkflowRunCommandInput,
122
+ cb: (err: any, data?: GetWorkflowRunCommandOutput) => void
123
+ ): void;
124
+ getWorkflowRun(
125
+ args: GetWorkflowRunCommandInput,
126
+ options: __HttpHandlerOptions,
127
+ cb: (err: any, data?: GetWorkflowRunCommandOutput) => void
128
+ ): void;
129
+ listTagsForResource(
130
+ args: ListTagsForResourceCommandInput,
131
+ options?: __HttpHandlerOptions
132
+ ): Promise<ListTagsForResourceCommandOutput>;
133
+ listTagsForResource(
134
+ args: ListTagsForResourceCommandInput,
135
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
136
+ ): void;
137
+ listTagsForResource(
138
+ args: ListTagsForResourceCommandInput,
139
+ options: __HttpHandlerOptions,
140
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
141
+ ): void;
142
+ listTaskInstances(
143
+ args: ListTaskInstancesCommandInput,
144
+ options?: __HttpHandlerOptions
145
+ ): Promise<ListTaskInstancesCommandOutput>;
146
+ listTaskInstances(
147
+ args: ListTaskInstancesCommandInput,
148
+ cb: (err: any, data?: ListTaskInstancesCommandOutput) => void
149
+ ): void;
150
+ listTaskInstances(
151
+ args: ListTaskInstancesCommandInput,
152
+ options: __HttpHandlerOptions,
153
+ cb: (err: any, data?: ListTaskInstancesCommandOutput) => void
154
+ ): void;
155
+ listWorkflowRuns(
156
+ args: ListWorkflowRunsCommandInput,
157
+ options?: __HttpHandlerOptions
158
+ ): Promise<ListWorkflowRunsCommandOutput>;
159
+ listWorkflowRuns(
160
+ args: ListWorkflowRunsCommandInput,
161
+ cb: (err: any, data?: ListWorkflowRunsCommandOutput) => void
162
+ ): void;
163
+ listWorkflowRuns(
164
+ args: ListWorkflowRunsCommandInput,
165
+ options: __HttpHandlerOptions,
166
+ cb: (err: any, data?: ListWorkflowRunsCommandOutput) => void
167
+ ): void;
168
+ listWorkflows(): Promise<ListWorkflowsCommandOutput>;
169
+ listWorkflows(
170
+ args: ListWorkflowsCommandInput,
171
+ options?: __HttpHandlerOptions
172
+ ): Promise<ListWorkflowsCommandOutput>;
173
+ listWorkflows(
174
+ args: ListWorkflowsCommandInput,
175
+ cb: (err: any, data?: ListWorkflowsCommandOutput) => void
176
+ ): void;
177
+ listWorkflows(
178
+ args: ListWorkflowsCommandInput,
179
+ options: __HttpHandlerOptions,
180
+ cb: (err: any, data?: ListWorkflowsCommandOutput) => void
181
+ ): void;
182
+ listWorkflowVersions(
183
+ args: ListWorkflowVersionsCommandInput,
184
+ options?: __HttpHandlerOptions
185
+ ): Promise<ListWorkflowVersionsCommandOutput>;
186
+ listWorkflowVersions(
187
+ args: ListWorkflowVersionsCommandInput,
188
+ cb: (err: any, data?: ListWorkflowVersionsCommandOutput) => void
189
+ ): void;
190
+ listWorkflowVersions(
191
+ args: ListWorkflowVersionsCommandInput,
192
+ options: __HttpHandlerOptions,
193
+ cb: (err: any, data?: ListWorkflowVersionsCommandOutput) => void
194
+ ): void;
195
+ startWorkflowRun(
196
+ args: StartWorkflowRunCommandInput,
197
+ options?: __HttpHandlerOptions
198
+ ): Promise<StartWorkflowRunCommandOutput>;
199
+ startWorkflowRun(
200
+ args: StartWorkflowRunCommandInput,
201
+ cb: (err: any, data?: StartWorkflowRunCommandOutput) => void
202
+ ): void;
203
+ startWorkflowRun(
204
+ args: StartWorkflowRunCommandInput,
205
+ options: __HttpHandlerOptions,
206
+ cb: (err: any, data?: StartWorkflowRunCommandOutput) => void
207
+ ): void;
208
+ stopWorkflowRun(
209
+ args: StopWorkflowRunCommandInput,
210
+ options?: __HttpHandlerOptions
211
+ ): Promise<StopWorkflowRunCommandOutput>;
212
+ stopWorkflowRun(
213
+ args: StopWorkflowRunCommandInput,
214
+ cb: (err: any, data?: StopWorkflowRunCommandOutput) => void
215
+ ): void;
216
+ stopWorkflowRun(
217
+ args: StopWorkflowRunCommandInput,
218
+ options: __HttpHandlerOptions,
219
+ cb: (err: any, data?: StopWorkflowRunCommandOutput) => void
220
+ ): void;
221
+ tagResource(
222
+ args: TagResourceCommandInput,
223
+ options?: __HttpHandlerOptions
224
+ ): Promise<TagResourceCommandOutput>;
225
+ tagResource(
226
+ args: TagResourceCommandInput,
227
+ cb: (err: any, data?: TagResourceCommandOutput) => void
228
+ ): void;
229
+ tagResource(
230
+ args: TagResourceCommandInput,
231
+ options: __HttpHandlerOptions,
232
+ cb: (err: any, data?: TagResourceCommandOutput) => void
233
+ ): void;
234
+ untagResource(
235
+ args: UntagResourceCommandInput,
236
+ options?: __HttpHandlerOptions
237
+ ): Promise<UntagResourceCommandOutput>;
238
+ untagResource(
239
+ args: UntagResourceCommandInput,
240
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
241
+ ): void;
242
+ untagResource(
243
+ args: UntagResourceCommandInput,
244
+ options: __HttpHandlerOptions,
245
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
246
+ ): void;
247
+ updateWorkflow(
248
+ args: UpdateWorkflowCommandInput,
249
+ options?: __HttpHandlerOptions
250
+ ): Promise<UpdateWorkflowCommandOutput>;
251
+ updateWorkflow(
252
+ args: UpdateWorkflowCommandInput,
253
+ cb: (err: any, data?: UpdateWorkflowCommandOutput) => void
254
+ ): void;
255
+ updateWorkflow(
256
+ args: UpdateWorkflowCommandInput,
257
+ options: __HttpHandlerOptions,
258
+ cb: (err: any, data?: UpdateWorkflowCommandOutput) => void
259
+ ): void;
260
+ }
261
+ export declare class MWAAServerless
262
+ extends MWAAServerlessClient
263
+ implements MWAAServerless {}