Module Values.Ec2NetworkInterfaceSource

Contains information about the elastic network interface of the Amazon EC2 instance.

Sourcetype nonrec t = {
  1. ipv6Addresses : Ipv6Addresses.t option;
    (*

    A list of IPv6 addresses for the Amazon EC2 instance.

    *)
  2. privateIpAddresses : PrivateIpAddresses.t option;
    (*

    Other private IP address information of the Amazon EC2 instance.

    *)
  3. publicIp : String_.t option;
    (*

    The public IP address of the Amazon EC2 instance.

    *)
  4. securityGroups : SecurityGroups.t option;
    (*

    The security groups associated with the Amazon EC2 instance.

    *)
  5. subNetId : String_.t option;
    (*

    The subnet ID of the Amazon EC2 instance.

    *)
  6. vpcId : String_.t option;
    (*

    The VPC ID of the Amazon EC2 instance.

    *)
}
Sourceval make : ?ipv6Addresses:??? -> ?privateIpAddresses:??? -> ?publicIp:??? -> ?securityGroups:??? -> ?subNetId:??? -> ?vpcId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.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