@aws-sdk/client-databrew 3.193.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/DataBrewClient.js +11 -8
- package/dist-cjs/commands/BatchDeleteRecipeVersionCommand.js +10 -0
- package/dist-cjs/commands/CreateDatasetCommand.js +10 -0
- package/dist-cjs/commands/CreateProfileJobCommand.js +10 -0
- package/dist-cjs/commands/CreateProjectCommand.js +10 -0
- package/dist-cjs/commands/CreateRecipeCommand.js +10 -0
- package/dist-cjs/commands/CreateRecipeJobCommand.js +10 -0
- package/dist-cjs/commands/CreateRulesetCommand.js +10 -0
- package/dist-cjs/commands/CreateScheduleCommand.js +10 -0
- package/dist-cjs/commands/DeleteDatasetCommand.js +10 -0
- package/dist-cjs/commands/DeleteJobCommand.js +10 -0
- package/dist-cjs/commands/DeleteProjectCommand.js +10 -0
- package/dist-cjs/commands/DeleteRecipeVersionCommand.js +10 -0
- package/dist-cjs/commands/DeleteRulesetCommand.js +10 -0
- package/dist-cjs/commands/DeleteScheduleCommand.js +10 -0
- package/dist-cjs/commands/DescribeDatasetCommand.js +10 -0
- package/dist-cjs/commands/DescribeJobCommand.js +10 -0
- package/dist-cjs/commands/DescribeJobRunCommand.js +10 -0
- package/dist-cjs/commands/DescribeProjectCommand.js +10 -0
- package/dist-cjs/commands/DescribeRecipeCommand.js +10 -0
- package/dist-cjs/commands/DescribeRulesetCommand.js +10 -0
- package/dist-cjs/commands/DescribeScheduleCommand.js +10 -0
- package/dist-cjs/commands/ListDatasetsCommand.js +10 -0
- package/dist-cjs/commands/ListJobRunsCommand.js +10 -0
- package/dist-cjs/commands/ListJobsCommand.js +10 -0
- package/dist-cjs/commands/ListProjectsCommand.js +10 -0
- package/dist-cjs/commands/ListRecipeVersionsCommand.js +10 -0
- package/dist-cjs/commands/ListRecipesCommand.js +10 -0
- package/dist-cjs/commands/ListRulesetsCommand.js +10 -0
- package/dist-cjs/commands/ListSchedulesCommand.js +10 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-cjs/commands/PublishRecipeCommand.js +10 -0
- package/dist-cjs/commands/SendProjectSessionActionCommand.js +10 -0
- package/dist-cjs/commands/StartJobRunCommand.js +10 -0
- package/dist-cjs/commands/StartProjectSessionCommand.js +10 -0
- package/dist-cjs/commands/StopJobRunCommand.js +10 -0
- package/dist-cjs/commands/TagResourceCommand.js +10 -0
- package/dist-cjs/commands/UntagResourceCommand.js +10 -0
- package/dist-cjs/commands/UpdateDatasetCommand.js +10 -0
- package/dist-cjs/commands/UpdateProfileJobCommand.js +10 -0
- package/dist-cjs/commands/UpdateProjectCommand.js +10 -0
- package/dist-cjs/commands/UpdateRecipeCommand.js +10 -0
- package/dist-cjs/commands/UpdateRecipeJobCommand.js +10 -0
- package/dist-cjs/commands/UpdateRulesetCommand.js +10 -0
- package/dist-cjs/commands/UpdateScheduleCommand.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/DataBrewClient.js +12 -9
- package/dist-es/commands/BatchDeleteRecipeVersionCommand.js +10 -0
- package/dist-es/commands/CreateDatasetCommand.js +10 -0
- package/dist-es/commands/CreateProfileJobCommand.js +10 -0
- package/dist-es/commands/CreateProjectCommand.js +10 -0
- package/dist-es/commands/CreateRecipeCommand.js +10 -0
- package/dist-es/commands/CreateRecipeJobCommand.js +10 -0
- package/dist-es/commands/CreateRulesetCommand.js +10 -0
- package/dist-es/commands/CreateScheduleCommand.js +10 -0
- package/dist-es/commands/DeleteDatasetCommand.js +10 -0
- package/dist-es/commands/DeleteJobCommand.js +10 -0
- package/dist-es/commands/DeleteProjectCommand.js +10 -0
- package/dist-es/commands/DeleteRecipeVersionCommand.js +10 -0
- package/dist-es/commands/DeleteRulesetCommand.js +10 -0
- package/dist-es/commands/DeleteScheduleCommand.js +10 -0
- package/dist-es/commands/DescribeDatasetCommand.js +10 -0
- package/dist-es/commands/DescribeJobCommand.js +10 -0
- package/dist-es/commands/DescribeJobRunCommand.js +10 -0
- package/dist-es/commands/DescribeProjectCommand.js +10 -0
- package/dist-es/commands/DescribeRecipeCommand.js +10 -0
- package/dist-es/commands/DescribeRulesetCommand.js +10 -0
- package/dist-es/commands/DescribeScheduleCommand.js +10 -0
- package/dist-es/commands/ListDatasetsCommand.js +10 -0
- package/dist-es/commands/ListJobRunsCommand.js +10 -0
- package/dist-es/commands/ListJobsCommand.js +10 -0
- package/dist-es/commands/ListProjectsCommand.js +10 -0
- package/dist-es/commands/ListRecipeVersionsCommand.js +10 -0
- package/dist-es/commands/ListRecipesCommand.js +10 -0
- package/dist-es/commands/ListRulesetsCommand.js +10 -0
- package/dist-es/commands/ListSchedulesCommand.js +10 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +10 -0
- package/dist-es/commands/PublishRecipeCommand.js +10 -0
- package/dist-es/commands/SendProjectSessionActionCommand.js +10 -0
- package/dist-es/commands/StartJobRunCommand.js +10 -0
- package/dist-es/commands/StartProjectSessionCommand.js +10 -0
- package/dist-es/commands/StopJobRunCommand.js +10 -0
- package/dist-es/commands/TagResourceCommand.js +10 -0
- package/dist-es/commands/UntagResourceCommand.js +10 -0
- package/dist-es/commands/UpdateDatasetCommand.js +10 -0
- package/dist-es/commands/UpdateProfileJobCommand.js +10 -0
- package/dist-es/commands/UpdateProjectCommand.js +10 -0
- package/dist-es/commands/UpdateRecipeCommand.js +10 -0
- package/dist-es/commands/UpdateRecipeJobCommand.js +10 -0
- package/dist-es/commands/UpdateRulesetCommand.js +10 -0
- package/dist-es/commands/UpdateScheduleCommand.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/DataBrewClient.d.ts +6 -9
- package/dist-types/commands/BatchDeleteRecipeVersionCommand.d.ts +2 -0
- package/dist-types/commands/CreateDatasetCommand.d.ts +2 -0
- package/dist-types/commands/CreateProfileJobCommand.d.ts +2 -0
- package/dist-types/commands/CreateProjectCommand.d.ts +2 -0
- package/dist-types/commands/CreateRecipeCommand.d.ts +2 -0
- package/dist-types/commands/CreateRecipeJobCommand.d.ts +2 -0
- package/dist-types/commands/CreateRulesetCommand.d.ts +2 -0
- package/dist-types/commands/CreateScheduleCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +2 -0
- package/dist-types/commands/DeleteJobCommand.d.ts +2 -0
- package/dist-types/commands/DeleteProjectCommand.d.ts +2 -0
- package/dist-types/commands/DeleteRecipeVersionCommand.d.ts +2 -0
- package/dist-types/commands/DeleteRulesetCommand.d.ts +2 -0
- package/dist-types/commands/DeleteScheduleCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDatasetCommand.d.ts +2 -0
- package/dist-types/commands/DescribeJobCommand.d.ts +2 -0
- package/dist-types/commands/DescribeJobRunCommand.d.ts +2 -0
- package/dist-types/commands/DescribeProjectCommand.d.ts +2 -0
- package/dist-types/commands/DescribeRecipeCommand.d.ts +2 -0
- package/dist-types/commands/DescribeRulesetCommand.d.ts +2 -0
- package/dist-types/commands/DescribeScheduleCommand.d.ts +2 -0
- package/dist-types/commands/ListDatasetsCommand.d.ts +2 -0
- package/dist-types/commands/ListJobRunsCommand.d.ts +2 -0
- package/dist-types/commands/ListJobsCommand.d.ts +2 -0
- package/dist-types/commands/ListProjectsCommand.d.ts +2 -0
- package/dist-types/commands/ListRecipeVersionsCommand.d.ts +2 -0
- package/dist-types/commands/ListRecipesCommand.d.ts +2 -0
- package/dist-types/commands/ListRulesetsCommand.d.ts +2 -0
- package/dist-types/commands/ListSchedulesCommand.d.ts +2 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/commands/PublishRecipeCommand.d.ts +2 -0
- package/dist-types/commands/SendProjectSessionActionCommand.d.ts +2 -0
- package/dist-types/commands/StartJobRunCommand.d.ts +2 -0
- package/dist-types/commands/StartProjectSessionCommand.d.ts +2 -0
- package/dist-types/commands/StopJobRunCommand.d.ts +2 -0
- package/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateDatasetCommand.d.ts +2 -0
- package/dist-types/commands/UpdateProfileJobCommand.d.ts +2 -0
- package/dist-types/commands/UpdateProjectCommand.d.ts +2 -0
- package/dist-types/commands/UpdateRecipeCommand.d.ts +2 -0
- package/dist-types/commands/UpdateRecipeJobCommand.d.ts +2 -0
- package/dist-types/commands/UpdateRulesetCommand.d.ts +2 -0
- package/dist-types/commands/UpdateScheduleCommand.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/DataBrewClient.d.ts +15 -8
- package/dist-types/ts3.4/commands/BatchDeleteRecipeVersionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateDatasetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateProfileJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateProjectCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateRecipeCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateRecipeJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateRulesetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/CreateScheduleCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteProjectCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteRecipeVersionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteRulesetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DeleteScheduleCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeDatasetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeJobRunCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeProjectCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeRecipeCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeRulesetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/DescribeScheduleCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListJobRunsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListProjectsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListRecipeVersionsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListRecipesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListRulesetsCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListSchedulesCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/PublishRecipeCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/SendProjectSessionActionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/StartJobRunCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/StartProjectSessionCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/StopJobRunCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateDatasetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateProfileJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateProjectCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateRecipeCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateRecipeJobCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateRulesetCommand.d.ts +2 -0
- package/dist-types/ts3.4/commands/UpdateScheduleCommand.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 -169
- package/dist-es/endpoints.js +0 -165
- package/dist-types/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
|
@@ -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,
|
|
@@ -218,6 +219,11 @@ import {
|
|
|
218
219
|
UpdateScheduleCommandInput,
|
|
219
220
|
UpdateScheduleCommandOutput,
|
|
220
221
|
} from "./commands/UpdateScheduleCommand";
|
|
222
|
+
import {
|
|
223
|
+
ClientInputEndpointParameters,
|
|
224
|
+
ClientResolvedEndpointParameters,
|
|
225
|
+
EndpointParameters,
|
|
226
|
+
} from "./endpoint/EndpointParameters";
|
|
221
227
|
export declare type ServiceInputTypes =
|
|
222
228
|
| BatchDeleteRecipeVersionCommandInput
|
|
223
229
|
| CreateDatasetCommandInput
|
|
@@ -329,7 +335,6 @@ export interface ClientDefaults
|
|
|
329
335
|
serviceId?: string;
|
|
330
336
|
region?: string | __Provider<string>;
|
|
331
337
|
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
332
|
-
regionInfoProvider?: RegionInfoProvider;
|
|
333
338
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
334
339
|
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
335
340
|
}
|
|
@@ -338,21 +343,23 @@ declare type DataBrewClientConfigType = Partial<
|
|
|
338
343
|
> &
|
|
339
344
|
ClientDefaults &
|
|
340
345
|
RegionInputConfig &
|
|
341
|
-
|
|
346
|
+
EndpointInputConfig<EndpointParameters> &
|
|
342
347
|
RetryInputConfig &
|
|
343
348
|
HostHeaderInputConfig &
|
|
344
349
|
AwsAuthInputConfig &
|
|
345
|
-
UserAgentInputConfig
|
|
350
|
+
UserAgentInputConfig &
|
|
351
|
+
ClientInputEndpointParameters;
|
|
346
352
|
export interface DataBrewClientConfig extends DataBrewClientConfigType {}
|
|
347
353
|
declare type DataBrewClientResolvedConfigType =
|
|
348
354
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
349
355
|
Required<ClientDefaults> &
|
|
350
356
|
RegionResolvedConfig &
|
|
351
|
-
|
|
357
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
352
358
|
RetryResolvedConfig &
|
|
353
359
|
HostHeaderResolvedConfig &
|
|
354
360
|
AwsAuthResolvedConfig &
|
|
355
|
-
UserAgentResolvedConfig
|
|
361
|
+
UserAgentResolvedConfig &
|
|
362
|
+
ClientResolvedEndpointParameters;
|
|
356
363
|
export interface DataBrewClientResolvedConfig
|
|
357
364
|
extends DataBrewClientResolvedConfigType {}
|
|
358
365
|
export declare class DataBrewClient 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,
|
|
@@ -25,6 +26,7 @@ export declare class BatchDeleteRecipeVersionCommand extends $Command<
|
|
|
25
26
|
DataBrewClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: BatchDeleteRecipeVersionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: BatchDeleteRecipeVersionCommandInput);
|
|
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,
|
|
@@ -24,6 +25,7 @@ export declare class CreateDatasetCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: CreateDatasetCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: CreateDatasetCommandInput);
|
|
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 CreateProfileJobCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: CreateProfileJobCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: CreateProfileJobCommandInput);
|
|
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 CreateProjectCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: CreateProjectCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: CreateProjectCommandInput);
|
|
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,
|
|
@@ -21,6 +22,7 @@ export declare class CreateRecipeCommand extends $Command<
|
|
|
21
22
|
DataBrewClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: CreateRecipeCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: CreateRecipeCommandInput);
|
|
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,
|
|
@@ -24,6 +25,7 @@ export declare class CreateRecipeJobCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: CreateRecipeJobCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: CreateRecipeJobCommandInput);
|
|
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 CreateRulesetCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: CreateRulesetCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: CreateRulesetCommandInput);
|
|
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 CreateScheduleCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: CreateScheduleCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: CreateScheduleCommandInput);
|
|
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 DeleteDatasetCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DeleteDatasetCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DeleteDatasetCommandInput);
|
|
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,
|
|
@@ -21,6 +22,7 @@ export declare class DeleteJobCommand extends $Command<
|
|
|
21
22
|
DataBrewClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: DeleteJobCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: DeleteJobCommandInput);
|
|
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,
|
|
@@ -24,6 +25,7 @@ export declare class DeleteProjectCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DeleteProjectCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DeleteProjectCommandInput);
|
|
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 DeleteRecipeVersionCommand extends $Command<
|
|
|
25
26
|
DataBrewClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: DeleteRecipeVersionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: DeleteRecipeVersionCommandInput);
|
|
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,
|
|
@@ -24,6 +25,7 @@ export declare class DeleteRulesetCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DeleteRulesetCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DeleteRulesetCommandInput);
|
|
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 DeleteScheduleCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DeleteScheduleCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DeleteScheduleCommandInput);
|
|
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 DescribeDatasetCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DescribeDatasetCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DescribeDatasetCommandInput);
|
|
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,
|
|
@@ -21,6 +22,7 @@ export declare class DescribeJobCommand extends $Command<
|
|
|
21
22
|
DataBrewClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: DescribeJobCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: DescribeJobCommandInput);
|
|
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,
|
|
@@ -24,6 +25,7 @@ export declare class DescribeJobRunCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DescribeJobRunCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DescribeJobRunCommandInput);
|
|
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 DescribeProjectCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DescribeProjectCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DescribeProjectCommandInput);
|
|
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 DescribeRecipeCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DescribeRecipeCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DescribeRecipeCommandInput);
|
|
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 DescribeRulesetCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DescribeRulesetCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DescribeRulesetCommandInput);
|
|
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 DescribeScheduleCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: DescribeScheduleCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: DescribeScheduleCommandInput);
|
|
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,
|
|
@@ -21,6 +22,7 @@ export declare class ListDatasetsCommand extends $Command<
|
|
|
21
22
|
DataBrewClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: ListDatasetsCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: ListDatasetsCommandInput);
|
|
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 ListJobRunsCommand extends $Command<
|
|
|
21
22
|
DataBrewClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: ListJobRunsCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: ListJobRunsCommandInput);
|
|
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 ListJobsCommand extends $Command<
|
|
|
21
22
|
DataBrewClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: ListJobsCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: ListJobsCommandInput);
|
|
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 ListProjectsCommand extends $Command<
|
|
|
21
22
|
DataBrewClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: ListProjectsCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: ListProjectsCommandInput);
|
|
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 ListRecipeVersionsCommand extends $Command<
|
|
|
25
26
|
DataBrewClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListRecipeVersionsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListRecipeVersionsCommandInput);
|
|
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 ListRecipesCommand extends $Command<
|
|
|
21
22
|
DataBrewClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: ListRecipesCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: ListRecipesCommandInput);
|
|
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 ListRulesetsCommand extends $Command<
|
|
|
21
22
|
DataBrewClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: ListRulesetsCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: ListRulesetsCommandInput);
|
|
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,
|
|
@@ -24,6 +25,7 @@ export declare class ListSchedulesCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: ListSchedulesCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: ListSchedulesCommandInput);
|
|
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 ListTagsForResourceCommand extends $Command<
|
|
|
25
26
|
DataBrewClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: ListTagsForResourceCommandInput);
|
|
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,
|
|
@@ -24,6 +25,7 @@ export declare class PublishRecipeCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: PublishRecipeCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: PublishRecipeCommandInput);
|
|
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 SendProjectSessionActionCommand extends $Command<
|
|
|
25
26
|
DataBrewClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: SendProjectSessionActionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: SendProjectSessionActionCommandInput);
|
|
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 StartJobRunCommand extends $Command<
|
|
|
21
22
|
DataBrewClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: StartJobRunCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: StartJobRunCommandInput);
|
|
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 StartProjectSessionCommand extends $Command<
|
|
|
25
26
|
DataBrewClientResolvedConfig
|
|
26
27
|
> {
|
|
27
28
|
readonly input: StartProjectSessionCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
28
30
|
constructor(input: StartProjectSessionCommandInput);
|
|
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 StopJobRunCommand extends $Command<
|
|
|
21
22
|
DataBrewClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: StopJobRunCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: StopJobRunCommandInput);
|
|
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 TagResourceCommand extends $Command<
|
|
|
21
22
|
DataBrewClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: TagResourceCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: TagResourceCommandInput);
|
|
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,
|
|
@@ -24,6 +25,7 @@ export declare class UntagResourceCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: UntagResourceCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: UntagResourceCommandInput);
|
|
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 UpdateDatasetCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: UpdateDatasetCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: UpdateDatasetCommandInput);
|
|
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 UpdateProfileJobCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: UpdateProfileJobCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: UpdateProfileJobCommandInput);
|
|
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 UpdateProjectCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: UpdateProjectCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: UpdateProjectCommandInput);
|
|
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,
|
|
@@ -21,6 +22,7 @@ export declare class UpdateRecipeCommand extends $Command<
|
|
|
21
22
|
DataBrewClientResolvedConfig
|
|
22
23
|
> {
|
|
23
24
|
readonly input: UpdateRecipeCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
24
26
|
constructor(input: UpdateRecipeCommandInput);
|
|
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,
|
|
@@ -24,6 +25,7 @@ export declare class UpdateRecipeJobCommand extends $Command<
|
|
|
24
25
|
DataBrewClientResolvedConfig
|
|
25
26
|
> {
|
|
26
27
|
readonly input: UpdateRecipeJobCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
29
|
constructor(input: UpdateRecipeJobCommandInput);
|
|
28
30
|
resolveMiddleware(
|
|
29
31
|
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|