import * as __aws_sdk_types from "@aws-sdk/types"; /** * DescribeStateMachineForExecutionOutput shape */ export interface DescribeStateMachineForExecutionOutput extends __aws_sdk_types.MetadataBearer { /** *

The Amazon Resource Name (ARN) of the state machine associated with the execution.

*/ stateMachineArn: string; /** *

The name of the state machine associated with the execution.

*/ name: string; /** *

The Amazon States Language definition of the state machine. See Amazon States Language.

*/ definition: string; /** *

The Amazon Resource Name (ARN) of the IAM role of the State Machine for the execution.

*/ roleArn: string; /** *

The date and time the state machine associated with an execution was updated. For a newly created state machine, this is the creation date.

*/ updateDate: Date; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }