import * as __aws_sdk_types from "@aws-sdk/types"; /** * DescribeStateMachineOutput shape */ export interface DescribeStateMachineOutput extends __aws_sdk_types.MetadataBearer { /** *
The Amazon Resource Name (ARN) that identifies the state machine.
*/ stateMachineArn: string; /** *The name of the state machine.
A name must not contain:
whitespace
brackets < > { } [ ]
wildcard characters ? *
special characters " # % \ ^ | ~ ` $ & , ; : /
control characters (U+0000-001F, U+007F-009F)
The current status of the state machine.
*/ status?: "ACTIVE" | "DELETING" | 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 used when creating this state machine. (The IAM role maintains security by granting Step Functions access to AWS resources.)
*/ roleArn: string; /** *The date the state machine is created.
*/ creationDate: 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; }