@aws-sdk/client-databrew 3.489.0 → 3.495.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/dist-cjs/DataBrew.js +1 -99
- package/dist-cjs/DataBrewClient.js +1 -44
- package/dist-cjs/commands/BatchDeleteRecipeVersionCommand.js +1 -28
- package/dist-cjs/commands/CreateDatasetCommand.js +1 -28
- package/dist-cjs/commands/CreateProfileJobCommand.js +1 -28
- package/dist-cjs/commands/CreateProjectCommand.js +1 -28
- package/dist-cjs/commands/CreateRecipeCommand.js +1 -28
- package/dist-cjs/commands/CreateRecipeJobCommand.js +1 -28
- package/dist-cjs/commands/CreateRulesetCommand.js +1 -28
- package/dist-cjs/commands/CreateScheduleCommand.js +1 -28
- package/dist-cjs/commands/DeleteDatasetCommand.js +1 -28
- package/dist-cjs/commands/DeleteJobCommand.js +1 -28
- package/dist-cjs/commands/DeleteProjectCommand.js +1 -28
- package/dist-cjs/commands/DeleteRecipeVersionCommand.js +1 -28
- package/dist-cjs/commands/DeleteRulesetCommand.js +1 -28
- package/dist-cjs/commands/DeleteScheduleCommand.js +1 -28
- package/dist-cjs/commands/DescribeDatasetCommand.js +1 -28
- package/dist-cjs/commands/DescribeJobCommand.js +1 -28
- package/dist-cjs/commands/DescribeJobRunCommand.js +1 -28
- package/dist-cjs/commands/DescribeProjectCommand.js +1 -28
- package/dist-cjs/commands/DescribeRecipeCommand.js +1 -28
- package/dist-cjs/commands/DescribeRulesetCommand.js +1 -28
- package/dist-cjs/commands/DescribeScheduleCommand.js +1 -28
- package/dist-cjs/commands/ListDatasetsCommand.js +1 -28
- package/dist-cjs/commands/ListJobRunsCommand.js +1 -28
- package/dist-cjs/commands/ListJobsCommand.js +1 -28
- package/dist-cjs/commands/ListProjectsCommand.js +1 -28
- package/dist-cjs/commands/ListRecipeVersionsCommand.js +1 -28
- package/dist-cjs/commands/ListRecipesCommand.js +1 -28
- package/dist-cjs/commands/ListRulesetsCommand.js +1 -28
- package/dist-cjs/commands/ListSchedulesCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/PublishRecipeCommand.js +1 -28
- package/dist-cjs/commands/SendProjectSessionActionCommand.js +1 -29
- package/dist-cjs/commands/StartJobRunCommand.js +1 -28
- package/dist-cjs/commands/StartProjectSessionCommand.js +1 -29
- package/dist-cjs/commands/StopJobRunCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateDatasetCommand.js +1 -28
- package/dist-cjs/commands/UpdateProfileJobCommand.js +1 -28
- package/dist-cjs/commands/UpdateProjectCommand.js +1 -28
- package/dist-cjs/commands/UpdateRecipeCommand.js +1 -28
- package/dist-cjs/commands/UpdateRecipeJobCommand.js +1 -28
- package/dist-cjs/commands/UpdateRulesetCommand.js +1 -28
- package/dist-cjs/commands/UpdateScheduleCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -47
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +4132 -11
- package/dist-cjs/models/DataBrewServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -206
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListDatasetsPaginator.js +1 -7
- package/dist-cjs/pagination/ListJobRunsPaginator.js +1 -7
- package/dist-cjs/pagination/ListJobsPaginator.js +1 -7
- package/dist-cjs/pagination/ListProjectsPaginator.js +1 -7
- package/dist-cjs/pagination/ListRecipeVersionsPaginator.js +1 -7
- package/dist-cjs/pagination/ListRecipesPaginator.js +1 -7
- package/dist-cjs/pagination/ListRulesetsPaginator.js +1 -7
- package/dist-cjs/pagination/ListSchedulesPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -12
- package/dist-cjs/protocols/Aws_restJson1.js +1 -2847
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateDatasetCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class UpdateDatasetCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSGlueDataBrew", "UpdateDataset", {})
|
|
22
|
-
.n("DataBrewClient", "UpdateDatasetCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_UpdateDatasetCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_UpdateDatasetCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.UpdateDatasetCommand = UpdateDatasetCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateProfileJobCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class UpdateProfileJobCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSGlueDataBrew", "UpdateProfileJob", {})
|
|
22
|
-
.n("DataBrewClient", "UpdateProfileJobCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_UpdateProfileJobCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_UpdateProfileJobCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.UpdateProfileJobCommand = UpdateProfileJobCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateProjectCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class UpdateProjectCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSGlueDataBrew", "UpdateProject", {})
|
|
22
|
-
.n("DataBrewClient", "UpdateProjectCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_UpdateProjectCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_UpdateProjectCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.UpdateProjectCommand = UpdateProjectCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateRecipeCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class UpdateRecipeCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSGlueDataBrew", "UpdateRecipe", {})
|
|
22
|
-
.n("DataBrewClient", "UpdateRecipeCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_UpdateRecipeCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_UpdateRecipeCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.UpdateRecipeCommand = UpdateRecipeCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateRecipeJobCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class UpdateRecipeJobCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSGlueDataBrew", "UpdateRecipeJob", {})
|
|
22
|
-
.n("DataBrewClient", "UpdateRecipeJobCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_UpdateRecipeJobCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_UpdateRecipeJobCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.UpdateRecipeJobCommand = UpdateRecipeJobCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateRulesetCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class UpdateRulesetCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSGlueDataBrew", "UpdateRuleset", {})
|
|
22
|
-
.n("DataBrewClient", "UpdateRulesetCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_UpdateRulesetCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_UpdateRulesetCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.UpdateRulesetCommand = UpdateRulesetCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UpdateScheduleCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_restJson1_1 = require("../protocols/Aws_restJson1");
|
|
10
|
-
class UpdateScheduleCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("AWSGlueDataBrew", "UpdateSchedule", {})
|
|
22
|
-
.n("DataBrewClient", "UpdateScheduleCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_restJson1_1.se_UpdateScheduleCommand)
|
|
25
|
-
.de(Aws_restJson1_1.de_UpdateScheduleCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.UpdateScheduleCommand = UpdateScheduleCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,47 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./BatchDeleteRecipeVersionCommand"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./CreateDatasetCommand"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./CreateProfileJobCommand"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./CreateProjectCommand"), exports);
|
|
8
|
-
tslib_1.__exportStar(require("./CreateRecipeCommand"), exports);
|
|
9
|
-
tslib_1.__exportStar(require("./CreateRecipeJobCommand"), exports);
|
|
10
|
-
tslib_1.__exportStar(require("./CreateRulesetCommand"), exports);
|
|
11
|
-
tslib_1.__exportStar(require("./CreateScheduleCommand"), exports);
|
|
12
|
-
tslib_1.__exportStar(require("./DeleteDatasetCommand"), exports);
|
|
13
|
-
tslib_1.__exportStar(require("./DeleteJobCommand"), exports);
|
|
14
|
-
tslib_1.__exportStar(require("./DeleteProjectCommand"), exports);
|
|
15
|
-
tslib_1.__exportStar(require("./DeleteRecipeVersionCommand"), exports);
|
|
16
|
-
tslib_1.__exportStar(require("./DeleteRulesetCommand"), exports);
|
|
17
|
-
tslib_1.__exportStar(require("./DeleteScheduleCommand"), exports);
|
|
18
|
-
tslib_1.__exportStar(require("./DescribeDatasetCommand"), exports);
|
|
19
|
-
tslib_1.__exportStar(require("./DescribeJobCommand"), exports);
|
|
20
|
-
tslib_1.__exportStar(require("./DescribeJobRunCommand"), exports);
|
|
21
|
-
tslib_1.__exportStar(require("./DescribeProjectCommand"), exports);
|
|
22
|
-
tslib_1.__exportStar(require("./DescribeRecipeCommand"), exports);
|
|
23
|
-
tslib_1.__exportStar(require("./DescribeRulesetCommand"), exports);
|
|
24
|
-
tslib_1.__exportStar(require("./DescribeScheduleCommand"), exports);
|
|
25
|
-
tslib_1.__exportStar(require("./ListDatasetsCommand"), exports);
|
|
26
|
-
tslib_1.__exportStar(require("./ListJobRunsCommand"), exports);
|
|
27
|
-
tslib_1.__exportStar(require("./ListJobsCommand"), exports);
|
|
28
|
-
tslib_1.__exportStar(require("./ListProjectsCommand"), exports);
|
|
29
|
-
tslib_1.__exportStar(require("./ListRecipeVersionsCommand"), exports);
|
|
30
|
-
tslib_1.__exportStar(require("./ListRecipesCommand"), exports);
|
|
31
|
-
tslib_1.__exportStar(require("./ListRulesetsCommand"), exports);
|
|
32
|
-
tslib_1.__exportStar(require("./ListSchedulesCommand"), exports);
|
|
33
|
-
tslib_1.__exportStar(require("./ListTagsForResourceCommand"), exports);
|
|
34
|
-
tslib_1.__exportStar(require("./PublishRecipeCommand"), exports);
|
|
35
|
-
tslib_1.__exportStar(require("./SendProjectSessionActionCommand"), exports);
|
|
36
|
-
tslib_1.__exportStar(require("./StartJobRunCommand"), exports);
|
|
37
|
-
tslib_1.__exportStar(require("./StartProjectSessionCommand"), exports);
|
|
38
|
-
tslib_1.__exportStar(require("./StopJobRunCommand"), exports);
|
|
39
|
-
tslib_1.__exportStar(require("./TagResourceCommand"), exports);
|
|
40
|
-
tslib_1.__exportStar(require("./UntagResourceCommand"), exports);
|
|
41
|
-
tslib_1.__exportStar(require("./UpdateDatasetCommand"), exports);
|
|
42
|
-
tslib_1.__exportStar(require("./UpdateProfileJobCommand"), exports);
|
|
43
|
-
tslib_1.__exportStar(require("./UpdateProjectCommand"), exports);
|
|
44
|
-
tslib_1.__exportStar(require("./UpdateRecipeCommand"), exports);
|
|
45
|
-
tslib_1.__exportStar(require("./UpdateRecipeJobCommand"), exports);
|
|
46
|
-
tslib_1.__exportStar(require("./UpdateRulesetCommand"), exports);
|
|
47
|
-
tslib_1.__exportStar(require("./UpdateScheduleCommand"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,18 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.commonParams = exports.resolveClientEndpointParameters = void 0;
|
|
4
|
-
const resolveClientEndpointParameters = (options) => {
|
|
5
|
-
return {
|
|
6
|
-
...options,
|
|
7
|
-
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
8
|
-
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
9
|
-
defaultSigningName: "databrew",
|
|
10
|
-
};
|
|
11
|
-
};
|
|
12
|
-
exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
|
|
13
|
-
exports.commonParams = {
|
|
14
|
-
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
15
|
-
Endpoint: { type: "builtInParams", name: "endpoint" },
|
|
16
|
-
Region: { type: "builtInParams", name: "region" },
|
|
17
|
-
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
18
|
-
};
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("./index.js");
|