/** *

Contains details about a task scheduled during an execution.

*/ export interface _TaskScheduledEventDetails { /** *

The action of the resource called by a task state.

*/ resourceType: string; /** *

The service name of the resource in a task state.

*/ resource: string; /** *

The region of the scheduled task

*/ region: string; /** *

The JSON data passed to the resource referenced in a task state.

*/ parameters: string; /** *

The maximum allowed duration of the task.

*/ timeoutInSeconds?: number; } export declare type _UnmarshalledTaskScheduledEventDetails = _TaskScheduledEventDetails;