@aws-sdk/client-sfn 3.130.0 → 3.141.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 +30 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CreateActivityCommand.js +2 -2
- package/dist-cjs/commands/CreateStateMachineCommand.js +2 -2
- package/dist-cjs/commands/DeleteActivityCommand.js +2 -2
- package/dist-cjs/commands/DeleteStateMachineCommand.js +2 -2
- package/dist-cjs/commands/DescribeActivityCommand.js +2 -2
- package/dist-cjs/commands/DescribeExecutionCommand.js +2 -2
- package/dist-cjs/commands/DescribeStateMachineCommand.js +2 -2
- package/dist-cjs/commands/DescribeStateMachineForExecutionCommand.js +2 -2
- package/dist-cjs/commands/GetActivityTaskCommand.js +2 -2
- package/dist-cjs/commands/GetExecutionHistoryCommand.js +2 -2
- package/dist-cjs/commands/ListActivitiesCommand.js +2 -2
- package/dist-cjs/commands/ListExecutionsCommand.js +2 -2
- package/dist-cjs/commands/ListStateMachinesCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/SendTaskFailureCommand.js +2 -2
- package/dist-cjs/commands/SendTaskHeartbeatCommand.js +2 -2
- package/dist-cjs/commands/SendTaskSuccessCommand.js +2 -2
- package/dist-cjs/commands/StartExecutionCommand.js +2 -2
- package/dist-cjs/commands/StartSyncExecutionCommand.js +2 -2
- package/dist-cjs/commands/StopExecutionCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateStateMachineCommand.js +2 -2
- package/dist-cjs/models/models_0.js +484 -658
- package/dist-es/commands/CreateActivityCommand.js +3 -3
- package/dist-es/commands/CreateStateMachineCommand.js +3 -3
- package/dist-es/commands/DeleteActivityCommand.js +3 -3
- package/dist-es/commands/DeleteStateMachineCommand.js +3 -3
- package/dist-es/commands/DescribeActivityCommand.js +3 -3
- package/dist-es/commands/DescribeExecutionCommand.js +3 -3
- package/dist-es/commands/DescribeStateMachineCommand.js +3 -3
- package/dist-es/commands/DescribeStateMachineForExecutionCommand.js +3 -3
- package/dist-es/commands/GetActivityTaskCommand.js +3 -3
- package/dist-es/commands/GetExecutionHistoryCommand.js +3 -3
- package/dist-es/commands/ListActivitiesCommand.js +3 -3
- package/dist-es/commands/ListExecutionsCommand.js +3 -3
- package/dist-es/commands/ListStateMachinesCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/SendTaskFailureCommand.js +3 -3
- package/dist-es/commands/SendTaskHeartbeatCommand.js +3 -3
- package/dist-es/commands/SendTaskSuccessCommand.js +3 -3
- package/dist-es/commands/StartExecutionCommand.js +3 -3
- package/dist-es/commands/StartSyncExecutionCommand.js +3 -3
- package/dist-es/commands/StopExecutionCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateStateMachineCommand.js +3 -3
- package/dist-es/models/models_0.js +137 -398
- package/dist-types/models/models_0.d.ts +348 -522
- package/dist-types/ts3.4/models/models_0.d.ts +174 -348
- package/package.json +7 -7
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateActivityInputFilterSensitiveLog, CreateActivityOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0CreateActivityCommand, serializeAws_json1_0CreateActivityCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var CreateActivityCommand = (function (_super) {
|
|
7
7
|
__extends(CreateActivityCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateActivityCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateActivityInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateActivityOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateStateMachineInputFilterSensitiveLog, CreateStateMachineOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0CreateStateMachineCommand, serializeAws_json1_0CreateStateMachineCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var CreateStateMachineCommand = (function (_super) {
|
|
7
7
|
__extends(CreateStateMachineCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateStateMachineCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateStateMachineInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateStateMachineOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteActivityInputFilterSensitiveLog, DeleteActivityOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0DeleteActivityCommand, serializeAws_json1_0DeleteActivityCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var DeleteActivityCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteActivityCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteActivityCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteActivityInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteActivityOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteStateMachineInputFilterSensitiveLog, DeleteStateMachineOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0DeleteStateMachineCommand, serializeAws_json1_0DeleteStateMachineCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var DeleteStateMachineCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteStateMachineCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteStateMachineCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteStateMachineInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteStateMachineOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeActivityInputFilterSensitiveLog, DescribeActivityOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0DescribeActivityCommand, serializeAws_json1_0DescribeActivityCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var DescribeActivityCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeActivityCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeActivityCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeActivityInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeActivityOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeExecutionInputFilterSensitiveLog, DescribeExecutionOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0DescribeExecutionCommand, serializeAws_json1_0DescribeExecutionCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var DescribeExecutionCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeExecutionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeExecutionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeExecutionInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeExecutionOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeStateMachineInputFilterSensitiveLog, DescribeStateMachineOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0DescribeStateMachineCommand, serializeAws_json1_0DescribeStateMachineCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var DescribeStateMachineCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeStateMachineCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeStateMachineCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeStateMachineInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeStateMachineOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DescribeStateMachineForExecutionInputFilterSensitiveLog, DescribeStateMachineForExecutionOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0DescribeStateMachineForExecutionCommand, serializeAws_json1_0DescribeStateMachineForExecutionCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var DescribeStateMachineForExecutionCommand = (function (_super) {
|
|
7
7
|
__extends(DescribeStateMachineForExecutionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DescribeStateMachineForExecutionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DescribeStateMachineForExecutionInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeStateMachineForExecutionOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetActivityTaskInputFilterSensitiveLog, GetActivityTaskOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0GetActivityTaskCommand, serializeAws_json1_0GetActivityTaskCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var GetActivityTaskCommand = (function (_super) {
|
|
7
7
|
__extends(GetActivityTaskCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetActivityTaskCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetActivityTaskInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetActivityTaskOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetExecutionHistoryInputFilterSensitiveLog, GetExecutionHistoryOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0GetExecutionHistoryCommand, serializeAws_json1_0GetExecutionHistoryCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var GetExecutionHistoryCommand = (function (_super) {
|
|
7
7
|
__extends(GetExecutionHistoryCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetExecutionHistoryCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetExecutionHistoryInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetExecutionHistoryOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListActivitiesInputFilterSensitiveLog, ListActivitiesOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0ListActivitiesCommand, serializeAws_json1_0ListActivitiesCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var ListActivitiesCommand = (function (_super) {
|
|
7
7
|
__extends(ListActivitiesCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListActivitiesCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListActivitiesInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListActivitiesOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListExecutionsInputFilterSensitiveLog, ListExecutionsOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0ListExecutionsCommand, serializeAws_json1_0ListExecutionsCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var ListExecutionsCommand = (function (_super) {
|
|
7
7
|
__extends(ListExecutionsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListExecutionsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListExecutionsInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListExecutionsOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListStateMachinesInputFilterSensitiveLog, ListStateMachinesOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0ListStateMachinesCommand, serializeAws_json1_0ListStateMachinesCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var ListStateMachinesCommand = (function (_super) {
|
|
7
7
|
__extends(ListStateMachinesCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListStateMachinesCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListStateMachinesInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListStateMachinesOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListTagsForResourceInputFilterSensitiveLog, ListTagsForResourceOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0ListTagsForResourceCommand, serializeAws_json1_0ListTagsForResourceCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var ListTagsForResourceCommand = (function (_super) {
|
|
7
7
|
__extends(ListTagsForResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListTagsForResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListTagsForResourceInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListTagsForResourceOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { SendTaskFailureInputFilterSensitiveLog, SendTaskFailureOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0SendTaskFailureCommand, serializeAws_json1_0SendTaskFailureCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var SendTaskFailureCommand = (function (_super) {
|
|
7
7
|
__extends(SendTaskFailureCommand, _super);
|
|
@@ -20,8 +20,8 @@ var SendTaskFailureCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: SendTaskFailureInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: SendTaskFailureOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { SendTaskHeartbeatInputFilterSensitiveLog, SendTaskHeartbeatOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0SendTaskHeartbeatCommand, serializeAws_json1_0SendTaskHeartbeatCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var SendTaskHeartbeatCommand = (function (_super) {
|
|
7
7
|
__extends(SendTaskHeartbeatCommand, _super);
|
|
@@ -20,8 +20,8 @@ var SendTaskHeartbeatCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: SendTaskHeartbeatInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: SendTaskHeartbeatOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { SendTaskSuccessInputFilterSensitiveLog, SendTaskSuccessOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0SendTaskSuccessCommand, serializeAws_json1_0SendTaskSuccessCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var SendTaskSuccessCommand = (function (_super) {
|
|
7
7
|
__extends(SendTaskSuccessCommand, _super);
|
|
@@ -20,8 +20,8 @@ var SendTaskSuccessCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: SendTaskSuccessInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: SendTaskSuccessOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { StartExecutionInputFilterSensitiveLog, StartExecutionOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0StartExecutionCommand, serializeAws_json1_0StartExecutionCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var StartExecutionCommand = (function (_super) {
|
|
7
7
|
__extends(StartExecutionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StartExecutionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StartExecutionInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StartExecutionOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { StartSyncExecutionInputFilterSensitiveLog, StartSyncExecutionOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0StartSyncExecutionCommand, serializeAws_json1_0StartSyncExecutionCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var StartSyncExecutionCommand = (function (_super) {
|
|
7
7
|
__extends(StartSyncExecutionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StartSyncExecutionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StartSyncExecutionInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StartSyncExecutionOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { StopExecutionInputFilterSensitiveLog, StopExecutionOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0StopExecutionCommand, serializeAws_json1_0StopExecutionCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var StopExecutionCommand = (function (_super) {
|
|
7
7
|
__extends(StopExecutionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var StopExecutionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: StopExecutionInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: StopExecutionOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { TagResourceInputFilterSensitiveLog, TagResourceOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0TagResourceCommand, serializeAws_json1_0TagResourceCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var TagResourceCommand = (function (_super) {
|
|
7
7
|
__extends(TagResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var TagResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: TagResourceInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: TagResourceOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UntagResourceInputFilterSensitiveLog, UntagResourceOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0UntagResourceCommand, serializeAws_json1_0UntagResourceCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var UntagResourceCommand = (function (_super) {
|
|
7
7
|
__extends(UntagResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UntagResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UntagResourceInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UntagResourceOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UpdateStateMachineInputFilterSensitiveLog, UpdateStateMachineOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0UpdateStateMachineCommand, serializeAws_json1_0UpdateStateMachineCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var UpdateStateMachineCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateStateMachineCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateStateMachineCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateStateMachineInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateStateMachineOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|