Module Values.NetworkInterfaceSource

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

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

    A list of IPv6 addresses for the EC2 instance.

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

    The ID of the network interface.

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

    The private DNS name of the EC2 instance.

    *)
  4. privateIpAddress : SensitiveString.t option;
    (*

    The private IP address of the EC2 instance.

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

    Other private IP address information of the EC2 instance.

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

    The public DNS name of the EC2 instance.

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

    The public IP address of the EC2 instance.

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

    The security groups associated with the EC2 instance.

    *)
  9. subnetId : String_.t option;
    (*

    The subnet ID of the EC2 instance.

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

    The VPC ID of the EC2 instance.

    *)
}
Sourceval make : ?ipv6Addresses:??? -> ?networkInterfaceId:??? -> ?privateDnsName:??? -> ?privateIpAddress:??? -> ?privateIpAddresses:??? -> ?publicDnsName:??? -> ?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