@aws-sdk/client-data-pipeline 3.50.0 → 3.51.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/DataPipeline.d.ts +100 -0
- package/dist-types/ts3.4/DataPipelineClient.d.ts +92 -0
- package/dist-types/ts3.4/commands/ActivatePipelineCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeactivatePipelineCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeObjectsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribePipelinesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/EvaluateExpressionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetPipelineDefinitionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PollForTaskCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/PutPipelineDefinitionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/QueryObjectsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ReportTaskProgressCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ReportTaskRunnerHeartbeatCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SetStatusCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SetTaskStatusCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ValidatePipelineDefinitionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +19 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +635 -0
- package/dist-types/ts3.4/pagination/DescribeObjectsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListPipelinesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/QueryObjectsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +59 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +8 -8
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
3
|
+
import { ActivatePipelineCommandInput, ActivatePipelineCommandOutput } from "../commands/ActivatePipelineCommand";
|
|
4
|
+
import { AddTagsCommandInput, AddTagsCommandOutput } from "../commands/AddTagsCommand";
|
|
5
|
+
import { CreatePipelineCommandInput, CreatePipelineCommandOutput } from "../commands/CreatePipelineCommand";
|
|
6
|
+
import { DeactivatePipelineCommandInput, DeactivatePipelineCommandOutput } from "../commands/DeactivatePipelineCommand";
|
|
7
|
+
import { DeletePipelineCommandInput, DeletePipelineCommandOutput } from "../commands/DeletePipelineCommand";
|
|
8
|
+
import { DescribeObjectsCommandInput, DescribeObjectsCommandOutput } from "../commands/DescribeObjectsCommand";
|
|
9
|
+
import { DescribePipelinesCommandInput, DescribePipelinesCommandOutput } from "../commands/DescribePipelinesCommand";
|
|
10
|
+
import { EvaluateExpressionCommandInput, EvaluateExpressionCommandOutput } from "../commands/EvaluateExpressionCommand";
|
|
11
|
+
import { GetPipelineDefinitionCommandInput, GetPipelineDefinitionCommandOutput } from "../commands/GetPipelineDefinitionCommand";
|
|
12
|
+
import { ListPipelinesCommandInput, ListPipelinesCommandOutput } from "../commands/ListPipelinesCommand";
|
|
13
|
+
import { PollForTaskCommandInput, PollForTaskCommandOutput } from "../commands/PollForTaskCommand";
|
|
14
|
+
import { PutPipelineDefinitionCommandInput, PutPipelineDefinitionCommandOutput } from "../commands/PutPipelineDefinitionCommand";
|
|
15
|
+
import { QueryObjectsCommandInput, QueryObjectsCommandOutput } from "../commands/QueryObjectsCommand";
|
|
16
|
+
import { RemoveTagsCommandInput, RemoveTagsCommandOutput } from "../commands/RemoveTagsCommand";
|
|
17
|
+
import { ReportTaskProgressCommandInput, ReportTaskProgressCommandOutput } from "../commands/ReportTaskProgressCommand";
|
|
18
|
+
import { ReportTaskRunnerHeartbeatCommandInput, ReportTaskRunnerHeartbeatCommandOutput } from "../commands/ReportTaskRunnerHeartbeatCommand";
|
|
19
|
+
import { SetStatusCommandInput, SetStatusCommandOutput } from "../commands/SetStatusCommand";
|
|
20
|
+
import { SetTaskStatusCommandInput, SetTaskStatusCommandOutput } from "../commands/SetTaskStatusCommand";
|
|
21
|
+
import { ValidatePipelineDefinitionCommandInput, ValidatePipelineDefinitionCommandOutput } from "../commands/ValidatePipelineDefinitionCommand";
|
|
22
|
+
export declare const serializeAws_json1_1ActivatePipelineCommand: (input: ActivatePipelineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
|
+
export declare const serializeAws_json1_1AddTagsCommand: (input: AddTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
|
+
export declare const serializeAws_json1_1CreatePipelineCommand: (input: CreatePipelineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
25
|
+
export declare const serializeAws_json1_1DeactivatePipelineCommand: (input: DeactivatePipelineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
+
export declare const serializeAws_json1_1DeletePipelineCommand: (input: DeletePipelineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
|
+
export declare const serializeAws_json1_1DescribeObjectsCommand: (input: DescribeObjectsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
|
+
export declare const serializeAws_json1_1DescribePipelinesCommand: (input: DescribePipelinesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
29
|
+
export declare const serializeAws_json1_1EvaluateExpressionCommand: (input: EvaluateExpressionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
+
export declare const serializeAws_json1_1GetPipelineDefinitionCommand: (input: GetPipelineDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
|
+
export declare const serializeAws_json1_1ListPipelinesCommand: (input: ListPipelinesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
|
+
export declare const serializeAws_json1_1PollForTaskCommand: (input: PollForTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
|
+
export declare const serializeAws_json1_1PutPipelineDefinitionCommand: (input: PutPipelineDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
|
+
export declare const serializeAws_json1_1QueryObjectsCommand: (input: QueryObjectsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
+
export declare const serializeAws_json1_1RemoveTagsCommand: (input: RemoveTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
|
+
export declare const serializeAws_json1_1ReportTaskProgressCommand: (input: ReportTaskProgressCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
|
+
export declare const serializeAws_json1_1ReportTaskRunnerHeartbeatCommand: (input: ReportTaskRunnerHeartbeatCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
+
export declare const serializeAws_json1_1SetStatusCommand: (input: SetStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
|
+
export declare const serializeAws_json1_1SetTaskStatusCommand: (input: SetTaskStatusCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
|
+
export declare const serializeAws_json1_1ValidatePipelineDefinitionCommand: (input: ValidatePipelineDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
+
export declare const deserializeAws_json1_1ActivatePipelineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ActivatePipelineCommandOutput>;
|
|
42
|
+
export declare const deserializeAws_json1_1AddTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddTagsCommandOutput>;
|
|
43
|
+
export declare const deserializeAws_json1_1CreatePipelineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePipelineCommandOutput>;
|
|
44
|
+
export declare const deserializeAws_json1_1DeactivatePipelineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeactivatePipelineCommandOutput>;
|
|
45
|
+
export declare const deserializeAws_json1_1DeletePipelineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePipelineCommandOutput>;
|
|
46
|
+
export declare const deserializeAws_json1_1DescribeObjectsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeObjectsCommandOutput>;
|
|
47
|
+
export declare const deserializeAws_json1_1DescribePipelinesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribePipelinesCommandOutput>;
|
|
48
|
+
export declare const deserializeAws_json1_1EvaluateExpressionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EvaluateExpressionCommandOutput>;
|
|
49
|
+
export declare const deserializeAws_json1_1GetPipelineDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetPipelineDefinitionCommandOutput>;
|
|
50
|
+
export declare const deserializeAws_json1_1ListPipelinesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPipelinesCommandOutput>;
|
|
51
|
+
export declare const deserializeAws_json1_1PollForTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PollForTaskCommandOutput>;
|
|
52
|
+
export declare const deserializeAws_json1_1PutPipelineDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutPipelineDefinitionCommandOutput>;
|
|
53
|
+
export declare const deserializeAws_json1_1QueryObjectsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<QueryObjectsCommandOutput>;
|
|
54
|
+
export declare const deserializeAws_json1_1RemoveTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemoveTagsCommandOutput>;
|
|
55
|
+
export declare const deserializeAws_json1_1ReportTaskProgressCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ReportTaskProgressCommandOutput>;
|
|
56
|
+
export declare const deserializeAws_json1_1ReportTaskRunnerHeartbeatCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ReportTaskRunnerHeartbeatCommandOutput>;
|
|
57
|
+
export declare const deserializeAws_json1_1SetStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetStatusCommandOutput>;
|
|
58
|
+
export declare const deserializeAws_json1_1SetTaskStatusCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetTaskStatusCommandOutput>;
|
|
59
|
+
export declare const deserializeAws_json1_1ValidatePipelineDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ValidatePipelineDefinitionCommandOutput>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { DataPipelineClientConfig } from "./DataPipelineClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: DataPipelineClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { DataPipelineClientConfig } from "./DataPipelineClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: DataPipelineClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
disableHostPrefix: boolean;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
serviceId: string;
|
|
27
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
29
|
+
tls?: boolean | undefined;
|
|
30
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
31
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
32
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
33
|
+
signingEscapePath?: boolean | undefined;
|
|
34
|
+
systemClockOffset?: number | undefined;
|
|
35
|
+
signingRegion?: string | undefined;
|
|
36
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
37
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
38
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { DataPipelineClientConfig } from "./DataPipelineClient";
|
|
2
|
+
|
|
3
|
+
export declare const getRuntimeConfig: (config: DataPipelineClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
6
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
|
+
apiVersion: string;
|
|
8
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
+
bodyLengthChecker: (body: any) => number | undefined;
|
|
10
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
13
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
+
disableHostPrefix: boolean;
|
|
16
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
18
|
+
logger: import("@aws-sdk/types").Logger;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
|
|
23
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
27
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
|
+
tls?: boolean | undefined;
|
|
29
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
30
|
+
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
31
|
+
signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
|
|
32
|
+
signingEscapePath?: boolean | undefined;
|
|
33
|
+
systemClockOffset?: number | undefined;
|
|
34
|
+
signingRegion?: string | undefined;
|
|
35
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
36
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
37
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { DataPipelineClientConfig } from "./DataPipelineClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: DataPipelineClientConfig) => {
|
|
5
|
+
apiVersion: string;
|
|
6
|
+
disableHostPrefix: boolean;
|
|
7
|
+
logger: __Logger;
|
|
8
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
9
|
+
serviceId: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-data-pipeline",
|
|
3
3
|
"description": "AWS SDK for JavaScript Data Pipeline Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.51.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,21 +18,21 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.51.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.51.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.51.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.50.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.50.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.50.0",
|
|
27
27
|
"@aws-sdk/middleware-content-length": "3.50.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.50.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.50.0",
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.51.0",
|
|
31
31
|
"@aws-sdk/middleware-serde": "3.50.0",
|
|
32
32
|
"@aws-sdk/middleware-signing": "3.50.0",
|
|
33
33
|
"@aws-sdk/middleware-stack": "3.50.0",
|
|
34
34
|
"@aws-sdk/middleware-user-agent": "3.50.0",
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.51.0",
|
|
36
36
|
"@aws-sdk/node-http-handler": "3.50.0",
|
|
37
37
|
"@aws-sdk/protocol-http": "3.50.0",
|
|
38
38
|
"@aws-sdk/smithy-client": "3.50.0",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.49.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.49.0",
|
|
45
45
|
"@aws-sdk/util-defaults-mode-browser": "3.50.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.51.0",
|
|
47
47
|
"@aws-sdk/util-user-agent-browser": "3.50.0",
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.51.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.49.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.49.0",
|
|
51
51
|
"tslib": "^2.3.0"
|