/** *
Contains details about an activity.
*/ export interface _ActivityListItem { /** *The Amazon Resource Name (ARN) that identifies the activity.
*/ activityArn: string; /** *The name of the activity.
A name must not contain:
whitespace
brackets < > { } [ ]
wildcard characters ? *
special characters " # % \ ^ | ~ ` $ & , ; : /
control characters (U+0000-001F, U+007F-009F)
The date the activity is created.
*/ creationDate: Date | string | number; } export interface _UnmarshalledActivityListItem extends _ActivityListItem { /** *The date the activity is created.
*/ creationDate: Date; }