/** *

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:

*/ name: string; /** *

The date the activity is created.

*/ creationDate: Date | string | number; } export interface _UnmarshalledActivityListItem extends _ActivityListItem { /** *

The date the activity is created.

*/ creationDate: Date; }