/** *
Contains details about an activity scheduled during an execution.
*/ export interface _ActivityScheduledEventDetails { /** *The Amazon Resource Name (ARN) of the scheduled activity.
*/ resource: string; /** *The JSON data input to the activity task.
*/ input?: string; /** *The maximum allowed duration of the activity task.
*/ timeoutInSeconds?: number; /** *The maximum allowed duration between two heartbeats for the activity task.
*/ heartbeatInSeconds?: number; } export declare type _UnmarshalledActivityScheduledEventDetails = _ActivityScheduledEventDetails;