Module Values_1.SecondaryInterfaceAttachmentSource

Describes the attachment of a secondary interface to an instance.

Sourcetype nonrec t = {
  1. attachmentId : Values_0.String_.t option;
    (*

    The ID of the attachment.

    *)
  2. attachTime : Values_0.MillisecondDateTime.t option;
    (*

    The timestamp when the attachment was created.

    *)
  3. deleteOnTermination : Values_0.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 : Values_0.Integer.t option;
    (*

    The device index of the secondary interface.

    *)
  5. instanceId : Values_0.String_.t option;
    (*

    The ID of the instance to which the secondary interface is attached.

    *)
  6. instanceOwnerId : Values_0.String_.t option;
    (*

    The Amazon Web Services account ID of the owner of the instance.

    *)
  7. networkCardIndex : Values_0.Integer.t option;
    (*

    The index of the network card.

    *)
  8. status : Values_0.AttachmentStatus.t option;
    (*

    The attachment state.

    *)
}
Sourceval make : ?attachmentId:??? -> ?attachTime:??? -> ?deleteOnTermination:??? -> ?deviceIndex:??? -> ?instanceId:??? -> ?instanceOwnerId:??? -> ?networkCardIndex:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Enum of string | `Integer of Values_0.Integer.t | `String of Values_0.String_.t | `Timestamp of Values_0.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