import { _KeyValuePair, _UnmarshalledKeyValuePair } from "./_KeyValuePair"; /** *
An object representing a container instance or task attachment.
*/ export interface _Attachment { /** *The unique identifier for the attachment.
*/ id?: string; /** *The type of the attachment, such as ElasticNetworkInterface.
The status of the attachment. Valid values are PRECREATED, CREATED, ATTACHING, ATTACHED, DETACHING, DETACHED, and DELETED.
Details of the attachment. For elastic network interfaces, this includes the network interface ID, the MAC address, the subnet ID, and the private IPv4 address.
*/ details?: Array<_KeyValuePair> | Iterable<_KeyValuePair>; } export interface _UnmarshalledAttachment extends _Attachment { /** *Details of the attachment. For elastic network interfaces, this includes the network interface ID, the MAC address, the subnet ID, and the private IPv4 address.
*/ details?: Array<_UnmarshalledKeyValuePair>; }