@effect-aws/client-sfn 1.9.3 → 1.10.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/SFNService.d.ts +39 -38
- package/dist/cjs/SFNService.d.ts.map +1 -1
- package/dist/cjs/SFNService.js +1 -1
- package/dist/cjs/SFNService.js.map +1 -1
- package/dist/dts/SFNService.d.ts +39 -38
- package/dist/dts/SFNService.d.ts.map +1 -1
- package/dist/esm/SFNService.js +1 -1
- package/dist/esm/SFNService.js.map +1 -1
- package/package.json +2 -2
- package/src/SFNService.ts +50 -20
package/dist/cjs/SFNService.d.ts
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import { type CreateActivityCommandInput, type CreateActivityCommandOutput, type CreateStateMachineAliasCommandInput, type CreateStateMachineAliasCommandOutput, type CreateStateMachineCommandInput, type CreateStateMachineCommandOutput, type DeleteActivityCommandInput, type DeleteActivityCommandOutput, type DeleteStateMachineAliasCommandInput, type DeleteStateMachineAliasCommandOutput, type DeleteStateMachineCommandInput, type DeleteStateMachineCommandOutput, type DeleteStateMachineVersionCommandInput, type DeleteStateMachineVersionCommandOutput, type DescribeActivityCommandInput, type DescribeActivityCommandOutput, type DescribeExecutionCommandInput, type DescribeExecutionCommandOutput, type DescribeMapRunCommandInput, type DescribeMapRunCommandOutput, type DescribeStateMachineAliasCommandInput, type DescribeStateMachineAliasCommandOutput, type DescribeStateMachineCommandInput, type DescribeStateMachineCommandOutput, type DescribeStateMachineForExecutionCommandInput, type DescribeStateMachineForExecutionCommandOutput, type GetActivityTaskCommandInput, type GetActivityTaskCommandOutput, type GetExecutionHistoryCommandInput, type GetExecutionHistoryCommandOutput, type ListActivitiesCommandInput, type ListActivitiesCommandOutput, type ListExecutionsCommandInput, type ListExecutionsCommandOutput, type ListMapRunsCommandInput, type ListMapRunsCommandOutput, type ListStateMachineAliasesCommandInput, type ListStateMachineAliasesCommandOutput, type ListStateMachinesCommandInput, type ListStateMachinesCommandOutput, type ListStateMachineVersionsCommandInput, type ListStateMachineVersionsCommandOutput, type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput, type PublishStateMachineVersionCommandInput, type PublishStateMachineVersionCommandOutput, type RedriveExecutionCommandInput, type RedriveExecutionCommandOutput, type SendTaskFailureCommandInput, type SendTaskFailureCommandOutput, type SendTaskHeartbeatCommandInput, type SendTaskHeartbeatCommandOutput, type SendTaskSuccessCommandInput, type SendTaskSuccessCommandOutput, type SFNClient, type SFNClientConfig, type StartExecutionCommandInput, type StartExecutionCommandOutput, type StartSyncExecutionCommandInput, type StartSyncExecutionCommandOutput, type StopExecutionCommandInput, type StopExecutionCommandOutput, type TagResourceCommandInput, type TagResourceCommandOutput, type TestStateCommandInput, type TestStateCommandOutput, type UntagResourceCommandInput, type UntagResourceCommandOutput, type UpdateMapRunCommandInput, type UpdateMapRunCommandOutput, type UpdateStateMachineAliasCommandInput, type UpdateStateMachineAliasCommandOutput, type UpdateStateMachineCommandInput, type UpdateStateMachineCommandOutput, type ValidateStateMachineDefinitionCommandInput, type ValidateStateMachineDefinitionCommandOutput } from "@aws-sdk/client-sfn";
|
|
5
5
|
import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
|
|
6
|
+
import type { Cause } from "effect";
|
|
6
7
|
import { Effect, Layer } from "effect";
|
|
7
8
|
import type { ActivityAlreadyExistsError, ActivityDoesNotExistError, ActivityLimitExceededError, ActivityWorkerLimitExceededError, ConflictError, ExecutionAlreadyExistsError, ExecutionDoesNotExistError, ExecutionLimitExceededError, ExecutionNotRedrivableError, InvalidArnError, InvalidDefinitionError, InvalidEncryptionConfigurationError, InvalidExecutionInputError, InvalidLoggingConfigurationError, InvalidNameError, InvalidOutputError, InvalidTokenError, InvalidTracingConfigurationError, KmsAccessDeniedError, KmsInvalidStateError, KmsThrottlingError, MissingRequiredParameterError, ResourceNotFoundError, ServiceQuotaExceededError, StateMachineAlreadyExistsError, StateMachineDeletingError, StateMachineDoesNotExistError, StateMachineLimitExceededError, StateMachineTypeNotSupportedError, TaskDoesNotExistError, TaskTimedOutError, TooManyTagsError, ValidationError } from "./Errors.js";
|
|
8
9
|
import * as Instance from "./SFNClientInstance.js";
|
|
@@ -11,151 +12,151 @@ interface SFNService$ {
|
|
|
11
12
|
/**
|
|
12
13
|
* @see {@link CreateActivityCommand}
|
|
13
14
|
*/
|
|
14
|
-
createActivity(args: CreateActivityCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateActivityCommandOutput, SdkError | ActivityAlreadyExistsError | ActivityLimitExceededError | InvalidEncryptionConfigurationError | InvalidNameError | KmsAccessDeniedError | KmsThrottlingError | TooManyTagsError>;
|
|
15
|
+
createActivity(args: CreateActivityCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateActivityCommandOutput, Cause.TimeoutException | SdkError | ActivityAlreadyExistsError | ActivityLimitExceededError | InvalidEncryptionConfigurationError | InvalidNameError | KmsAccessDeniedError | KmsThrottlingError | TooManyTagsError>;
|
|
15
16
|
/**
|
|
16
17
|
* @see {@link CreateStateMachineCommand}
|
|
17
18
|
*/
|
|
18
|
-
createStateMachine(args: CreateStateMachineCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateStateMachineCommandOutput, SdkError | ConflictError | InvalidArnError | InvalidDefinitionError | InvalidEncryptionConfigurationError | InvalidLoggingConfigurationError | InvalidNameError | InvalidTracingConfigurationError | KmsAccessDeniedError | KmsThrottlingError | StateMachineAlreadyExistsError | StateMachineDeletingError | StateMachineLimitExceededError | StateMachineTypeNotSupportedError | TooManyTagsError | ValidationError>;
|
|
19
|
+
createStateMachine(args: CreateStateMachineCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateStateMachineCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InvalidArnError | InvalidDefinitionError | InvalidEncryptionConfigurationError | InvalidLoggingConfigurationError | InvalidNameError | InvalidTracingConfigurationError | KmsAccessDeniedError | KmsThrottlingError | StateMachineAlreadyExistsError | StateMachineDeletingError | StateMachineLimitExceededError | StateMachineTypeNotSupportedError | TooManyTagsError | ValidationError>;
|
|
19
20
|
/**
|
|
20
21
|
* @see {@link CreateStateMachineAliasCommand}
|
|
21
22
|
*/
|
|
22
|
-
createStateMachineAlias(args: CreateStateMachineAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateStateMachineAliasCommandOutput, SdkError | ConflictError | InvalidArnError | InvalidNameError | ResourceNotFoundError | ServiceQuotaExceededError | StateMachineDeletingError | ValidationError>;
|
|
23
|
+
createStateMachineAlias(args: CreateStateMachineAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateStateMachineAliasCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InvalidArnError | InvalidNameError | ResourceNotFoundError | ServiceQuotaExceededError | StateMachineDeletingError | ValidationError>;
|
|
23
24
|
/**
|
|
24
25
|
* @see {@link DeleteActivityCommand}
|
|
25
26
|
*/
|
|
26
|
-
deleteActivity(args: DeleteActivityCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteActivityCommandOutput, SdkError | InvalidArnError>;
|
|
27
|
+
deleteActivity(args: DeleteActivityCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteActivityCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError>;
|
|
27
28
|
/**
|
|
28
29
|
* @see {@link DeleteStateMachineCommand}
|
|
29
30
|
*/
|
|
30
|
-
deleteStateMachine(args: DeleteStateMachineCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteStateMachineCommandOutput, SdkError | InvalidArnError | ValidationError>;
|
|
31
|
+
deleteStateMachine(args: DeleteStateMachineCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteStateMachineCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | ValidationError>;
|
|
31
32
|
/**
|
|
32
33
|
* @see {@link DeleteStateMachineAliasCommand}
|
|
33
34
|
*/
|
|
34
|
-
deleteStateMachineAlias(args: DeleteStateMachineAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteStateMachineAliasCommandOutput, SdkError | ConflictError | InvalidArnError | ResourceNotFoundError | ValidationError>;
|
|
35
|
+
deleteStateMachineAlias(args: DeleteStateMachineAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteStateMachineAliasCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InvalidArnError | ResourceNotFoundError | ValidationError>;
|
|
35
36
|
/**
|
|
36
37
|
* @see {@link DeleteStateMachineVersionCommand}
|
|
37
38
|
*/
|
|
38
|
-
deleteStateMachineVersion(args: DeleteStateMachineVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteStateMachineVersionCommandOutput, SdkError | ConflictError | InvalidArnError | ValidationError>;
|
|
39
|
+
deleteStateMachineVersion(args: DeleteStateMachineVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteStateMachineVersionCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InvalidArnError | ValidationError>;
|
|
39
40
|
/**
|
|
40
41
|
* @see {@link DescribeActivityCommand}
|
|
41
42
|
*/
|
|
42
|
-
describeActivity(args: DescribeActivityCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeActivityCommandOutput, SdkError | ActivityDoesNotExistError | InvalidArnError>;
|
|
43
|
+
describeActivity(args: DescribeActivityCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeActivityCommandOutput, Cause.TimeoutException | SdkError | ActivityDoesNotExistError | InvalidArnError>;
|
|
43
44
|
/**
|
|
44
45
|
* @see {@link DescribeExecutionCommand}
|
|
45
46
|
*/
|
|
46
|
-
describeExecution(args: DescribeExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeExecutionCommandOutput, SdkError | ExecutionDoesNotExistError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError>;
|
|
47
|
+
describeExecution(args: DescribeExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeExecutionCommandOutput, Cause.TimeoutException | SdkError | ExecutionDoesNotExistError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError>;
|
|
47
48
|
/**
|
|
48
49
|
* @see {@link DescribeMapRunCommand}
|
|
49
50
|
*/
|
|
50
|
-
describeMapRun(args: DescribeMapRunCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeMapRunCommandOutput, SdkError | InvalidArnError | ResourceNotFoundError>;
|
|
51
|
+
describeMapRun(args: DescribeMapRunCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeMapRunCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | ResourceNotFoundError>;
|
|
51
52
|
/**
|
|
52
53
|
* @see {@link DescribeStateMachineCommand}
|
|
53
54
|
*/
|
|
54
|
-
describeStateMachine(args: DescribeStateMachineCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStateMachineCommandOutput, SdkError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | StateMachineDoesNotExistError>;
|
|
55
|
+
describeStateMachine(args: DescribeStateMachineCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStateMachineCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | StateMachineDoesNotExistError>;
|
|
55
56
|
/**
|
|
56
57
|
* @see {@link DescribeStateMachineAliasCommand}
|
|
57
58
|
*/
|
|
58
|
-
describeStateMachineAlias(args: DescribeStateMachineAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStateMachineAliasCommandOutput, SdkError | InvalidArnError | ResourceNotFoundError | ValidationError>;
|
|
59
|
+
describeStateMachineAlias(args: DescribeStateMachineAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStateMachineAliasCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | ResourceNotFoundError | ValidationError>;
|
|
59
60
|
/**
|
|
60
61
|
* @see {@link DescribeStateMachineForExecutionCommand}
|
|
61
62
|
*/
|
|
62
|
-
describeStateMachineForExecution(args: DescribeStateMachineForExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStateMachineForExecutionCommandOutput, SdkError | ExecutionDoesNotExistError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError>;
|
|
63
|
+
describeStateMachineForExecution(args: DescribeStateMachineForExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStateMachineForExecutionCommandOutput, Cause.TimeoutException | SdkError | ExecutionDoesNotExistError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError>;
|
|
63
64
|
/**
|
|
64
65
|
* @see {@link GetActivityTaskCommand}
|
|
65
66
|
*/
|
|
66
|
-
getActivityTask(args: GetActivityTaskCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetActivityTaskCommandOutput, SdkError | ActivityDoesNotExistError | ActivityWorkerLimitExceededError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError>;
|
|
67
|
+
getActivityTask(args: GetActivityTaskCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetActivityTaskCommandOutput, Cause.TimeoutException | SdkError | ActivityDoesNotExistError | ActivityWorkerLimitExceededError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError>;
|
|
67
68
|
/**
|
|
68
69
|
* @see {@link GetExecutionHistoryCommand}
|
|
69
70
|
*/
|
|
70
|
-
getExecutionHistory(args: GetExecutionHistoryCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetExecutionHistoryCommandOutput, SdkError | ExecutionDoesNotExistError | InvalidArnError | InvalidTokenError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError>;
|
|
71
|
+
getExecutionHistory(args: GetExecutionHistoryCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetExecutionHistoryCommandOutput, Cause.TimeoutException | SdkError | ExecutionDoesNotExistError | InvalidArnError | InvalidTokenError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError>;
|
|
71
72
|
/**
|
|
72
73
|
* @see {@link ListActivitiesCommand}
|
|
73
74
|
*/
|
|
74
|
-
listActivities(args: ListActivitiesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListActivitiesCommandOutput, SdkError | InvalidTokenError>;
|
|
75
|
+
listActivities(args: ListActivitiesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListActivitiesCommandOutput, Cause.TimeoutException | SdkError | InvalidTokenError>;
|
|
75
76
|
/**
|
|
76
77
|
* @see {@link ListExecutionsCommand}
|
|
77
78
|
*/
|
|
78
|
-
listExecutions(args: ListExecutionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListExecutionsCommandOutput, SdkError | InvalidArnError | InvalidTokenError | ResourceNotFoundError | StateMachineDoesNotExistError | StateMachineTypeNotSupportedError | ValidationError>;
|
|
79
|
+
listExecutions(args: ListExecutionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListExecutionsCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | InvalidTokenError | ResourceNotFoundError | StateMachineDoesNotExistError | StateMachineTypeNotSupportedError | ValidationError>;
|
|
79
80
|
/**
|
|
80
81
|
* @see {@link ListMapRunsCommand}
|
|
81
82
|
*/
|
|
82
|
-
listMapRuns(args: ListMapRunsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListMapRunsCommandOutput, SdkError | ExecutionDoesNotExistError | InvalidArnError | InvalidTokenError>;
|
|
83
|
+
listMapRuns(args: ListMapRunsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListMapRunsCommandOutput, Cause.TimeoutException | SdkError | ExecutionDoesNotExistError | InvalidArnError | InvalidTokenError>;
|
|
83
84
|
/**
|
|
84
85
|
* @see {@link ListStateMachineAliasesCommand}
|
|
85
86
|
*/
|
|
86
|
-
listStateMachineAliases(args: ListStateMachineAliasesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStateMachineAliasesCommandOutput, SdkError | InvalidArnError | InvalidTokenError | ResourceNotFoundError | StateMachineDeletingError | StateMachineDoesNotExistError>;
|
|
87
|
+
listStateMachineAliases(args: ListStateMachineAliasesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStateMachineAliasesCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | InvalidTokenError | ResourceNotFoundError | StateMachineDeletingError | StateMachineDoesNotExistError>;
|
|
87
88
|
/**
|
|
88
89
|
* @see {@link ListStateMachineVersionsCommand}
|
|
89
90
|
*/
|
|
90
|
-
listStateMachineVersions(args: ListStateMachineVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStateMachineVersionsCommandOutput, SdkError | InvalidArnError | InvalidTokenError | ValidationError>;
|
|
91
|
+
listStateMachineVersions(args: ListStateMachineVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStateMachineVersionsCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | InvalidTokenError | ValidationError>;
|
|
91
92
|
/**
|
|
92
93
|
* @see {@link ListStateMachinesCommand}
|
|
93
94
|
*/
|
|
94
|
-
listStateMachines(args: ListStateMachinesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStateMachinesCommandOutput, SdkError | InvalidTokenError>;
|
|
95
|
+
listStateMachines(args: ListStateMachinesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStateMachinesCommandOutput, Cause.TimeoutException | SdkError | InvalidTokenError>;
|
|
95
96
|
/**
|
|
96
97
|
* @see {@link ListTagsForResourceCommand}
|
|
97
98
|
*/
|
|
98
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, SdkError | InvalidArnError | ResourceNotFoundError>;
|
|
99
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | ResourceNotFoundError>;
|
|
99
100
|
/**
|
|
100
101
|
* @see {@link PublishStateMachineVersionCommand}
|
|
101
102
|
*/
|
|
102
|
-
publishStateMachineVersion(args: PublishStateMachineVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<PublishStateMachineVersionCommandOutput, SdkError | ConflictError | InvalidArnError | ServiceQuotaExceededError | StateMachineDeletingError | StateMachineDoesNotExistError | ValidationError>;
|
|
103
|
+
publishStateMachineVersion(args: PublishStateMachineVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<PublishStateMachineVersionCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InvalidArnError | ServiceQuotaExceededError | StateMachineDeletingError | StateMachineDoesNotExistError | ValidationError>;
|
|
103
104
|
/**
|
|
104
105
|
* @see {@link RedriveExecutionCommand}
|
|
105
106
|
*/
|
|
106
|
-
redriveExecution(args: RedriveExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<RedriveExecutionCommandOutput, SdkError | ExecutionDoesNotExistError | ExecutionLimitExceededError | ExecutionNotRedrivableError | InvalidArnError | ValidationError>;
|
|
107
|
+
redriveExecution(args: RedriveExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<RedriveExecutionCommandOutput, Cause.TimeoutException | SdkError | ExecutionDoesNotExistError | ExecutionLimitExceededError | ExecutionNotRedrivableError | InvalidArnError | ValidationError>;
|
|
107
108
|
/**
|
|
108
109
|
* @see {@link SendTaskFailureCommand}
|
|
109
110
|
*/
|
|
110
|
-
sendTaskFailure(args: SendTaskFailureCommandInput, options?: HttpHandlerOptions): Effect.Effect<SendTaskFailureCommandOutput, SdkError | InvalidTokenError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | TaskDoesNotExistError | TaskTimedOutError>;
|
|
111
|
+
sendTaskFailure(args: SendTaskFailureCommandInput, options?: HttpHandlerOptions): Effect.Effect<SendTaskFailureCommandOutput, Cause.TimeoutException | SdkError | InvalidTokenError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | TaskDoesNotExistError | TaskTimedOutError>;
|
|
111
112
|
/**
|
|
112
113
|
* @see {@link SendTaskHeartbeatCommand}
|
|
113
114
|
*/
|
|
114
|
-
sendTaskHeartbeat(args: SendTaskHeartbeatCommandInput, options?: HttpHandlerOptions): Effect.Effect<SendTaskHeartbeatCommandOutput, SdkError | InvalidTokenError | TaskDoesNotExistError | TaskTimedOutError>;
|
|
115
|
+
sendTaskHeartbeat(args: SendTaskHeartbeatCommandInput, options?: HttpHandlerOptions): Effect.Effect<SendTaskHeartbeatCommandOutput, Cause.TimeoutException | SdkError | InvalidTokenError | TaskDoesNotExistError | TaskTimedOutError>;
|
|
115
116
|
/**
|
|
116
117
|
* @see {@link SendTaskSuccessCommand}
|
|
117
118
|
*/
|
|
118
|
-
sendTaskSuccess(args: SendTaskSuccessCommandInput, options?: HttpHandlerOptions): Effect.Effect<SendTaskSuccessCommandOutput, SdkError | InvalidOutputError | InvalidTokenError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | TaskDoesNotExistError | TaskTimedOutError>;
|
|
119
|
+
sendTaskSuccess(args: SendTaskSuccessCommandInput, options?: HttpHandlerOptions): Effect.Effect<SendTaskSuccessCommandOutput, Cause.TimeoutException | SdkError | InvalidOutputError | InvalidTokenError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | TaskDoesNotExistError | TaskTimedOutError>;
|
|
119
120
|
/**
|
|
120
121
|
* @see {@link StartExecutionCommand}
|
|
121
122
|
*/
|
|
122
|
-
startExecution(args: StartExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<StartExecutionCommandOutput, SdkError | ExecutionAlreadyExistsError | ExecutionLimitExceededError | InvalidArnError | InvalidExecutionInputError | InvalidNameError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | StateMachineDeletingError | StateMachineDoesNotExistError | ValidationError>;
|
|
123
|
+
startExecution(args: StartExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<StartExecutionCommandOutput, Cause.TimeoutException | SdkError | ExecutionAlreadyExistsError | ExecutionLimitExceededError | InvalidArnError | InvalidExecutionInputError | InvalidNameError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | StateMachineDeletingError | StateMachineDoesNotExistError | ValidationError>;
|
|
123
124
|
/**
|
|
124
125
|
* @see {@link StartSyncExecutionCommand}
|
|
125
126
|
*/
|
|
126
|
-
startSyncExecution(args: StartSyncExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<StartSyncExecutionCommandOutput, SdkError | InvalidArnError | InvalidExecutionInputError | InvalidNameError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | StateMachineDeletingError | StateMachineDoesNotExistError | StateMachineTypeNotSupportedError>;
|
|
127
|
+
startSyncExecution(args: StartSyncExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<StartSyncExecutionCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | InvalidExecutionInputError | InvalidNameError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | StateMachineDeletingError | StateMachineDoesNotExistError | StateMachineTypeNotSupportedError>;
|
|
127
128
|
/**
|
|
128
129
|
* @see {@link StopExecutionCommand}
|
|
129
130
|
*/
|
|
130
|
-
stopExecution(args: StopExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<StopExecutionCommandOutput, SdkError | ExecutionDoesNotExistError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | ValidationError>;
|
|
131
|
+
stopExecution(args: StopExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<StopExecutionCommandOutput, Cause.TimeoutException | SdkError | ExecutionDoesNotExistError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | ValidationError>;
|
|
131
132
|
/**
|
|
132
133
|
* @see {@link TagResourceCommand}
|
|
133
134
|
*/
|
|
134
|
-
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, SdkError | InvalidArnError | ResourceNotFoundError | TooManyTagsError>;
|
|
135
|
+
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | ResourceNotFoundError | TooManyTagsError>;
|
|
135
136
|
/**
|
|
136
137
|
* @see {@link TestStateCommand}
|
|
137
138
|
*/
|
|
138
|
-
testState(args: TestStateCommandInput, options?: HttpHandlerOptions): Effect.Effect<TestStateCommandOutput, SdkError | InvalidArnError | InvalidDefinitionError | InvalidExecutionInputError | ValidationError>;
|
|
139
|
+
testState(args: TestStateCommandInput, options?: HttpHandlerOptions): Effect.Effect<TestStateCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | InvalidDefinitionError | InvalidExecutionInputError | ValidationError>;
|
|
139
140
|
/**
|
|
140
141
|
* @see {@link UntagResourceCommand}
|
|
141
142
|
*/
|
|
142
|
-
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, SdkError | InvalidArnError | ResourceNotFoundError>;
|
|
143
|
+
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | ResourceNotFoundError>;
|
|
143
144
|
/**
|
|
144
145
|
* @see {@link UpdateMapRunCommand}
|
|
145
146
|
*/
|
|
146
|
-
updateMapRun(args: UpdateMapRunCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateMapRunCommandOutput, SdkError | InvalidArnError | ResourceNotFoundError | ValidationError>;
|
|
147
|
+
updateMapRun(args: UpdateMapRunCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateMapRunCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | ResourceNotFoundError | ValidationError>;
|
|
147
148
|
/**
|
|
148
149
|
* @see {@link UpdateStateMachineCommand}
|
|
149
150
|
*/
|
|
150
|
-
updateStateMachine(args: UpdateStateMachineCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateStateMachineCommandOutput, SdkError | ConflictError | InvalidArnError | InvalidDefinitionError | InvalidEncryptionConfigurationError | InvalidLoggingConfigurationError | InvalidTracingConfigurationError | KmsAccessDeniedError | KmsThrottlingError | MissingRequiredParameterError | ServiceQuotaExceededError | StateMachineDeletingError | StateMachineDoesNotExistError | ValidationError>;
|
|
151
|
+
updateStateMachine(args: UpdateStateMachineCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateStateMachineCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InvalidArnError | InvalidDefinitionError | InvalidEncryptionConfigurationError | InvalidLoggingConfigurationError | InvalidTracingConfigurationError | KmsAccessDeniedError | KmsThrottlingError | MissingRequiredParameterError | ServiceQuotaExceededError | StateMachineDeletingError | StateMachineDoesNotExistError | ValidationError>;
|
|
151
152
|
/**
|
|
152
153
|
* @see {@link UpdateStateMachineAliasCommand}
|
|
153
154
|
*/
|
|
154
|
-
updateStateMachineAlias(args: UpdateStateMachineAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateStateMachineAliasCommandOutput, SdkError | ConflictError | InvalidArnError | ResourceNotFoundError | StateMachineDeletingError | ValidationError>;
|
|
155
|
+
updateStateMachineAlias(args: UpdateStateMachineAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateStateMachineAliasCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InvalidArnError | ResourceNotFoundError | StateMachineDeletingError | ValidationError>;
|
|
155
156
|
/**
|
|
156
157
|
* @see {@link ValidateStateMachineDefinitionCommand}
|
|
157
158
|
*/
|
|
158
|
-
validateStateMachineDefinition(args: ValidateStateMachineDefinitionCommandInput, options?: HttpHandlerOptions): Effect.Effect<ValidateStateMachineDefinitionCommandOutput, SdkError | ValidationError>;
|
|
159
|
+
validateStateMachineDefinition(args: ValidateStateMachineDefinitionCommandInput, options?: HttpHandlerOptions): Effect.Effect<ValidateStateMachineDefinitionCommandOutput, Cause.TimeoutException | SdkError | ValidationError>;
|
|
159
160
|
}
|
|
160
161
|
/**
|
|
161
162
|
* @since 1.0.0
|
|
@@ -163,7 +164,7 @@ interface SFNService$ {
|
|
|
163
164
|
*/
|
|
164
165
|
export declare const makeSFNService: Effect.Effect<SFNService$, never, Instance.SFNClientInstance>;
|
|
165
166
|
declare const SFNService_base: import("effect/Context").TagClass<SFNService, "@effect-aws/client-sfn/SFNService", SFNService$> & Effect.Tag.Proxy<SFNService, SFNService$> & {
|
|
166
|
-
use: <X>(body: (_: SFNService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, SFNService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1,
|
|
167
|
+
use: <X>(body: (_: SFNService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, SFNService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1, Cause.UnknownException, SFNService> : Effect.Effect<X, never, SFNService>;
|
|
167
168
|
};
|
|
168
169
|
/**
|
|
169
170
|
* @since 1.0.0
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SFNService.d.ts","sourceRoot":"","sources":["../../src/SFNService.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"SFNService.d.ts","sourceRoot":"","sources":["../../src/SFNService.ts"],"names":[],"mappings":"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"}
|
package/dist/cjs/SFNService.js
CHANGED
|
@@ -78,7 +78,7 @@ const commands = {
|
|
|
78
78
|
*/
|
|
79
79
|
exports.makeSFNService = effect_1.Effect.gen(function* () {
|
|
80
80
|
const client = yield* Instance.SFNClientInstance;
|
|
81
|
-
return commons_1.Service.fromClientAndCommands(client, commands, {
|
|
81
|
+
return yield* commons_1.Service.fromClientAndCommands(client, commands, {
|
|
82
82
|
errorTags: Errors_js_1.AllServiceErrors,
|
|
83
83
|
resolveClientConfig: SFNServiceConfig.toSFNClientConfig,
|
|
84
84
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SFNService.js","sourceRoot":"","sources":["../../src/SFNService.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,oDAkH6B;AAE7B,iDAA8C;
|
|
1
|
+
{"version":3,"file":"SFNService.js","sourceRoot":"","sources":["../../src/SFNService.ts"],"names":[],"mappings":"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"}
|
package/dist/dts/SFNService.d.ts
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
import { type CreateActivityCommandInput, type CreateActivityCommandOutput, type CreateStateMachineAliasCommandInput, type CreateStateMachineAliasCommandOutput, type CreateStateMachineCommandInput, type CreateStateMachineCommandOutput, type DeleteActivityCommandInput, type DeleteActivityCommandOutput, type DeleteStateMachineAliasCommandInput, type DeleteStateMachineAliasCommandOutput, type DeleteStateMachineCommandInput, type DeleteStateMachineCommandOutput, type DeleteStateMachineVersionCommandInput, type DeleteStateMachineVersionCommandOutput, type DescribeActivityCommandInput, type DescribeActivityCommandOutput, type DescribeExecutionCommandInput, type DescribeExecutionCommandOutput, type DescribeMapRunCommandInput, type DescribeMapRunCommandOutput, type DescribeStateMachineAliasCommandInput, type DescribeStateMachineAliasCommandOutput, type DescribeStateMachineCommandInput, type DescribeStateMachineCommandOutput, type DescribeStateMachineForExecutionCommandInput, type DescribeStateMachineForExecutionCommandOutput, type GetActivityTaskCommandInput, type GetActivityTaskCommandOutput, type GetExecutionHistoryCommandInput, type GetExecutionHistoryCommandOutput, type ListActivitiesCommandInput, type ListActivitiesCommandOutput, type ListExecutionsCommandInput, type ListExecutionsCommandOutput, type ListMapRunsCommandInput, type ListMapRunsCommandOutput, type ListStateMachineAliasesCommandInput, type ListStateMachineAliasesCommandOutput, type ListStateMachinesCommandInput, type ListStateMachinesCommandOutput, type ListStateMachineVersionsCommandInput, type ListStateMachineVersionsCommandOutput, type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput, type PublishStateMachineVersionCommandInput, type PublishStateMachineVersionCommandOutput, type RedriveExecutionCommandInput, type RedriveExecutionCommandOutput, type SendTaskFailureCommandInput, type SendTaskFailureCommandOutput, type SendTaskHeartbeatCommandInput, type SendTaskHeartbeatCommandOutput, type SendTaskSuccessCommandInput, type SendTaskSuccessCommandOutput, type SFNClient, type SFNClientConfig, type StartExecutionCommandInput, type StartExecutionCommandOutput, type StartSyncExecutionCommandInput, type StartSyncExecutionCommandOutput, type StopExecutionCommandInput, type StopExecutionCommandOutput, type TagResourceCommandInput, type TagResourceCommandOutput, type TestStateCommandInput, type TestStateCommandOutput, type UntagResourceCommandInput, type UntagResourceCommandOutput, type UpdateMapRunCommandInput, type UpdateMapRunCommandOutput, type UpdateStateMachineAliasCommandInput, type UpdateStateMachineAliasCommandOutput, type UpdateStateMachineCommandInput, type UpdateStateMachineCommandOutput, type ValidateStateMachineDefinitionCommandInput, type ValidateStateMachineDefinitionCommandOutput } from "@aws-sdk/client-sfn";
|
|
5
5
|
import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
|
|
6
|
+
import type { Cause } from "effect";
|
|
6
7
|
import { Effect, Layer } from "effect";
|
|
7
8
|
import type { ActivityAlreadyExistsError, ActivityDoesNotExistError, ActivityLimitExceededError, ActivityWorkerLimitExceededError, ConflictError, ExecutionAlreadyExistsError, ExecutionDoesNotExistError, ExecutionLimitExceededError, ExecutionNotRedrivableError, InvalidArnError, InvalidDefinitionError, InvalidEncryptionConfigurationError, InvalidExecutionInputError, InvalidLoggingConfigurationError, InvalidNameError, InvalidOutputError, InvalidTokenError, InvalidTracingConfigurationError, KmsAccessDeniedError, KmsInvalidStateError, KmsThrottlingError, MissingRequiredParameterError, ResourceNotFoundError, ServiceQuotaExceededError, StateMachineAlreadyExistsError, StateMachineDeletingError, StateMachineDoesNotExistError, StateMachineLimitExceededError, StateMachineTypeNotSupportedError, TaskDoesNotExistError, TaskTimedOutError, TooManyTagsError, ValidationError } from "./Errors.js";
|
|
8
9
|
import * as Instance from "./SFNClientInstance.js";
|
|
@@ -11,151 +12,151 @@ interface SFNService$ {
|
|
|
11
12
|
/**
|
|
12
13
|
* @see {@link CreateActivityCommand}
|
|
13
14
|
*/
|
|
14
|
-
createActivity(args: CreateActivityCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateActivityCommandOutput, SdkError | ActivityAlreadyExistsError | ActivityLimitExceededError | InvalidEncryptionConfigurationError | InvalidNameError | KmsAccessDeniedError | KmsThrottlingError | TooManyTagsError>;
|
|
15
|
+
createActivity(args: CreateActivityCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateActivityCommandOutput, Cause.TimeoutException | SdkError | ActivityAlreadyExistsError | ActivityLimitExceededError | InvalidEncryptionConfigurationError | InvalidNameError | KmsAccessDeniedError | KmsThrottlingError | TooManyTagsError>;
|
|
15
16
|
/**
|
|
16
17
|
* @see {@link CreateStateMachineCommand}
|
|
17
18
|
*/
|
|
18
|
-
createStateMachine(args: CreateStateMachineCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateStateMachineCommandOutput, SdkError | ConflictError | InvalidArnError | InvalidDefinitionError | InvalidEncryptionConfigurationError | InvalidLoggingConfigurationError | InvalidNameError | InvalidTracingConfigurationError | KmsAccessDeniedError | KmsThrottlingError | StateMachineAlreadyExistsError | StateMachineDeletingError | StateMachineLimitExceededError | StateMachineTypeNotSupportedError | TooManyTagsError | ValidationError>;
|
|
19
|
+
createStateMachine(args: CreateStateMachineCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateStateMachineCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InvalidArnError | InvalidDefinitionError | InvalidEncryptionConfigurationError | InvalidLoggingConfigurationError | InvalidNameError | InvalidTracingConfigurationError | KmsAccessDeniedError | KmsThrottlingError | StateMachineAlreadyExistsError | StateMachineDeletingError | StateMachineLimitExceededError | StateMachineTypeNotSupportedError | TooManyTagsError | ValidationError>;
|
|
19
20
|
/**
|
|
20
21
|
* @see {@link CreateStateMachineAliasCommand}
|
|
21
22
|
*/
|
|
22
|
-
createStateMachineAlias(args: CreateStateMachineAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateStateMachineAliasCommandOutput, SdkError | ConflictError | InvalidArnError | InvalidNameError | ResourceNotFoundError | ServiceQuotaExceededError | StateMachineDeletingError | ValidationError>;
|
|
23
|
+
createStateMachineAlias(args: CreateStateMachineAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<CreateStateMachineAliasCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InvalidArnError | InvalidNameError | ResourceNotFoundError | ServiceQuotaExceededError | StateMachineDeletingError | ValidationError>;
|
|
23
24
|
/**
|
|
24
25
|
* @see {@link DeleteActivityCommand}
|
|
25
26
|
*/
|
|
26
|
-
deleteActivity(args: DeleteActivityCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteActivityCommandOutput, SdkError | InvalidArnError>;
|
|
27
|
+
deleteActivity(args: DeleteActivityCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteActivityCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError>;
|
|
27
28
|
/**
|
|
28
29
|
* @see {@link DeleteStateMachineCommand}
|
|
29
30
|
*/
|
|
30
|
-
deleteStateMachine(args: DeleteStateMachineCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteStateMachineCommandOutput, SdkError | InvalidArnError | ValidationError>;
|
|
31
|
+
deleteStateMachine(args: DeleteStateMachineCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteStateMachineCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | ValidationError>;
|
|
31
32
|
/**
|
|
32
33
|
* @see {@link DeleteStateMachineAliasCommand}
|
|
33
34
|
*/
|
|
34
|
-
deleteStateMachineAlias(args: DeleteStateMachineAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteStateMachineAliasCommandOutput, SdkError | ConflictError | InvalidArnError | ResourceNotFoundError | ValidationError>;
|
|
35
|
+
deleteStateMachineAlias(args: DeleteStateMachineAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteStateMachineAliasCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InvalidArnError | ResourceNotFoundError | ValidationError>;
|
|
35
36
|
/**
|
|
36
37
|
* @see {@link DeleteStateMachineVersionCommand}
|
|
37
38
|
*/
|
|
38
|
-
deleteStateMachineVersion(args: DeleteStateMachineVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteStateMachineVersionCommandOutput, SdkError | ConflictError | InvalidArnError | ValidationError>;
|
|
39
|
+
deleteStateMachineVersion(args: DeleteStateMachineVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DeleteStateMachineVersionCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InvalidArnError | ValidationError>;
|
|
39
40
|
/**
|
|
40
41
|
* @see {@link DescribeActivityCommand}
|
|
41
42
|
*/
|
|
42
|
-
describeActivity(args: DescribeActivityCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeActivityCommandOutput, SdkError | ActivityDoesNotExistError | InvalidArnError>;
|
|
43
|
+
describeActivity(args: DescribeActivityCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeActivityCommandOutput, Cause.TimeoutException | SdkError | ActivityDoesNotExistError | InvalidArnError>;
|
|
43
44
|
/**
|
|
44
45
|
* @see {@link DescribeExecutionCommand}
|
|
45
46
|
*/
|
|
46
|
-
describeExecution(args: DescribeExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeExecutionCommandOutput, SdkError | ExecutionDoesNotExistError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError>;
|
|
47
|
+
describeExecution(args: DescribeExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeExecutionCommandOutput, Cause.TimeoutException | SdkError | ExecutionDoesNotExistError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError>;
|
|
47
48
|
/**
|
|
48
49
|
* @see {@link DescribeMapRunCommand}
|
|
49
50
|
*/
|
|
50
|
-
describeMapRun(args: DescribeMapRunCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeMapRunCommandOutput, SdkError | InvalidArnError | ResourceNotFoundError>;
|
|
51
|
+
describeMapRun(args: DescribeMapRunCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeMapRunCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | ResourceNotFoundError>;
|
|
51
52
|
/**
|
|
52
53
|
* @see {@link DescribeStateMachineCommand}
|
|
53
54
|
*/
|
|
54
|
-
describeStateMachine(args: DescribeStateMachineCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStateMachineCommandOutput, SdkError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | StateMachineDoesNotExistError>;
|
|
55
|
+
describeStateMachine(args: DescribeStateMachineCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStateMachineCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | StateMachineDoesNotExistError>;
|
|
55
56
|
/**
|
|
56
57
|
* @see {@link DescribeStateMachineAliasCommand}
|
|
57
58
|
*/
|
|
58
|
-
describeStateMachineAlias(args: DescribeStateMachineAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStateMachineAliasCommandOutput, SdkError | InvalidArnError | ResourceNotFoundError | ValidationError>;
|
|
59
|
+
describeStateMachineAlias(args: DescribeStateMachineAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStateMachineAliasCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | ResourceNotFoundError | ValidationError>;
|
|
59
60
|
/**
|
|
60
61
|
* @see {@link DescribeStateMachineForExecutionCommand}
|
|
61
62
|
*/
|
|
62
|
-
describeStateMachineForExecution(args: DescribeStateMachineForExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStateMachineForExecutionCommandOutput, SdkError | ExecutionDoesNotExistError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError>;
|
|
63
|
+
describeStateMachineForExecution(args: DescribeStateMachineForExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<DescribeStateMachineForExecutionCommandOutput, Cause.TimeoutException | SdkError | ExecutionDoesNotExistError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError>;
|
|
63
64
|
/**
|
|
64
65
|
* @see {@link GetActivityTaskCommand}
|
|
65
66
|
*/
|
|
66
|
-
getActivityTask(args: GetActivityTaskCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetActivityTaskCommandOutput, SdkError | ActivityDoesNotExistError | ActivityWorkerLimitExceededError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError>;
|
|
67
|
+
getActivityTask(args: GetActivityTaskCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetActivityTaskCommandOutput, Cause.TimeoutException | SdkError | ActivityDoesNotExistError | ActivityWorkerLimitExceededError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError>;
|
|
67
68
|
/**
|
|
68
69
|
* @see {@link GetExecutionHistoryCommand}
|
|
69
70
|
*/
|
|
70
|
-
getExecutionHistory(args: GetExecutionHistoryCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetExecutionHistoryCommandOutput, SdkError | ExecutionDoesNotExistError | InvalidArnError | InvalidTokenError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError>;
|
|
71
|
+
getExecutionHistory(args: GetExecutionHistoryCommandInput, options?: HttpHandlerOptions): Effect.Effect<GetExecutionHistoryCommandOutput, Cause.TimeoutException | SdkError | ExecutionDoesNotExistError | InvalidArnError | InvalidTokenError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError>;
|
|
71
72
|
/**
|
|
72
73
|
* @see {@link ListActivitiesCommand}
|
|
73
74
|
*/
|
|
74
|
-
listActivities(args: ListActivitiesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListActivitiesCommandOutput, SdkError | InvalidTokenError>;
|
|
75
|
+
listActivities(args: ListActivitiesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListActivitiesCommandOutput, Cause.TimeoutException | SdkError | InvalidTokenError>;
|
|
75
76
|
/**
|
|
76
77
|
* @see {@link ListExecutionsCommand}
|
|
77
78
|
*/
|
|
78
|
-
listExecutions(args: ListExecutionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListExecutionsCommandOutput, SdkError | InvalidArnError | InvalidTokenError | ResourceNotFoundError | StateMachineDoesNotExistError | StateMachineTypeNotSupportedError | ValidationError>;
|
|
79
|
+
listExecutions(args: ListExecutionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListExecutionsCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | InvalidTokenError | ResourceNotFoundError | StateMachineDoesNotExistError | StateMachineTypeNotSupportedError | ValidationError>;
|
|
79
80
|
/**
|
|
80
81
|
* @see {@link ListMapRunsCommand}
|
|
81
82
|
*/
|
|
82
|
-
listMapRuns(args: ListMapRunsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListMapRunsCommandOutput, SdkError | ExecutionDoesNotExistError | InvalidArnError | InvalidTokenError>;
|
|
83
|
+
listMapRuns(args: ListMapRunsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListMapRunsCommandOutput, Cause.TimeoutException | SdkError | ExecutionDoesNotExistError | InvalidArnError | InvalidTokenError>;
|
|
83
84
|
/**
|
|
84
85
|
* @see {@link ListStateMachineAliasesCommand}
|
|
85
86
|
*/
|
|
86
|
-
listStateMachineAliases(args: ListStateMachineAliasesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStateMachineAliasesCommandOutput, SdkError | InvalidArnError | InvalidTokenError | ResourceNotFoundError | StateMachineDeletingError | StateMachineDoesNotExistError>;
|
|
87
|
+
listStateMachineAliases(args: ListStateMachineAliasesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStateMachineAliasesCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | InvalidTokenError | ResourceNotFoundError | StateMachineDeletingError | StateMachineDoesNotExistError>;
|
|
87
88
|
/**
|
|
88
89
|
* @see {@link ListStateMachineVersionsCommand}
|
|
89
90
|
*/
|
|
90
|
-
listStateMachineVersions(args: ListStateMachineVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStateMachineVersionsCommandOutput, SdkError | InvalidArnError | InvalidTokenError | ValidationError>;
|
|
91
|
+
listStateMachineVersions(args: ListStateMachineVersionsCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStateMachineVersionsCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | InvalidTokenError | ValidationError>;
|
|
91
92
|
/**
|
|
92
93
|
* @see {@link ListStateMachinesCommand}
|
|
93
94
|
*/
|
|
94
|
-
listStateMachines(args: ListStateMachinesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStateMachinesCommandOutput, SdkError | InvalidTokenError>;
|
|
95
|
+
listStateMachines(args: ListStateMachinesCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListStateMachinesCommandOutput, Cause.TimeoutException | SdkError | InvalidTokenError>;
|
|
95
96
|
/**
|
|
96
97
|
* @see {@link ListTagsForResourceCommand}
|
|
97
98
|
*/
|
|
98
|
-
listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, SdkError | InvalidArnError | ResourceNotFoundError>;
|
|
99
|
+
listTagsForResource(args: ListTagsForResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<ListTagsForResourceCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | ResourceNotFoundError>;
|
|
99
100
|
/**
|
|
100
101
|
* @see {@link PublishStateMachineVersionCommand}
|
|
101
102
|
*/
|
|
102
|
-
publishStateMachineVersion(args: PublishStateMachineVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<PublishStateMachineVersionCommandOutput, SdkError | ConflictError | InvalidArnError | ServiceQuotaExceededError | StateMachineDeletingError | StateMachineDoesNotExistError | ValidationError>;
|
|
103
|
+
publishStateMachineVersion(args: PublishStateMachineVersionCommandInput, options?: HttpHandlerOptions): Effect.Effect<PublishStateMachineVersionCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InvalidArnError | ServiceQuotaExceededError | StateMachineDeletingError | StateMachineDoesNotExistError | ValidationError>;
|
|
103
104
|
/**
|
|
104
105
|
* @see {@link RedriveExecutionCommand}
|
|
105
106
|
*/
|
|
106
|
-
redriveExecution(args: RedriveExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<RedriveExecutionCommandOutput, SdkError | ExecutionDoesNotExistError | ExecutionLimitExceededError | ExecutionNotRedrivableError | InvalidArnError | ValidationError>;
|
|
107
|
+
redriveExecution(args: RedriveExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<RedriveExecutionCommandOutput, Cause.TimeoutException | SdkError | ExecutionDoesNotExistError | ExecutionLimitExceededError | ExecutionNotRedrivableError | InvalidArnError | ValidationError>;
|
|
107
108
|
/**
|
|
108
109
|
* @see {@link SendTaskFailureCommand}
|
|
109
110
|
*/
|
|
110
|
-
sendTaskFailure(args: SendTaskFailureCommandInput, options?: HttpHandlerOptions): Effect.Effect<SendTaskFailureCommandOutput, SdkError | InvalidTokenError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | TaskDoesNotExistError | TaskTimedOutError>;
|
|
111
|
+
sendTaskFailure(args: SendTaskFailureCommandInput, options?: HttpHandlerOptions): Effect.Effect<SendTaskFailureCommandOutput, Cause.TimeoutException | SdkError | InvalidTokenError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | TaskDoesNotExistError | TaskTimedOutError>;
|
|
111
112
|
/**
|
|
112
113
|
* @see {@link SendTaskHeartbeatCommand}
|
|
113
114
|
*/
|
|
114
|
-
sendTaskHeartbeat(args: SendTaskHeartbeatCommandInput, options?: HttpHandlerOptions): Effect.Effect<SendTaskHeartbeatCommandOutput, SdkError | InvalidTokenError | TaskDoesNotExistError | TaskTimedOutError>;
|
|
115
|
+
sendTaskHeartbeat(args: SendTaskHeartbeatCommandInput, options?: HttpHandlerOptions): Effect.Effect<SendTaskHeartbeatCommandOutput, Cause.TimeoutException | SdkError | InvalidTokenError | TaskDoesNotExistError | TaskTimedOutError>;
|
|
115
116
|
/**
|
|
116
117
|
* @see {@link SendTaskSuccessCommand}
|
|
117
118
|
*/
|
|
118
|
-
sendTaskSuccess(args: SendTaskSuccessCommandInput, options?: HttpHandlerOptions): Effect.Effect<SendTaskSuccessCommandOutput, SdkError | InvalidOutputError | InvalidTokenError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | TaskDoesNotExistError | TaskTimedOutError>;
|
|
119
|
+
sendTaskSuccess(args: SendTaskSuccessCommandInput, options?: HttpHandlerOptions): Effect.Effect<SendTaskSuccessCommandOutput, Cause.TimeoutException | SdkError | InvalidOutputError | InvalidTokenError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | TaskDoesNotExistError | TaskTimedOutError>;
|
|
119
120
|
/**
|
|
120
121
|
* @see {@link StartExecutionCommand}
|
|
121
122
|
*/
|
|
122
|
-
startExecution(args: StartExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<StartExecutionCommandOutput, SdkError | ExecutionAlreadyExistsError | ExecutionLimitExceededError | InvalidArnError | InvalidExecutionInputError | InvalidNameError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | StateMachineDeletingError | StateMachineDoesNotExistError | ValidationError>;
|
|
123
|
+
startExecution(args: StartExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<StartExecutionCommandOutput, Cause.TimeoutException | SdkError | ExecutionAlreadyExistsError | ExecutionLimitExceededError | InvalidArnError | InvalidExecutionInputError | InvalidNameError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | StateMachineDeletingError | StateMachineDoesNotExistError | ValidationError>;
|
|
123
124
|
/**
|
|
124
125
|
* @see {@link StartSyncExecutionCommand}
|
|
125
126
|
*/
|
|
126
|
-
startSyncExecution(args: StartSyncExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<StartSyncExecutionCommandOutput, SdkError | InvalidArnError | InvalidExecutionInputError | InvalidNameError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | StateMachineDeletingError | StateMachineDoesNotExistError | StateMachineTypeNotSupportedError>;
|
|
127
|
+
startSyncExecution(args: StartSyncExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<StartSyncExecutionCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | InvalidExecutionInputError | InvalidNameError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | StateMachineDeletingError | StateMachineDoesNotExistError | StateMachineTypeNotSupportedError>;
|
|
127
128
|
/**
|
|
128
129
|
* @see {@link StopExecutionCommand}
|
|
129
130
|
*/
|
|
130
|
-
stopExecution(args: StopExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<StopExecutionCommandOutput, SdkError | ExecutionDoesNotExistError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | ValidationError>;
|
|
131
|
+
stopExecution(args: StopExecutionCommandInput, options?: HttpHandlerOptions): Effect.Effect<StopExecutionCommandOutput, Cause.TimeoutException | SdkError | ExecutionDoesNotExistError | InvalidArnError | KmsAccessDeniedError | KmsInvalidStateError | KmsThrottlingError | ValidationError>;
|
|
131
132
|
/**
|
|
132
133
|
* @see {@link TagResourceCommand}
|
|
133
134
|
*/
|
|
134
|
-
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, SdkError | InvalidArnError | ResourceNotFoundError | TooManyTagsError>;
|
|
135
|
+
tagResource(args: TagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<TagResourceCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | ResourceNotFoundError | TooManyTagsError>;
|
|
135
136
|
/**
|
|
136
137
|
* @see {@link TestStateCommand}
|
|
137
138
|
*/
|
|
138
|
-
testState(args: TestStateCommandInput, options?: HttpHandlerOptions): Effect.Effect<TestStateCommandOutput, SdkError | InvalidArnError | InvalidDefinitionError | InvalidExecutionInputError | ValidationError>;
|
|
139
|
+
testState(args: TestStateCommandInput, options?: HttpHandlerOptions): Effect.Effect<TestStateCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | InvalidDefinitionError | InvalidExecutionInputError | ValidationError>;
|
|
139
140
|
/**
|
|
140
141
|
* @see {@link UntagResourceCommand}
|
|
141
142
|
*/
|
|
142
|
-
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, SdkError | InvalidArnError | ResourceNotFoundError>;
|
|
143
|
+
untagResource(args: UntagResourceCommandInput, options?: HttpHandlerOptions): Effect.Effect<UntagResourceCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | ResourceNotFoundError>;
|
|
143
144
|
/**
|
|
144
145
|
* @see {@link UpdateMapRunCommand}
|
|
145
146
|
*/
|
|
146
|
-
updateMapRun(args: UpdateMapRunCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateMapRunCommandOutput, SdkError | InvalidArnError | ResourceNotFoundError | ValidationError>;
|
|
147
|
+
updateMapRun(args: UpdateMapRunCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateMapRunCommandOutput, Cause.TimeoutException | SdkError | InvalidArnError | ResourceNotFoundError | ValidationError>;
|
|
147
148
|
/**
|
|
148
149
|
* @see {@link UpdateStateMachineCommand}
|
|
149
150
|
*/
|
|
150
|
-
updateStateMachine(args: UpdateStateMachineCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateStateMachineCommandOutput, SdkError | ConflictError | InvalidArnError | InvalidDefinitionError | InvalidEncryptionConfigurationError | InvalidLoggingConfigurationError | InvalidTracingConfigurationError | KmsAccessDeniedError | KmsThrottlingError | MissingRequiredParameterError | ServiceQuotaExceededError | StateMachineDeletingError | StateMachineDoesNotExistError | ValidationError>;
|
|
151
|
+
updateStateMachine(args: UpdateStateMachineCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateStateMachineCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InvalidArnError | InvalidDefinitionError | InvalidEncryptionConfigurationError | InvalidLoggingConfigurationError | InvalidTracingConfigurationError | KmsAccessDeniedError | KmsThrottlingError | MissingRequiredParameterError | ServiceQuotaExceededError | StateMachineDeletingError | StateMachineDoesNotExistError | ValidationError>;
|
|
151
152
|
/**
|
|
152
153
|
* @see {@link UpdateStateMachineAliasCommand}
|
|
153
154
|
*/
|
|
154
|
-
updateStateMachineAlias(args: UpdateStateMachineAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateStateMachineAliasCommandOutput, SdkError | ConflictError | InvalidArnError | ResourceNotFoundError | StateMachineDeletingError | ValidationError>;
|
|
155
|
+
updateStateMachineAlias(args: UpdateStateMachineAliasCommandInput, options?: HttpHandlerOptions): Effect.Effect<UpdateStateMachineAliasCommandOutput, Cause.TimeoutException | SdkError | ConflictError | InvalidArnError | ResourceNotFoundError | StateMachineDeletingError | ValidationError>;
|
|
155
156
|
/**
|
|
156
157
|
* @see {@link ValidateStateMachineDefinitionCommand}
|
|
157
158
|
*/
|
|
158
|
-
validateStateMachineDefinition(args: ValidateStateMachineDefinitionCommandInput, options?: HttpHandlerOptions): Effect.Effect<ValidateStateMachineDefinitionCommandOutput, SdkError | ValidationError>;
|
|
159
|
+
validateStateMachineDefinition(args: ValidateStateMachineDefinitionCommandInput, options?: HttpHandlerOptions): Effect.Effect<ValidateStateMachineDefinitionCommandOutput, Cause.TimeoutException | SdkError | ValidationError>;
|
|
159
160
|
}
|
|
160
161
|
/**
|
|
161
162
|
* @since 1.0.0
|
|
@@ -163,7 +164,7 @@ interface SFNService$ {
|
|
|
163
164
|
*/
|
|
164
165
|
export declare const makeSFNService: Effect.Effect<SFNService$, never, Instance.SFNClientInstance>;
|
|
165
166
|
declare const SFNService_base: import("effect/Context").TagClass<SFNService, "@effect-aws/client-sfn/SFNService", SFNService$> & Effect.Tag.Proxy<SFNService, SFNService$> & {
|
|
166
|
-
use: <X>(body: (_: SFNService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, SFNService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1,
|
|
167
|
+
use: <X>(body: (_: SFNService$) => X) => [X] extends [Effect.Effect<infer A, infer E, infer R>] ? Effect.Effect<A, E, SFNService | R> : [X] extends [PromiseLike<infer A_1>] ? Effect.Effect<A_1, Cause.UnknownException, SFNService> : Effect.Effect<X, never, SFNService>;
|
|
167
168
|
};
|
|
168
169
|
/**
|
|
169
170
|
* @since 1.0.0
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SFNService.d.ts","sourceRoot":"","sources":["../../src/SFNService.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"SFNService.d.ts","sourceRoot":"","sources":["../../src/SFNService.ts"],"names":[],"mappings":"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"}
|
package/dist/esm/SFNService.js
CHANGED
|
@@ -52,7 +52,7 @@ const commands = {
|
|
|
52
52
|
*/
|
|
53
53
|
export const makeSFNService = Effect.gen(function* () {
|
|
54
54
|
const client = yield* Instance.SFNClientInstance;
|
|
55
|
-
return Service.fromClientAndCommands(client, commands, {
|
|
55
|
+
return yield* Service.fromClientAndCommands(client, commands, {
|
|
56
56
|
errorTags: AllServiceErrors,
|
|
57
57
|
resolveClientConfig: SFNServiceConfig.toSFNClientConfig,
|
|
58
58
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SFNService.js","sourceRoot":"","sources":["../../src/SFNService.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EACL,qBAAqB,EAGrB,8BAA8B,EAG9B,yBAAyB,EAGzB,qBAAqB,EAGrB,8BAA8B,EAG9B,yBAAyB,EAGzB,gCAAgC,EAGhC,uBAAuB,EAGvB,wBAAwB,EAGxB,qBAAqB,EAGrB,gCAAgC,EAGhC,2BAA2B,EAG3B,uCAAuC,EAGvC,sBAAsB,EAGtB,0BAA0B,EAG1B,qBAAqB,EAGrB,qBAAqB,EAGrB,kBAAkB,EAGlB,8BAA8B,EAG9B,wBAAwB,EAGxB,+BAA+B,EAG/B,0BAA0B,EAG1B,iCAAiC,EAGjC,uBAAuB,EAGvB,sBAAsB,EAGtB,wBAAwB,EAGxB,sBAAsB,EAKtB,qBAAqB,EAGrB,yBAAyB,EAGzB,oBAAoB,EAGpB,kBAAkB,EAGlB,gBAAgB,EAGhB,oBAAoB,EAGpB,mBAAmB,EAGnB,8BAA8B,EAG9B,yBAAyB,EAGzB,qCAAqC,GAGtC,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"SFNService.js","sourceRoot":"","sources":["../../src/SFNService.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-aws/client-sfn",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0",
|
|
4
4
|
"description": "Effectful AWS Step Functions client",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"homepage": "https://floydspace.github.io/effect-aws/docs/client-sfn",
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@aws-sdk/client-sfn": "^3",
|
|
19
|
-
"@effect-aws/commons": "^0.
|
|
19
|
+
"@effect-aws/commons": "^0.3.0"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"effect": ">=3.0.4 <4.0.0"
|
package/src/SFNService.ts
CHANGED
|
@@ -118,6 +118,7 @@ import {
|
|
|
118
118
|
} from "@aws-sdk/client-sfn";
|
|
119
119
|
import type { HttpHandlerOptions, SdkError, ServiceLogger } from "@effect-aws/commons";
|
|
120
120
|
import { Service } from "@effect-aws/commons";
|
|
121
|
+
import type { Cause } from "effect";
|
|
121
122
|
import { Effect, Layer } from "effect";
|
|
122
123
|
import type {
|
|
123
124
|
ActivityAlreadyExistsError,
|
|
@@ -209,6 +210,7 @@ interface SFNService$ {
|
|
|
209
210
|
options?: HttpHandlerOptions,
|
|
210
211
|
): Effect.Effect<
|
|
211
212
|
CreateActivityCommandOutput,
|
|
213
|
+
| Cause.TimeoutException
|
|
212
214
|
| SdkError
|
|
213
215
|
| ActivityAlreadyExistsError
|
|
214
216
|
| ActivityLimitExceededError
|
|
@@ -227,6 +229,7 @@ interface SFNService$ {
|
|
|
227
229
|
options?: HttpHandlerOptions,
|
|
228
230
|
): Effect.Effect<
|
|
229
231
|
CreateStateMachineCommandOutput,
|
|
232
|
+
| Cause.TimeoutException
|
|
230
233
|
| SdkError
|
|
231
234
|
| ConflictError
|
|
232
235
|
| InvalidArnError
|
|
@@ -253,6 +256,7 @@ interface SFNService$ {
|
|
|
253
256
|
options?: HttpHandlerOptions,
|
|
254
257
|
): Effect.Effect<
|
|
255
258
|
CreateStateMachineAliasCommandOutput,
|
|
259
|
+
| Cause.TimeoutException
|
|
256
260
|
| SdkError
|
|
257
261
|
| ConflictError
|
|
258
262
|
| InvalidArnError
|
|
@@ -271,7 +275,7 @@ interface SFNService$ {
|
|
|
271
275
|
options?: HttpHandlerOptions,
|
|
272
276
|
): Effect.Effect<
|
|
273
277
|
DeleteActivityCommandOutput,
|
|
274
|
-
SdkError | InvalidArnError
|
|
278
|
+
Cause.TimeoutException | SdkError | InvalidArnError
|
|
275
279
|
>;
|
|
276
280
|
|
|
277
281
|
/**
|
|
@@ -282,7 +286,7 @@ interface SFNService$ {
|
|
|
282
286
|
options?: HttpHandlerOptions,
|
|
283
287
|
): Effect.Effect<
|
|
284
288
|
DeleteStateMachineCommandOutput,
|
|
285
|
-
SdkError | InvalidArnError | ValidationError
|
|
289
|
+
Cause.TimeoutException | SdkError | InvalidArnError | ValidationError
|
|
286
290
|
>;
|
|
287
291
|
|
|
288
292
|
/**
|
|
@@ -293,7 +297,7 @@ interface SFNService$ {
|
|
|
293
297
|
options?: HttpHandlerOptions,
|
|
294
298
|
): Effect.Effect<
|
|
295
299
|
DeleteStateMachineAliasCommandOutput,
|
|
296
|
-
SdkError | ConflictError | InvalidArnError | ResourceNotFoundError | ValidationError
|
|
300
|
+
Cause.TimeoutException | SdkError | ConflictError | InvalidArnError | ResourceNotFoundError | ValidationError
|
|
297
301
|
>;
|
|
298
302
|
|
|
299
303
|
/**
|
|
@@ -304,7 +308,7 @@ interface SFNService$ {
|
|
|
304
308
|
options?: HttpHandlerOptions,
|
|
305
309
|
): Effect.Effect<
|
|
306
310
|
DeleteStateMachineVersionCommandOutput,
|
|
307
|
-
SdkError | ConflictError | InvalidArnError | ValidationError
|
|
311
|
+
Cause.TimeoutException | SdkError | ConflictError | InvalidArnError | ValidationError
|
|
308
312
|
>;
|
|
309
313
|
|
|
310
314
|
/**
|
|
@@ -315,7 +319,7 @@ interface SFNService$ {
|
|
|
315
319
|
options?: HttpHandlerOptions,
|
|
316
320
|
): Effect.Effect<
|
|
317
321
|
DescribeActivityCommandOutput,
|
|
318
|
-
SdkError | ActivityDoesNotExistError | InvalidArnError
|
|
322
|
+
Cause.TimeoutException | SdkError | ActivityDoesNotExistError | InvalidArnError
|
|
319
323
|
>;
|
|
320
324
|
|
|
321
325
|
/**
|
|
@@ -326,6 +330,7 @@ interface SFNService$ {
|
|
|
326
330
|
options?: HttpHandlerOptions,
|
|
327
331
|
): Effect.Effect<
|
|
328
332
|
DescribeExecutionCommandOutput,
|
|
333
|
+
| Cause.TimeoutException
|
|
329
334
|
| SdkError
|
|
330
335
|
| ExecutionDoesNotExistError
|
|
331
336
|
| InvalidArnError
|
|
@@ -342,7 +347,7 @@ interface SFNService$ {
|
|
|
342
347
|
options?: HttpHandlerOptions,
|
|
343
348
|
): Effect.Effect<
|
|
344
349
|
DescribeMapRunCommandOutput,
|
|
345
|
-
SdkError | InvalidArnError | ResourceNotFoundError
|
|
350
|
+
Cause.TimeoutException | SdkError | InvalidArnError | ResourceNotFoundError
|
|
346
351
|
>;
|
|
347
352
|
|
|
348
353
|
/**
|
|
@@ -353,6 +358,7 @@ interface SFNService$ {
|
|
|
353
358
|
options?: HttpHandlerOptions,
|
|
354
359
|
): Effect.Effect<
|
|
355
360
|
DescribeStateMachineCommandOutput,
|
|
361
|
+
| Cause.TimeoutException
|
|
356
362
|
| SdkError
|
|
357
363
|
| InvalidArnError
|
|
358
364
|
| KmsAccessDeniedError
|
|
@@ -369,7 +375,7 @@ interface SFNService$ {
|
|
|
369
375
|
options?: HttpHandlerOptions,
|
|
370
376
|
): Effect.Effect<
|
|
371
377
|
DescribeStateMachineAliasCommandOutput,
|
|
372
|
-
SdkError | InvalidArnError | ResourceNotFoundError | ValidationError
|
|
378
|
+
Cause.TimeoutException | SdkError | InvalidArnError | ResourceNotFoundError | ValidationError
|
|
373
379
|
>;
|
|
374
380
|
|
|
375
381
|
/**
|
|
@@ -380,6 +386,7 @@ interface SFNService$ {
|
|
|
380
386
|
options?: HttpHandlerOptions,
|
|
381
387
|
): Effect.Effect<
|
|
382
388
|
DescribeStateMachineForExecutionCommandOutput,
|
|
389
|
+
| Cause.TimeoutException
|
|
383
390
|
| SdkError
|
|
384
391
|
| ExecutionDoesNotExistError
|
|
385
392
|
| InvalidArnError
|
|
@@ -396,6 +403,7 @@ interface SFNService$ {
|
|
|
396
403
|
options?: HttpHandlerOptions,
|
|
397
404
|
): Effect.Effect<
|
|
398
405
|
GetActivityTaskCommandOutput,
|
|
406
|
+
| Cause.TimeoutException
|
|
399
407
|
| SdkError
|
|
400
408
|
| ActivityDoesNotExistError
|
|
401
409
|
| ActivityWorkerLimitExceededError
|
|
@@ -413,6 +421,7 @@ interface SFNService$ {
|
|
|
413
421
|
options?: HttpHandlerOptions,
|
|
414
422
|
): Effect.Effect<
|
|
415
423
|
GetExecutionHistoryCommandOutput,
|
|
424
|
+
| Cause.TimeoutException
|
|
416
425
|
| SdkError
|
|
417
426
|
| ExecutionDoesNotExistError
|
|
418
427
|
| InvalidArnError
|
|
@@ -430,7 +439,7 @@ interface SFNService$ {
|
|
|
430
439
|
options?: HttpHandlerOptions,
|
|
431
440
|
): Effect.Effect<
|
|
432
441
|
ListActivitiesCommandOutput,
|
|
433
|
-
SdkError | InvalidTokenError
|
|
442
|
+
Cause.TimeoutException | SdkError | InvalidTokenError
|
|
434
443
|
>;
|
|
435
444
|
|
|
436
445
|
/**
|
|
@@ -441,6 +450,7 @@ interface SFNService$ {
|
|
|
441
450
|
options?: HttpHandlerOptions,
|
|
442
451
|
): Effect.Effect<
|
|
443
452
|
ListExecutionsCommandOutput,
|
|
453
|
+
| Cause.TimeoutException
|
|
444
454
|
| SdkError
|
|
445
455
|
| InvalidArnError
|
|
446
456
|
| InvalidTokenError
|
|
@@ -458,7 +468,7 @@ interface SFNService$ {
|
|
|
458
468
|
options?: HttpHandlerOptions,
|
|
459
469
|
): Effect.Effect<
|
|
460
470
|
ListMapRunsCommandOutput,
|
|
461
|
-
SdkError | ExecutionDoesNotExistError | InvalidArnError | InvalidTokenError
|
|
471
|
+
Cause.TimeoutException | SdkError | ExecutionDoesNotExistError | InvalidArnError | InvalidTokenError
|
|
462
472
|
>;
|
|
463
473
|
|
|
464
474
|
/**
|
|
@@ -469,6 +479,7 @@ interface SFNService$ {
|
|
|
469
479
|
options?: HttpHandlerOptions,
|
|
470
480
|
): Effect.Effect<
|
|
471
481
|
ListStateMachineAliasesCommandOutput,
|
|
482
|
+
| Cause.TimeoutException
|
|
472
483
|
| SdkError
|
|
473
484
|
| InvalidArnError
|
|
474
485
|
| InvalidTokenError
|
|
@@ -485,7 +496,7 @@ interface SFNService$ {
|
|
|
485
496
|
options?: HttpHandlerOptions,
|
|
486
497
|
): Effect.Effect<
|
|
487
498
|
ListStateMachineVersionsCommandOutput,
|
|
488
|
-
SdkError | InvalidArnError | InvalidTokenError | ValidationError
|
|
499
|
+
Cause.TimeoutException | SdkError | InvalidArnError | InvalidTokenError | ValidationError
|
|
489
500
|
>;
|
|
490
501
|
|
|
491
502
|
/**
|
|
@@ -496,7 +507,7 @@ interface SFNService$ {
|
|
|
496
507
|
options?: HttpHandlerOptions,
|
|
497
508
|
): Effect.Effect<
|
|
498
509
|
ListStateMachinesCommandOutput,
|
|
499
|
-
SdkError | InvalidTokenError
|
|
510
|
+
Cause.TimeoutException | SdkError | InvalidTokenError
|
|
500
511
|
>;
|
|
501
512
|
|
|
502
513
|
/**
|
|
@@ -507,7 +518,7 @@ interface SFNService$ {
|
|
|
507
518
|
options?: HttpHandlerOptions,
|
|
508
519
|
): Effect.Effect<
|
|
509
520
|
ListTagsForResourceCommandOutput,
|
|
510
|
-
SdkError | InvalidArnError | ResourceNotFoundError
|
|
521
|
+
Cause.TimeoutException | SdkError | InvalidArnError | ResourceNotFoundError
|
|
511
522
|
>;
|
|
512
523
|
|
|
513
524
|
/**
|
|
@@ -518,6 +529,7 @@ interface SFNService$ {
|
|
|
518
529
|
options?: HttpHandlerOptions,
|
|
519
530
|
): Effect.Effect<
|
|
520
531
|
PublishStateMachineVersionCommandOutput,
|
|
532
|
+
| Cause.TimeoutException
|
|
521
533
|
| SdkError
|
|
522
534
|
| ConflictError
|
|
523
535
|
| InvalidArnError
|
|
@@ -535,6 +547,7 @@ interface SFNService$ {
|
|
|
535
547
|
options?: HttpHandlerOptions,
|
|
536
548
|
): Effect.Effect<
|
|
537
549
|
RedriveExecutionCommandOutput,
|
|
550
|
+
| Cause.TimeoutException
|
|
538
551
|
| SdkError
|
|
539
552
|
| ExecutionDoesNotExistError
|
|
540
553
|
| ExecutionLimitExceededError
|
|
@@ -551,6 +564,7 @@ interface SFNService$ {
|
|
|
551
564
|
options?: HttpHandlerOptions,
|
|
552
565
|
): Effect.Effect<
|
|
553
566
|
SendTaskFailureCommandOutput,
|
|
567
|
+
| Cause.TimeoutException
|
|
554
568
|
| SdkError
|
|
555
569
|
| InvalidTokenError
|
|
556
570
|
| KmsAccessDeniedError
|
|
@@ -568,7 +582,7 @@ interface SFNService$ {
|
|
|
568
582
|
options?: HttpHandlerOptions,
|
|
569
583
|
): Effect.Effect<
|
|
570
584
|
SendTaskHeartbeatCommandOutput,
|
|
571
|
-
SdkError | InvalidTokenError | TaskDoesNotExistError | TaskTimedOutError
|
|
585
|
+
Cause.TimeoutException | SdkError | InvalidTokenError | TaskDoesNotExistError | TaskTimedOutError
|
|
572
586
|
>;
|
|
573
587
|
|
|
574
588
|
/**
|
|
@@ -579,6 +593,7 @@ interface SFNService$ {
|
|
|
579
593
|
options?: HttpHandlerOptions,
|
|
580
594
|
): Effect.Effect<
|
|
581
595
|
SendTaskSuccessCommandOutput,
|
|
596
|
+
| Cause.TimeoutException
|
|
582
597
|
| SdkError
|
|
583
598
|
| InvalidOutputError
|
|
584
599
|
| InvalidTokenError
|
|
@@ -597,6 +612,7 @@ interface SFNService$ {
|
|
|
597
612
|
options?: HttpHandlerOptions,
|
|
598
613
|
): Effect.Effect<
|
|
599
614
|
StartExecutionCommandOutput,
|
|
615
|
+
| Cause.TimeoutException
|
|
600
616
|
| SdkError
|
|
601
617
|
| ExecutionAlreadyExistsError
|
|
602
618
|
| ExecutionLimitExceededError
|
|
@@ -619,6 +635,7 @@ interface SFNService$ {
|
|
|
619
635
|
options?: HttpHandlerOptions,
|
|
620
636
|
): Effect.Effect<
|
|
621
637
|
StartSyncExecutionCommandOutput,
|
|
638
|
+
| Cause.TimeoutException
|
|
622
639
|
| SdkError
|
|
623
640
|
| InvalidArnError
|
|
624
641
|
| InvalidExecutionInputError
|
|
@@ -639,6 +656,7 @@ interface SFNService$ {
|
|
|
639
656
|
options?: HttpHandlerOptions,
|
|
640
657
|
): Effect.Effect<
|
|
641
658
|
StopExecutionCommandOutput,
|
|
659
|
+
| Cause.TimeoutException
|
|
642
660
|
| SdkError
|
|
643
661
|
| ExecutionDoesNotExistError
|
|
644
662
|
| InvalidArnError
|
|
@@ -656,7 +674,7 @@ interface SFNService$ {
|
|
|
656
674
|
options?: HttpHandlerOptions,
|
|
657
675
|
): Effect.Effect<
|
|
658
676
|
TagResourceCommandOutput,
|
|
659
|
-
SdkError | InvalidArnError | ResourceNotFoundError | TooManyTagsError
|
|
677
|
+
Cause.TimeoutException | SdkError | InvalidArnError | ResourceNotFoundError | TooManyTagsError
|
|
660
678
|
>;
|
|
661
679
|
|
|
662
680
|
/**
|
|
@@ -667,7 +685,12 @@ interface SFNService$ {
|
|
|
667
685
|
options?: HttpHandlerOptions,
|
|
668
686
|
): Effect.Effect<
|
|
669
687
|
TestStateCommandOutput,
|
|
670
|
-
|
|
688
|
+
| Cause.TimeoutException
|
|
689
|
+
| SdkError
|
|
690
|
+
| InvalidArnError
|
|
691
|
+
| InvalidDefinitionError
|
|
692
|
+
| InvalidExecutionInputError
|
|
693
|
+
| ValidationError
|
|
671
694
|
>;
|
|
672
695
|
|
|
673
696
|
/**
|
|
@@ -678,7 +701,7 @@ interface SFNService$ {
|
|
|
678
701
|
options?: HttpHandlerOptions,
|
|
679
702
|
): Effect.Effect<
|
|
680
703
|
UntagResourceCommandOutput,
|
|
681
|
-
SdkError | InvalidArnError | ResourceNotFoundError
|
|
704
|
+
Cause.TimeoutException | SdkError | InvalidArnError | ResourceNotFoundError
|
|
682
705
|
>;
|
|
683
706
|
|
|
684
707
|
/**
|
|
@@ -689,7 +712,7 @@ interface SFNService$ {
|
|
|
689
712
|
options?: HttpHandlerOptions,
|
|
690
713
|
): Effect.Effect<
|
|
691
714
|
UpdateMapRunCommandOutput,
|
|
692
|
-
SdkError | InvalidArnError | ResourceNotFoundError | ValidationError
|
|
715
|
+
Cause.TimeoutException | SdkError | InvalidArnError | ResourceNotFoundError | ValidationError
|
|
693
716
|
>;
|
|
694
717
|
|
|
695
718
|
/**
|
|
@@ -700,6 +723,7 @@ interface SFNService$ {
|
|
|
700
723
|
options?: HttpHandlerOptions,
|
|
701
724
|
): Effect.Effect<
|
|
702
725
|
UpdateStateMachineCommandOutput,
|
|
726
|
+
| Cause.TimeoutException
|
|
703
727
|
| SdkError
|
|
704
728
|
| ConflictError
|
|
705
729
|
| InvalidArnError
|
|
@@ -724,7 +748,13 @@ interface SFNService$ {
|
|
|
724
748
|
options?: HttpHandlerOptions,
|
|
725
749
|
): Effect.Effect<
|
|
726
750
|
UpdateStateMachineAliasCommandOutput,
|
|
727
|
-
|
|
751
|
+
| Cause.TimeoutException
|
|
752
|
+
| SdkError
|
|
753
|
+
| ConflictError
|
|
754
|
+
| InvalidArnError
|
|
755
|
+
| ResourceNotFoundError
|
|
756
|
+
| StateMachineDeletingError
|
|
757
|
+
| ValidationError
|
|
728
758
|
>;
|
|
729
759
|
|
|
730
760
|
/**
|
|
@@ -735,7 +765,7 @@ interface SFNService$ {
|
|
|
735
765
|
options?: HttpHandlerOptions,
|
|
736
766
|
): Effect.Effect<
|
|
737
767
|
ValidateStateMachineDefinitionCommandOutput,
|
|
738
|
-
SdkError | ValidationError
|
|
768
|
+
Cause.TimeoutException | SdkError | ValidationError
|
|
739
769
|
>;
|
|
740
770
|
}
|
|
741
771
|
|
|
@@ -746,7 +776,7 @@ interface SFNService$ {
|
|
|
746
776
|
export const makeSFNService = Effect.gen(function*() {
|
|
747
777
|
const client = yield* Instance.SFNClientInstance;
|
|
748
778
|
|
|
749
|
-
return Service.fromClientAndCommands<SFNService$>(
|
|
779
|
+
return yield* Service.fromClientAndCommands<SFNService$>(
|
|
750
780
|
client,
|
|
751
781
|
commands,
|
|
752
782
|
{
|