Module Values_0.InstanceSecondaryInterfaceAttachmentSource

Describes the attachment of a secondary interface to an instance.

Sourcetype nonrec t = {
  1. attachTime : MillisecondDateTime.t option;
    (*

    The timestamp when the attachment was created.

    *)
  2. attachmentId : String_.t option;
    (*

    The ID of the attachment.

    *)
  3. deleteOnTermination : Boolean.t option;
    (*

    Indicates whether the secondary interface is deleted when the instance is terminated. The only supported value for this field is true.

    *)
  4. deviceIndex : Integer.t option;
    (*

    The device index of the secondary interface.

    *)
  5. status : AttachmentStatus.t option;
    (*

    The attachment state.

    *)
  6. networkCardIndex : Integer.t option;
    (*

    The index of the network card.

    *)
}
Sourceval make : ?attachTime:??? -> ?attachmentId:??? -> ?deleteOnTermination:??? -> ?deviceIndex:??? -> ?status:??? -> ?networkCardIndex:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of Integer.t | `String of String_.t | `Timestamp of MillisecondDateTime.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t