@aws-sdk/client-sfn 3.490.0 → 3.496.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/SFN.js +1 -83
- package/dist-cjs/SFNClient.js +1 -43
- package/dist-cjs/commands/CreateActivityCommand.js +1 -28
- package/dist-cjs/commands/CreateStateMachineAliasCommand.js +1 -29
- package/dist-cjs/commands/CreateStateMachineCommand.js +1 -29
- package/dist-cjs/commands/DeleteActivityCommand.js +1 -28
- package/dist-cjs/commands/DeleteStateMachineAliasCommand.js +1 -28
- package/dist-cjs/commands/DeleteStateMachineCommand.js +1 -28
- package/dist-cjs/commands/DeleteStateMachineVersionCommand.js +1 -28
- package/dist-cjs/commands/DescribeActivityCommand.js +1 -28
- package/dist-cjs/commands/DescribeExecutionCommand.js +1 -29
- package/dist-cjs/commands/DescribeMapRunCommand.js +1 -28
- package/dist-cjs/commands/DescribeStateMachineAliasCommand.js +1 -29
- package/dist-cjs/commands/DescribeStateMachineCommand.js +1 -29
- package/dist-cjs/commands/DescribeStateMachineForExecutionCommand.js +1 -29
- package/dist-cjs/commands/GetActivityTaskCommand.js +1 -29
- package/dist-cjs/commands/GetExecutionHistoryCommand.js +1 -29
- package/dist-cjs/commands/ListActivitiesCommand.js +1 -28
- package/dist-cjs/commands/ListExecutionsCommand.js +1 -28
- package/dist-cjs/commands/ListMapRunsCommand.js +1 -28
- package/dist-cjs/commands/ListStateMachineAliasesCommand.js +1 -28
- package/dist-cjs/commands/ListStateMachineVersionsCommand.js +1 -28
- package/dist-cjs/commands/ListStateMachinesCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/PublishStateMachineVersionCommand.js +1 -29
- package/dist-cjs/commands/RedriveExecutionCommand.js +1 -28
- package/dist-cjs/commands/SendTaskFailureCommand.js +1 -29
- package/dist-cjs/commands/SendTaskHeartbeatCommand.js +1 -28
- package/dist-cjs/commands/SendTaskSuccessCommand.js +1 -29
- package/dist-cjs/commands/StartExecutionCommand.js +1 -29
- package/dist-cjs/commands/StartSyncExecutionCommand.js +1 -29
- package/dist-cjs/commands/StopExecutionCommand.js +1 -29
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/TestStateCommand.js +1 -29
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateMapRunCommand.js +1 -28
- package/dist-cjs/commands/UpdateStateMachineAliasCommand.js +1 -29
- package/dist-cjs/commands/UpdateStateMachineCommand.js +1 -29
- package/dist-cjs/commands/index.js +1 -39
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +4366 -11
- package/dist-cjs/models/SFNServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -843
- package/dist-cjs/pagination/GetExecutionHistoryPaginator.js +1 -7
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListActivitiesPaginator.js +1 -7
- package/dist-cjs/pagination/ListExecutionsPaginator.js +1 -7
- package/dist-cjs/pagination/ListMapRunsPaginator.js +1 -7
- package/dist-cjs/pagination/ListStateMachinesPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -9
- package/dist-cjs/protocols/Aws_json1_0.js +1 -2453
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.SFNServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class SFNServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, SFNServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.SFNServiceException = SFNServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED