Module Values_0.InstanceSecondaryInterfaceSource

Describes a secondary interface attached to an instance.

Sourcetype nonrec t = {
  1. attachment : InstanceSecondaryInterfaceAttachment.t option;
    (*

    The attachment information for the secondary interface.

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

    The MAC address of the secondary interface.

    *)
  3. secondaryInterfaceId : SecondaryInterfaceId.t option;
    (*

    The ID of the secondary interface.

    *)
  4. ownerId : String_.t option;
    (*

    The Amazon Web Services account ID of the owner of the secondary interface.

    *)
  5. privateIpAddresses : InstanceSecondaryInterfacePrivateIpAddressList.t option;
    (*

    The private IPv4 addresses associated with the secondary interface.

    *)
  6. sourceDestCheck : Boolean.t option;
    (*

    Indicates whether source/destination checking is enabled.

    *)
  7. status : SecondaryInterfaceStatus.t option;
    (*

    The status of the secondary interface.

    *)
  8. secondarySubnetId : SecondarySubnetId.t option;
    (*

    The ID of the secondary subnet.

    *)
  9. secondaryNetworkId : SecondaryNetworkId.t option;
    (*

    The ID of the secondary network.

    *)
  10. interfaceType : SecondaryInterfaceType.t option;
    (*

    The type of secondary interface.

    *)
}
Sourceval make : ?attachment:??? -> ?macAddress:??? -> ?secondaryInterfaceId:??? -> ?ownerId:??? -> ?privateIpAddresses:??? -> ?sourceDestCheck:??? -> ?status:??? -> ?secondarySubnetId:??? -> ?secondaryNetworkId:??? -> ?interfaceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of Integer.t | `String of String_.t | `Timestamp of MillisecondDateTime.t ]) list ]) 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