Module Values.AwsEc2NetworkInterfaceDetailsSource

Details about the network interface

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

    The network interface attachment.

    *)
  2. networkInterfaceId : NonEmptyString.t option;
    (*

    The ID of the network interface.

    *)
  3. securityGroups : AwsEc2NetworkInterfaceSecurityGroupList.t option;
    (*

    Security groups for the network interface.

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

    Indicates whether traffic to or from the instance is validated.

    *)
  5. ipV6Addresses : AwsEc2NetworkInterfaceIpV6AddressList.t option;
    (*

    The IPv6 addresses associated with the network interface.

    *)
  6. privateIpAddresses : AwsEc2NetworkInterfacePrivateIpAddressList.t option;
    (*

    The private IPv4 addresses associated with the network interface.

    *)
  7. publicDnsName : NonEmptyString.t option;
    (*

    The public DNS name of the network interface.

    *)
  8. publicIp : NonEmptyString.t option;
    (*

    The address of the Elastic IP address bound to the network interface.

    *)
}
Sourceval make : ?attachment:??? -> ?networkInterfaceId:??? -> ?securityGroups:??? -> ?sourceDestCheck:??? -> ?ipV6Addresses:??? -> ?privateIpAddresses:??? -> ?publicDnsName:??? -> ?publicIp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of NonEmptyString.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