/** *

An object representing a change in state for a task attachment.

*/ export interface _AttachmentStateChange { /** *

The Amazon Resource Name (ARN) of the attachment.

*/ attachmentArn: string; /** *

The status of the attachment.

*/ status: string; } export declare type _UnmarshalledAttachmentStateChange = _AttachmentStateChange;