@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.
- package/LICENSE +201 -0
- package/README.md +325 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +1324 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +56 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +41 -0
- package/dist-es/MWAAServerless.js +37 -0
- package/dist-es/MWAAServerlessClient.js +50 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/CreateWorkflowCommand.js +16 -0
- package/dist-es/commands/DeleteWorkflowCommand.js +16 -0
- package/dist-es/commands/GetTaskInstanceCommand.js +16 -0
- package/dist-es/commands/GetWorkflowCommand.js +16 -0
- package/dist-es/commands/GetWorkflowRunCommand.js +16 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/dist-es/commands/ListTaskInstancesCommand.js +16 -0
- package/dist-es/commands/ListWorkflowRunsCommand.js +16 -0
- package/dist-es/commands/ListWorkflowVersionsCommand.js +16 -0
- package/dist-es/commands/ListWorkflowsCommand.js +16 -0
- package/dist-es/commands/StartWorkflowRunCommand.js +16 -0
- package/dist-es/commands/StopWorkflowRunCommand.js +16 -0
- package/dist-es/commands/TagResourceCommand.js +16 -0
- package/dist-es/commands/UntagResourceCommand.js +16 -0
- package/dist-es/commands/UpdateWorkflowCommand.js +16 -0
- package/dist-es/commands/index.js +15 -0
- package/dist-es/endpoint/EndpointParameters.js +11 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/MWAAServerlessServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +193 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListTaskInstancesPaginator.js +4 -0
- package/dist-es/pagination/ListWorkflowRunsPaginator.js +4 -0
- package/dist-es/pagination/ListWorkflowVersionsPaginator.js +4 -0
- package/dist-es/pagination/ListWorkflowsPaginator.js +4 -0
- package/dist-es/pagination/index.js +5 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +51 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +37 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +771 -0
- package/dist-types/MWAAServerless.d.ts +116 -0
- package/dist-types/MWAAServerlessClient.d.ts +211 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/CreateWorkflowCommand.d.ts +131 -0
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +94 -0
- package/dist-types/commands/GetTaskInstanceCommand.d.ts +110 -0
- package/dist-types/commands/GetWorkflowCommand.d.ts +126 -0
- package/dist-types/commands/GetWorkflowRunCommand.d.ts +115 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +94 -0
- package/dist-types/commands/ListTaskInstancesCommand.d.ts +103 -0
- package/dist-types/commands/ListWorkflowRunsCommand.d.ts +106 -0
- package/dist-types/commands/ListWorkflowVersionsCommand.d.ts +109 -0
- package/dist-types/commands/ListWorkflowsCommand.d.ts +102 -0
- package/dist-types/commands/StartWorkflowRunCommand.d.ts +105 -0
- package/dist-types/commands/StopWorkflowRunCommand.d.ts +96 -0
- package/dist-types/commands/TagResourceCommand.d.ts +93 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +93 -0
- package/dist-types/commands/UpdateWorkflowCommand.d.ts +123 -0
- package/dist-types/commands/index.d.ts +15 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +14 -0
- package/dist-types/models/MWAAServerlessServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1363 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListTaskInstancesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkflowRunsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkflowVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkflowsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +5 -0
- package/dist-types/runtimeConfig.browser.d.ts +51 -0
- package/dist-types/runtimeConfig.d.ts +51 -0
- package/dist-types/runtimeConfig.native.d.ts +50 -0
- package/dist-types/runtimeConfig.shared.d.ts +22 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +81 -0
- package/dist-types/ts3.4/MWAAServerless.d.ts +263 -0
- package/dist-types/ts3.4/MWAAServerlessClient.d.ts +214 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateWorkflowCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteWorkflowCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetTaskInstanceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetWorkflowCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetWorkflowRunCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTaskInstancesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWorkflowRunsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListWorkflowVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StartWorkflowRunCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StopWorkflowRunCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateWorkflowCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +15 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/MWAAServerlessServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +396 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListTaskInstancesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListWorkflowRunsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListWorkflowVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListWorkflowsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +99 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +25 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +87 -0
- package/package.json +99 -0
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { MWAAServerlessClientConfig } from "./MWAAServerlessClient";
|
|
2
|
+
export declare const getRuntimeConfig: (config: MWAAServerlessClientConfig) => {
|
|
3
|
+
runtime: string;
|
|
4
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
5
|
+
requestHandler:
|
|
6
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
7
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
8
|
+
| Record<string, unknown>
|
|
9
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
10
|
+
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
|
+
apiVersion: string;
|
|
12
|
+
cacheMiddleware?: boolean;
|
|
13
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
14
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
15
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
16
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
17
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
18
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
19
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
20
|
+
disableHostPrefix: boolean;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
24
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
25
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
26
|
+
profile?: string;
|
|
27
|
+
defaultUserAgentProvider: (
|
|
28
|
+
config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
30
|
+
credentialDefaultProvider:
|
|
31
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
32
|
+
| ((
|
|
33
|
+
_: unknown
|
|
34
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
35
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
36
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
37
|
+
logger: import("@smithy/types").Logger;
|
|
38
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
39
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
40
|
+
import("@smithy/types").HttpRequest,
|
|
41
|
+
import("@smithy/types").HttpResponse
|
|
42
|
+
>;
|
|
43
|
+
defaultsMode:
|
|
44
|
+
| import("@smithy/smithy-client").DefaultsMode
|
|
45
|
+
| import("@smithy/types").Provider<
|
|
46
|
+
import("@smithy/smithy-client").DefaultsMode
|
|
47
|
+
>;
|
|
48
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
49
|
+
userAgentAppId?:
|
|
50
|
+
| string
|
|
51
|
+
| undefined
|
|
52
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?:
|
|
54
|
+
| import("@smithy/types").RetryStrategy
|
|
55
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
56
|
+
endpoint?:
|
|
57
|
+
| ((
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Endpoint
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
61
|
+
| import("@smithy/types").EndpointV2
|
|
62
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
63
|
+
) &
|
|
64
|
+
(
|
|
65
|
+
| string
|
|
66
|
+
| import("@smithy/types").Provider<string>
|
|
67
|
+
| import("@smithy/types").Endpoint
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
69
|
+
| import("@smithy/types").EndpointV2
|
|
70
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
71
|
+
))
|
|
72
|
+
| undefined;
|
|
73
|
+
endpointProvider: (
|
|
74
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
75
|
+
context?: {
|
|
76
|
+
logger?: import("@smithy/types").Logger;
|
|
77
|
+
}
|
|
78
|
+
) => import("@smithy/types").EndpointV2;
|
|
79
|
+
tls?: boolean;
|
|
80
|
+
serviceConfiguredEndpoint?: never;
|
|
81
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
82
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
83
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MWAAServerlessHttpAuthSchemeProvider;
|
|
84
|
+
credentials?:
|
|
85
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
86
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
87
|
+
signer?:
|
|
88
|
+
| import("@smithy/types").RequestSigner
|
|
89
|
+
| ((
|
|
90
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
91
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
92
|
+
signingEscapePath?: boolean;
|
|
93
|
+
systemClockOffset?: number;
|
|
94
|
+
signingRegion?: string;
|
|
95
|
+
signerConstructor?: new (
|
|
96
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
97
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
98
|
+
) => import("@smithy/types").RequestSigner;
|
|
99
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { MWAAServerlessClientConfig } from "./MWAAServerlessClient";
|
|
2
|
+
export declare const getRuntimeConfig: (config: MWAAServerlessClientConfig) => {
|
|
3
|
+
apiVersion: string;
|
|
4
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
5
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
6
|
+
disableHostPrefix: boolean;
|
|
7
|
+
endpointProvider: (
|
|
8
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
9
|
+
context?: {
|
|
10
|
+
logger?: import("@smithy/types").Logger;
|
|
11
|
+
}
|
|
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<
|
|
18
|
+
import("@smithy/types").HttpRequest,
|
|
19
|
+
import("@smithy/types").HttpResponse
|
|
20
|
+
>;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
23
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
24
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
25
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { MWAAServerlessExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configure(extensionConfiguration: MWAAServerlessExtensionConfiguration): void;
|
|
4
|
+
}
|
|
5
|
+
export interface RuntimeExtensionsConfig {
|
|
6
|
+
extensions: RuntimeExtension[];
|
|
7
|
+
}
|
|
8
|
+
export declare const resolveRuntimeExtensions: (
|
|
9
|
+
runtimeConfig: any,
|
|
10
|
+
extensions: RuntimeExtension[]
|
|
11
|
+
) => any;
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticMapSchema,
|
|
5
|
+
StaticOperationSchema,
|
|
6
|
+
StaticStructureSchema,
|
|
7
|
+
} from "@smithy/types";
|
|
8
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
9
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
10
|
+
export declare var CreateWorkflowRequest: StaticStructureSchema;
|
|
11
|
+
export declare var CreateWorkflowResponse: StaticStructureSchema;
|
|
12
|
+
export declare var DefinitionS3Location: StaticStructureSchema;
|
|
13
|
+
export declare var DeleteWorkflowRequest: StaticStructureSchema;
|
|
14
|
+
export declare var DeleteWorkflowResponse: StaticStructureSchema;
|
|
15
|
+
export declare var EncryptionConfiguration: StaticStructureSchema;
|
|
16
|
+
export declare var GetTaskInstanceRequest: StaticStructureSchema;
|
|
17
|
+
export declare var GetTaskInstanceResponse: StaticStructureSchema;
|
|
18
|
+
export declare var GetWorkflowRequest: StaticStructureSchema;
|
|
19
|
+
export declare var GetWorkflowResponse: StaticStructureSchema;
|
|
20
|
+
export declare var GetWorkflowRunRequest: StaticStructureSchema;
|
|
21
|
+
export declare var GetWorkflowRunResponse: StaticStructureSchema;
|
|
22
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
23
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
24
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
25
|
+
export declare var ListTaskInstancesRequest: StaticStructureSchema;
|
|
26
|
+
export declare var ListTaskInstancesResponse: StaticStructureSchema;
|
|
27
|
+
export declare var ListWorkflowRunsRequest: StaticStructureSchema;
|
|
28
|
+
export declare var ListWorkflowRunsResponse: StaticStructureSchema;
|
|
29
|
+
export declare var ListWorkflowsRequest: StaticStructureSchema;
|
|
30
|
+
export declare var ListWorkflowsResponse: StaticStructureSchema;
|
|
31
|
+
export declare var ListWorkflowVersionsRequest: StaticStructureSchema;
|
|
32
|
+
export declare var ListWorkflowVersionsResponse: StaticStructureSchema;
|
|
33
|
+
export declare var LoggingConfiguration: StaticStructureSchema;
|
|
34
|
+
export declare var NetworkConfiguration: StaticStructureSchema;
|
|
35
|
+
export declare var OperationTimeoutException: StaticErrorSchema;
|
|
36
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
37
|
+
export declare var RunDetailSummary: StaticStructureSchema;
|
|
38
|
+
export declare var ScheduleConfiguration: StaticStructureSchema;
|
|
39
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
40
|
+
export declare var StartWorkflowRunRequest: StaticStructureSchema;
|
|
41
|
+
export declare var StartWorkflowRunResponse: StaticStructureSchema;
|
|
42
|
+
export declare var StopWorkflowRunRequest: StaticStructureSchema;
|
|
43
|
+
export declare var StopWorkflowRunResponse: StaticStructureSchema;
|
|
44
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
45
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
46
|
+
export declare var TaskInstanceSummary: StaticStructureSchema;
|
|
47
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
48
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
49
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
50
|
+
export declare var UpdateWorkflowRequest: StaticStructureSchema;
|
|
51
|
+
export declare var UpdateWorkflowResponse: StaticStructureSchema;
|
|
52
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
53
|
+
export declare var ValidationExceptionField: StaticStructureSchema;
|
|
54
|
+
export declare var WorkflowRunDetail: StaticStructureSchema;
|
|
55
|
+
export declare var WorkflowRunSummary: StaticStructureSchema;
|
|
56
|
+
export declare var WorkflowSummary: StaticStructureSchema;
|
|
57
|
+
export declare var WorkflowVersionSummary: StaticStructureSchema;
|
|
58
|
+
export declare var __Unit: "unit";
|
|
59
|
+
export declare var MWAAServerlessServiceException: StaticErrorSchema;
|
|
60
|
+
export declare var SecurityGroupIds: number;
|
|
61
|
+
export declare var SubnetIds: number;
|
|
62
|
+
export declare var TagKeys: number;
|
|
63
|
+
export declare var TaskInstanceIds: number;
|
|
64
|
+
export declare var TaskInstanceSummaries: StaticListSchema;
|
|
65
|
+
export declare var ValidationExceptionFields: StaticListSchema;
|
|
66
|
+
export declare var WarningMessages: number;
|
|
67
|
+
export declare var WorkflowRunSummaries: StaticListSchema;
|
|
68
|
+
export declare var WorkflowSummaries: StaticListSchema;
|
|
69
|
+
export declare var WorkflowVersionSummaries: StaticListSchema;
|
|
70
|
+
export declare var GenericMap: number;
|
|
71
|
+
export declare var ObjectMap: StaticMapSchema;
|
|
72
|
+
export declare var Tags: number;
|
|
73
|
+
export declare var CreateWorkflow: StaticOperationSchema;
|
|
74
|
+
export declare var DeleteWorkflow: StaticOperationSchema;
|
|
75
|
+
export declare var GetTaskInstance: StaticOperationSchema;
|
|
76
|
+
export declare var GetWorkflow: StaticOperationSchema;
|
|
77
|
+
export declare var GetWorkflowRun: StaticOperationSchema;
|
|
78
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
79
|
+
export declare var ListTaskInstances: StaticOperationSchema;
|
|
80
|
+
export declare var ListWorkflowRuns: StaticOperationSchema;
|
|
81
|
+
export declare var ListWorkflows: StaticOperationSchema;
|
|
82
|
+
export declare var ListWorkflowVersions: StaticOperationSchema;
|
|
83
|
+
export declare var StartWorkflowRun: StaticOperationSchema;
|
|
84
|
+
export declare var StopWorkflowRun: StaticOperationSchema;
|
|
85
|
+
export declare var TagResource: StaticOperationSchema;
|
|
86
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
87
|
+
export declare var UpdateWorkflow: StaticOperationSchema;
|
package/package.json
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aws-sdk/client-mwaa-serverless",
|
|
3
|
+
"description": "AWS SDK for JavaScript Mwaa Serverless Client for Node.js, Browser and React Native",
|
|
4
|
+
"version": "3.933.0",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
|
+
"build:cjs": "node ../../scripts/compilation/inline client-mwaa-serverless",
|
|
8
|
+
"build:es": "tsc -p tsconfig.es.json",
|
|
9
|
+
"build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
|
|
10
|
+
"build:types": "tsc -p tsconfig.types.json",
|
|
11
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo || exit 0",
|
|
13
|
+
"extract:docs": "api-extractor run --local",
|
|
14
|
+
"generate:client": "node ../../scripts/generate-clients/single-service --solo mwaa-serverless"
|
|
15
|
+
},
|
|
16
|
+
"main": "./dist-cjs/index.js",
|
|
17
|
+
"types": "./dist-types/index.d.ts",
|
|
18
|
+
"module": "./dist-es/index.js",
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
|
+
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
+
"@aws-sdk/core": "3.932.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.933.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.932.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
|
+
"@aws-sdk/types": "3.930.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.932.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
+
"@smithy/core": "^3.18.2",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
|
+
"@smithy/hash-node": "^4.2.5",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.9",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.9",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.5",
|
|
43
|
+
"@smithy/middleware-stack": "^4.2.5",
|
|
44
|
+
"@smithy/node-config-provider": "^4.3.5",
|
|
45
|
+
"@smithy/node-http-handler": "^4.4.5",
|
|
46
|
+
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
+
"@smithy/smithy-client": "^4.9.5",
|
|
48
|
+
"@smithy/types": "^4.9.0",
|
|
49
|
+
"@smithy/url-parser": "^4.2.5",
|
|
50
|
+
"@smithy/util-base64": "^4.3.0",
|
|
51
|
+
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
|
+
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.8",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.11",
|
|
55
|
+
"@smithy/util-endpoints": "^3.2.5",
|
|
56
|
+
"@smithy/util-middleware": "^4.2.5",
|
|
57
|
+
"@smithy/util-retry": "^4.2.5",
|
|
58
|
+
"@smithy/util-utf8": "^4.2.0",
|
|
59
|
+
"tslib": "^2.6.2"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {
|
|
62
|
+
"@tsconfig/node18": "18.2.4",
|
|
63
|
+
"@types/node": "^18.19.69",
|
|
64
|
+
"concurrently": "7.0.0",
|
|
65
|
+
"downlevel-dts": "0.10.1",
|
|
66
|
+
"rimraf": "3.0.2",
|
|
67
|
+
"typescript": "~5.8.3"
|
|
68
|
+
},
|
|
69
|
+
"engines": {
|
|
70
|
+
"node": ">=18.0.0"
|
|
71
|
+
},
|
|
72
|
+
"typesVersions": {
|
|
73
|
+
"<4.0": {
|
|
74
|
+
"dist-types/*": [
|
|
75
|
+
"dist-types/ts3.4/*"
|
|
76
|
+
]
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"files": [
|
|
80
|
+
"dist-*/**"
|
|
81
|
+
],
|
|
82
|
+
"author": {
|
|
83
|
+
"name": "AWS SDK for JavaScript Team",
|
|
84
|
+
"url": "https://aws.amazon.com/javascript/"
|
|
85
|
+
},
|
|
86
|
+
"license": "Apache-2.0",
|
|
87
|
+
"browser": {
|
|
88
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
89
|
+
},
|
|
90
|
+
"react-native": {
|
|
91
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
92
|
+
},
|
|
93
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-mwaa-serverless",
|
|
94
|
+
"repository": {
|
|
95
|
+
"type": "git",
|
|
96
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
97
|
+
"directory": "clients/client-mwaa-serverless"
|
|
98
|
+
}
|
|
99
|
+
}
|