StartTaskExecution
Source:
src/AWS/DataSync/StartTaskExecution.ts
Runtime binding for datasync:StartTaskExecution.
Starts a run of the bound Task — the moment data actually moves.
The task ARN is injected from the binding; pass OverrideOptions,
Includes/Excludes, or a ManifestConfig to shape the individual run.
Returns the new execution’s ARN for use with DescribeTaskExecution /
CancelTaskExecution. Provide the implementation with
Effect.provide(AWS.DataSync.StartTaskExecutionHttp).
Running Transfers
Section titled “Running Transfers”// init — bind the operation to the taskconst startTaskExecution = yield* AWS.DataSync.StartTaskExecution(task);
// runtimeconst { TaskExecutionArn } = yield* startTaskExecution();yield* Effect.log(`transfer started: ${TaskExecutionArn}`);