@aws-sdk/client-data-pipeline 3.194.0 → 3.196.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 +19 -0
- package/dist-cjs/DataPipelineClient.js +11 -8
- package/dist-cjs/commands/ActivatePipelineCommand.js +10 -0
- package/dist-cjs/commands/AddTagsCommand.js +10 -0
- package/dist-cjs/commands/CreatePipelineCommand.js +10 -0
- package/dist-cjs/commands/DeactivatePipelineCommand.js +10 -0
- package/dist-cjs/commands/DeletePipelineCommand.js +10 -0
- package/dist-cjs/commands/DescribeObjectsCommand.js +10 -0
- package/dist-cjs/commands/DescribePipelinesCommand.js +10 -0
- package/dist-cjs/commands/EvaluateExpressionCommand.js +10 -0
- package/dist-cjs/commands/GetPipelineDefinitionCommand.js +10 -0
- package/dist-cjs/commands/ListPipelinesCommand.js +10 -0
- package/dist-cjs/commands/PollForTaskCommand.js +10 -0
- package/dist-cjs/commands/PutPipelineDefinitionCommand.js +10 -0
- package/dist-cjs/commands/QueryObjectsCommand.js +10 -0
- package/dist-cjs/commands/RemoveTagsCommand.js +10 -0
- package/dist-cjs/commands/ReportTaskProgressCommand.js +10 -0
- package/dist-cjs/commands/ReportTaskRunnerHeartbeatCommand.js +10 -0
- package/dist-cjs/commands/SetStatusCommand.js +10 -0
- package/dist-cjs/commands/SetTaskStatusCommand.js +10 -0
- package/dist-cjs/commands/ValidatePipelineDefinitionCommand.js +10 -0
- package/dist-cjs/endpoint/EndpointParameters.js +13 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +318 -0
- package/dist-cjs/runtimeConfig.shared.js +3 -3
- package/dist-es/DataPipelineClient.js +12 -9
- package/dist-es/commands/ActivatePipelineCommand.js +10 -0
- package/dist-es/commands/AddTagsCommand.js +10 -0
- package/dist-es/commands/CreatePipelineCommand.js +10 -0
- package/dist-es/commands/DeactivatePipelineCommand.js +10 -0
- package/dist-es/commands/DeletePipelineCommand.js +10 -0
- package/dist-es/commands/DescribeObjectsCommand.js +10 -0
- package/dist-es/commands/DescribePipelinesCommand.js +10 -0
- package/dist-es/commands/EvaluateExpressionCommand.js +10 -0
- package/dist-es/commands/GetPipelineDefinitionCommand.js +10 -0
- package/dist-es/commands/ListPipelinesCommand.js +10 -0
- package/dist-es/commands/PollForTaskCommand.js +10 -0
- package/dist-es/commands/PutPipelineDefinitionCommand.js +10 -0
- package/dist-es/commands/QueryObjectsCommand.js +10 -0
- package/dist-es/commands/RemoveTagsCommand.js +10 -0
- package/dist-es/commands/ReportTaskProgressCommand.js +10 -0
- package/dist-es/commands/ReportTaskRunnerHeartbeatCommand.js +10 -0
- package/dist-es/commands/SetStatusCommand.js +10 -0
- package/dist-es/commands/SetTaskStatusCommand.js +10 -0
- package/dist-es/commands/ValidatePipelineDefinitionCommand.js +10 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +315 -0
- package/dist-es/runtimeConfig.shared.js +2 -2
- package/dist-types/DataPipelineClient.d.ts +6 -9
- package/dist-types/commands/ActivatePipelineCommand.d.ts +2 -0
- package/dist-types/commands/AddTagsCommand.d.ts +2 -0
- package/dist-types/commands/CreatePipelineCommand.d.ts +2 -0
- package/dist-types/commands/DeactivatePipelineCommand.d.ts +2 -0
- package/dist-types/commands/DeletePipelineCommand.d.ts +2 -0
- package/dist-types/commands/DescribeObjectsCommand.d.ts +2 -0
- package/dist-types/commands/DescribePipelinesCommand.d.ts +2 -0
- package/dist-types/commands/EvaluateExpressionCommand.d.ts +2 -0
- package/dist-types/commands/GetPipelineDefinitionCommand.d.ts +2 -0
- package/dist-types/commands/ListPipelinesCommand.d.ts +2 -0
- package/dist-types/commands/PollForTaskCommand.d.ts +2 -0
- package/dist-types/commands/PutPipelineDefinitionCommand.d.ts +2 -0
- package/dist-types/commands/QueryObjectsCommand.d.ts +2 -0
- package/dist-types/commands/RemoveTagsCommand.d.ts +2 -0
- package/dist-types/commands/ReportTaskProgressCommand.d.ts +2 -0
- package/dist-types/commands/ReportTaskRunnerHeartbeatCommand.d.ts +2 -0
- package/dist-types/commands/SetStatusCommand.d.ts +2 -0
- package/dist-types/commands/SetTaskStatusCommand.d.ts +2 -0
- package/dist-types/commands/ValidatePipelineDefinitionCommand.d.ts +2 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +4 -2
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +4 -2
- package/dist-types/runtimeConfig.shared.d.ts +3 -1
- package/dist-types/ts3.4/DataPipelineClient.d.ts +15 -8
- package/dist-types/ts3.4/commands/ActivatePipelineCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeactivatePipelineCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeObjectsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribePipelinesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/EvaluateExpressionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/GetPipelineDefinitionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/PollForTaskCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/PutPipelineDefinitionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/QueryObjectsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ReportTaskProgressCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ReportTaskRunnerHeartbeatCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/SetStatusCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/SetTaskStatusCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ValidatePipelineDefinitionCommand.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +26 -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/runtimeConfig.browser.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.d.ts +14 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +14 -3
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
- package/package.json +5 -3
- package/dist-cjs/endpoints.js +0 -132
- package/dist-es/endpoints.js +0 -128
- package/dist-types/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
@@ -86,6 +87,7 @@ export interface DescribePipelinesCommandOutput extends DescribePipelinesOutput,
|
|
|
86
87
|
*/
|
|
87
88
|
export declare class DescribePipelinesCommand extends $Command<DescribePipelinesCommandInput, DescribePipelinesCommandOutput, DataPipelineClientResolvedConfig> {
|
|
88
89
|
readonly input: DescribePipelinesCommandInput;
|
|
90
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
89
91
|
constructor(input: DescribePipelinesCommandInput);
|
|
90
92
|
/**
|
|
91
93
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
@@ -55,6 +56,7 @@ export interface EvaluateExpressionCommandOutput extends EvaluateExpressionOutpu
|
|
|
55
56
|
*/
|
|
56
57
|
export declare class EvaluateExpressionCommand extends $Command<EvaluateExpressionCommandInput, EvaluateExpressionCommandOutput, DataPipelineClientResolvedConfig> {
|
|
57
58
|
readonly input: EvaluateExpressionCommandInput;
|
|
59
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
60
|
constructor(input: EvaluateExpressionCommandInput);
|
|
59
61
|
/**
|
|
60
62
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
@@ -89,6 +90,7 @@ export interface GetPipelineDefinitionCommandOutput extends GetPipelineDefinitio
|
|
|
89
90
|
*/
|
|
90
91
|
export declare class GetPipelineDefinitionCommand extends $Command<GetPipelineDefinitionCommandInput, GetPipelineDefinitionCommandOutput, DataPipelineClientResolvedConfig> {
|
|
91
92
|
readonly input: GetPipelineDefinitionCommandInput;
|
|
93
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
92
94
|
constructor(input: GetPipelineDefinitionCommandInput);
|
|
93
95
|
/**
|
|
94
96
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
@@ -56,6 +57,7 @@ export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __Metad
|
|
|
56
57
|
*/
|
|
57
58
|
export declare class ListPipelinesCommand extends $Command<ListPipelinesCommandInput, ListPipelinesCommandOutput, DataPipelineClientResolvedConfig> {
|
|
58
59
|
readonly input: ListPipelinesCommandInput;
|
|
60
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
61
|
constructor(input: ListPipelinesCommandInput);
|
|
60
62
|
/**
|
|
61
63
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
@@ -103,6 +104,7 @@ export interface PollForTaskCommandOutput extends PollForTaskOutput, __MetadataB
|
|
|
103
104
|
*/
|
|
104
105
|
export declare class PollForTaskCommand extends $Command<PollForTaskCommandInput, PollForTaskCommandOutput, DataPipelineClientResolvedConfig> {
|
|
105
106
|
readonly input: PollForTaskCommandInput;
|
|
107
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
106
108
|
constructor(input: PollForTaskCommandInput);
|
|
107
109
|
/**
|
|
108
110
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
@@ -184,6 +185,7 @@ export interface PutPipelineDefinitionCommandOutput extends PutPipelineDefinitio
|
|
|
184
185
|
*/
|
|
185
186
|
export declare class PutPipelineDefinitionCommand extends $Command<PutPipelineDefinitionCommandInput, PutPipelineDefinitionCommandOutput, DataPipelineClientResolvedConfig> {
|
|
186
187
|
readonly input: PutPipelineDefinitionCommandInput;
|
|
188
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
187
189
|
constructor(input: PutPipelineDefinitionCommandInput);
|
|
188
190
|
/**
|
|
189
191
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
@@ -63,6 +64,7 @@ export interface QueryObjectsCommandOutput extends QueryObjectsOutput, __Metadat
|
|
|
63
64
|
*/
|
|
64
65
|
export declare class QueryObjectsCommand extends $Command<QueryObjectsCommandInput, QueryObjectsCommandOutput, DataPipelineClientResolvedConfig> {
|
|
65
66
|
readonly input: QueryObjectsCommandInput;
|
|
67
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
68
|
constructor(input: QueryObjectsCommandInput);
|
|
67
69
|
/**
|
|
68
70
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
@@ -25,6 +26,7 @@ export interface RemoveTagsCommandOutput extends RemoveTagsOutput, __MetadataBea
|
|
|
25
26
|
*/
|
|
26
27
|
export declare class RemoveTagsCommand extends $Command<RemoveTagsCommandInput, RemoveTagsCommandOutput, DataPipelineClientResolvedConfig> {
|
|
27
28
|
readonly input: RemoveTagsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: RemoveTagsCommandInput);
|
|
29
31
|
/**
|
|
30
32
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
@@ -62,6 +63,7 @@ export interface ReportTaskProgressCommandOutput extends ReportTaskProgressOutpu
|
|
|
62
63
|
*/
|
|
63
64
|
export declare class ReportTaskProgressCommand extends $Command<ReportTaskProgressCommandInput, ReportTaskProgressCommandOutput, DataPipelineClientResolvedConfig> {
|
|
64
65
|
readonly input: ReportTaskProgressCommandInput;
|
|
66
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
67
|
constructor(input: ReportTaskProgressCommandInput);
|
|
66
68
|
/**
|
|
67
69
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
@@ -57,6 +58,7 @@ export interface ReportTaskRunnerHeartbeatCommandOutput extends ReportTaskRunner
|
|
|
57
58
|
*/
|
|
58
59
|
export declare class ReportTaskRunnerHeartbeatCommand extends $Command<ReportTaskRunnerHeartbeatCommandInput, ReportTaskRunnerHeartbeatCommandOutput, DataPipelineClientResolvedConfig> {
|
|
59
60
|
readonly input: ReportTaskRunnerHeartbeatCommandInput;
|
|
61
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
62
|
constructor(input: ReportTaskRunnerHeartbeatCommandInput);
|
|
61
63
|
/**
|
|
62
64
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
@@ -57,6 +58,7 @@ export interface SetStatusCommandOutput extends __MetadataBearer {
|
|
|
57
58
|
*/
|
|
58
59
|
export declare class SetStatusCommand extends $Command<SetStatusCommandInput, SetStatusCommandOutput, DataPipelineClientResolvedConfig> {
|
|
59
60
|
readonly input: SetStatusCommandInput;
|
|
61
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
62
|
constructor(input: SetStatusCommandInput);
|
|
61
63
|
/**
|
|
62
64
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
@@ -55,6 +56,7 @@ export interface SetTaskStatusCommandOutput extends SetTaskStatusOutput, __Metad
|
|
|
55
56
|
*/
|
|
56
57
|
export declare class SetTaskStatusCommand extends $Command<SetTaskStatusCommandInput, SetTaskStatusCommandOutput, DataPipelineClientResolvedConfig> {
|
|
57
58
|
readonly input: SetTaskStatusCommandInput;
|
|
59
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
60
|
constructor(input: SetTaskStatusCommandInput);
|
|
59
61
|
/**
|
|
60
62
|
* @internal
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
4
|
import { DataPipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataPipelineClient";
|
|
@@ -176,6 +177,7 @@ export interface ValidatePipelineDefinitionCommandOutput extends ValidatePipelin
|
|
|
176
177
|
*/
|
|
177
178
|
export declare class ValidatePipelineDefinitionCommand extends $Command<ValidatePipelineDefinitionCommandInput, ValidatePipelineDefinitionCommandOutput, DataPipelineClientResolvedConfig> {
|
|
178
179
|
readonly input: ValidatePipelineDefinitionCommandInput;
|
|
180
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
179
181
|
constructor(input: ValidatePipelineDefinitionCommandInput);
|
|
180
182
|
/**
|
|
181
183
|
* @internal
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { EndpointParameters as __EndpointParameters, Provider } from "@aws-sdk/types";
|
|
2
|
+
export interface ClientInputEndpointParameters {
|
|
3
|
+
region?: string | Provider<string>;
|
|
4
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
5
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
6
|
+
endpoint?: string | Provider<string>;
|
|
7
|
+
}
|
|
8
|
+
export declare type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
9
|
+
defaultSigningName: string;
|
|
10
|
+
};
|
|
11
|
+
export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
|
|
12
|
+
defaultSigningName: string;
|
|
13
|
+
};
|
|
14
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
15
|
+
Region?: string;
|
|
16
|
+
UseDualStack?: boolean;
|
|
17
|
+
UseFIPS?: boolean;
|
|
18
|
+
Endpoint?: string;
|
|
19
|
+
}
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: DataPipelineClientConfig) => {
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: DataPipelineClientConfig) => {
|
|
|
26
26
|
disableHostPrefix: boolean;
|
|
27
27
|
logger: import("@aws-sdk/types").Logger;
|
|
28
28
|
serviceId: string;
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
31
33
|
tls?: boolean | undefined;
|
|
32
34
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
33
35
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -23,10 +23,12 @@ export declare const getRuntimeConfig: (config: DataPipelineClientConfig) => {
|
|
|
23
23
|
serviceId: string;
|
|
24
24
|
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
26
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
27
|
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
29
|
-
endpoint?: string | import("@aws-sdk/types").Endpoint
|
|
28
|
+
endpoint?: string | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Endpoint & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").EndpointV2 & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@aws-sdk/types").Provider<string>) | undefined;
|
|
29
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
31
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
30
32
|
tls?: boolean | undefined;
|
|
31
33
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
32
34
|
credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
|
|
@@ -6,8 +6,10 @@ import { DataPipelineClientConfig } from "./DataPipelineClient";
|
|
|
6
6
|
export declare const getRuntimeConfig: (config: DataPipelineClientConfig) => {
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
disableHostPrefix: boolean;
|
|
9
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
10
|
+
logger?: __Logger | undefined;
|
|
11
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
9
12
|
logger: __Logger;
|
|
10
|
-
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
11
13
|
serviceId: string;
|
|
12
14
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
13
15
|
};
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
|
-
EndpointsInputConfig,
|
|
3
|
-
EndpointsResolvedConfig,
|
|
4
2
|
RegionInputConfig,
|
|
5
3
|
RegionResolvedConfig,
|
|
6
4
|
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
7
9
|
import {
|
|
8
10
|
HostHeaderInputConfig,
|
|
9
11
|
HostHeaderResolvedConfig,
|
|
@@ -37,7 +39,6 @@ import {
|
|
|
37
39
|
Logger as __Logger,
|
|
38
40
|
Provider as __Provider,
|
|
39
41
|
Provider,
|
|
40
|
-
RegionInfoProvider,
|
|
41
42
|
StreamCollector as __StreamCollector,
|
|
42
43
|
UrlParser as __UrlParser,
|
|
43
44
|
UserAgent as __UserAgent,
|
|
@@ -118,6 +119,11 @@ import {
|
|
|
118
119
|
ValidatePipelineDefinitionCommandInput,
|
|
119
120
|
ValidatePipelineDefinitionCommandOutput,
|
|
120
121
|
} from "./commands/ValidatePipelineDefinitionCommand";
|
|
122
|
+
import {
|
|
123
|
+
ClientInputEndpointParameters,
|
|
124
|
+
ClientResolvedEndpointParameters,
|
|
125
|
+
EndpointParameters,
|
|
126
|
+
} from "./endpoint/EndpointParameters";
|
|
121
127
|
export declare type ServiceInputTypes =
|
|
122
128
|
| ActivatePipelineCommandInput
|
|
123
129
|
| AddTagsCommandInput
|
|
@@ -179,7 +185,6 @@ export interface ClientDefaults
|
|
|
179
185
|
serviceId?: string;
|
|
180
186
|
region?: string | __Provider<string>;
|
|
181
187
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
182
|
-
regionInfoProvider?: RegionInfoProvider;
|
|
183
188
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
184
189
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
185
190
|
}
|
|
@@ -188,22 +193,24 @@ declare type DataPipelineClientConfigType = Partial<
|
|
|
188
193
|
> &
|
|
189
194
|
ClientDefaults &
|
|
190
195
|
RegionInputConfig &
|
|
191
|
-
|
|
196
|
+
EndpointInputConfig<EndpointParameters> &
|
|
192
197
|
RetryInputConfig &
|
|
193
198
|
HostHeaderInputConfig &
|
|
194
199
|
AwsAuthInputConfig &
|
|
195
|
-
UserAgentInputConfig
|
|
200
|
+
UserAgentInputConfig &
|
|
201
|
+
ClientInputEndpointParameters;
|
|
196
202
|
export interface DataPipelineClientConfig
|
|
197
203
|
extends DataPipelineClientConfigType {}
|
|
198
204
|
declare type DataPipelineClientResolvedConfigType =
|
|
199
205
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
200
206
|
Required<ClientDefaults> &
|
|
201
207
|
RegionResolvedConfig &
|
|
202
|
-
|
|
208
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
203
209
|
RetryResolvedConfig &
|
|
204
210
|
HostHeaderResolvedConfig &
|
|
205
211
|
AwsAuthResolvedConfig &
|
|
206
|
-
UserAgentResolvedConfig
|
|
212
|
+
UserAgentResolvedConfig &
|
|
213
|
+
ClientResolvedEndpointParameters;
|
|
207
214
|
export interface DataPipelineClientResolvedConfig
|
|
208
215
|
extends DataPipelineClientResolvedConfigType {}
|
|
209
216
|
export declare class DataPipelineClient extends __Client<
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class ActivatePipelineCommand extends $Command<
|
|
|
24
25
|
DataPipelineClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: ActivatePipelineCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: ActivatePipelineCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -19,6 +20,7 @@ export declare class AddTagsCommand extends $Command<
|
|
|
19
20
|
DataPipelineClientResolvedConfig
|
|
20
21
|
> {
|
|
21
22
|
readonly input: AddTagsCommandInput;
|
|
23
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
22
24
|
constructor(input: AddTagsCommandInput);
|
|
23
25
|
resolveMiddleware(
|
|
24
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class CreatePipelineCommand extends $Command<
|
|
|
21
22
|
DataPipelineClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: CreatePipelineCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: CreatePipelineCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class DeactivatePipelineCommand extends $Command<
|
|
|
25
26
|
DataPipelineClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DeactivatePipelineCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DeactivatePipelineCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -19,6 +20,7 @@ export declare class DeletePipelineCommand extends $Command<
|
|
|
19
20
|
DataPipelineClientResolvedConfig
|
|
20
21
|
> {
|
|
21
22
|
readonly input: DeletePipelineCommandInput;
|
|
23
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
22
24
|
constructor(input: DeletePipelineCommandInput);
|
|
23
25
|
resolveMiddleware(
|
|
24
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class DescribeObjectsCommand extends $Command<
|
|
|
24
25
|
DataPipelineClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DescribeObjectsCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DescribeObjectsCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -24,6 +25,7 @@ export declare class DescribePipelinesCommand extends $Command<
|
|
|
24
25
|
DataPipelineClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DescribePipelinesCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DescribePipelinesCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class EvaluateExpressionCommand extends $Command<
|
|
|
25
26
|
DataPipelineClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: EvaluateExpressionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: EvaluateExpressionCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class GetPipelineDefinitionCommand extends $Command<
|
|
|
25
26
|
DataPipelineClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: GetPipelineDefinitionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: GetPipelineDefinitionCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class ListPipelinesCommand extends $Command<
|
|
|
21
22
|
DataPipelineClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: ListPipelinesCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: ListPipelinesCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class PollForTaskCommand extends $Command<
|
|
|
21
22
|
DataPipelineClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: PollForTaskCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: PollForTaskCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class PutPipelineDefinitionCommand extends $Command<
|
|
|
25
26
|
DataPipelineClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: PutPipelineDefinitionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: PutPipelineDefinitionCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class QueryObjectsCommand extends $Command<
|
|
|
21
22
|
DataPipelineClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: QueryObjectsCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: QueryObjectsCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class RemoveTagsCommand extends $Command<
|
|
|
21
22
|
DataPipelineClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: RemoveTagsCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: RemoveTagsCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ReportTaskProgressCommand extends $Command<
|
|
|
25
26
|
DataPipelineClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ReportTaskProgressCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ReportTaskProgressCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ReportTaskRunnerHeartbeatCommand extends $Command<
|
|
|
25
26
|
DataPipelineClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ReportTaskRunnerHeartbeatCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ReportTaskRunnerHeartbeatCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -19,6 +20,7 @@ export declare class SetStatusCommand extends $Command<
|
|
|
19
20
|
DataPipelineClientResolvedConfig
|
|
20
21
|
> {
|
|
21
22
|
readonly input: SetStatusCommandInput;
|
|
23
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
22
24
|
constructor(input: SetStatusCommandInput);
|
|
23
25
|
resolveMiddleware(
|
|
24
26
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -21,6 +22,7 @@ export declare class SetTaskStatusCommand extends $Command<
|
|
|
21
22
|
DataPipelineClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: SetTaskStatusCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: SetTaskStatusCommandInput);
|
|
25
27
|
resolveMiddleware(
|
|
26
28
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
1
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
3
|
import {
|
|
3
4
|
Handler,
|
|
@@ -25,6 +26,7 @@ export declare class ValidatePipelineDefinitionCommand extends $Command<
|
|
|
25
26
|
DataPipelineClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ValidatePipelineDefinitionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ValidatePipelineDefinitionCommandInput);
|
|
29
31
|
resolveMiddleware(
|
|
30
32
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import {
|
|
2
|
+
EndpointParameters as __EndpointParameters,
|
|
3
|
+
Provider,
|
|
4
|
+
} from "@aws-sdk/types";
|
|
5
|
+
export interface ClientInputEndpointParameters {
|
|
6
|
+
region?: string | Provider<string>;
|
|
7
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
8
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
9
|
+
endpoint?: string | Provider<string>;
|
|
10
|
+
}
|
|
11
|
+
export declare type ClientResolvedEndpointParameters =
|
|
12
|
+
ClientInputEndpointParameters & {
|
|
13
|
+
defaultSigningName: string;
|
|
14
|
+
};
|
|
15
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
16
|
+
options: T & ClientInputEndpointParameters
|
|
17
|
+
) => T &
|
|
18
|
+
ClientInputEndpointParameters & {
|
|
19
|
+
defaultSigningName: string;
|
|
20
|
+
};
|
|
21
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
22
|
+
Region?: string;
|
|
23
|
+
UseDualStack?: boolean;
|
|
24
|
+
UseFIPS?: boolean;
|
|
25
|
+
Endpoint?: string;
|
|
26
|
+
}
|