/** *
Contains details about the state machine.
*/ export interface _StateMachineListItem { /** *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 date the state machine is created.
*/ creationDate: Date | string | number; } export interface _UnmarshalledStateMachineListItem extends _StateMachineListItem { /** *The date the state machine is created.
*/ creationDate: Date; }