/** *
Contains details about the start of the execution.
*/ export interface _ExecutionStartedEventDetails { /** *The JSON data input to the execution.
*/ input?: string; /** *The Amazon Resource Name (ARN) of the IAM role used for executing AWS Lambda tasks.
*/ roleArn?: string; } export declare type _UnmarshalledExecutionStartedEventDetails = _ExecutionStartedEventDetails;