Module Types.InstanceNetworkInterface

type t = {
association : InstanceNetworkInterfaceAssociation.t option;
attachment : InstanceNetworkInterfaceAttachment.t option;
description : Aws.BaseTypes.String.t option;
groups : GroupIdentifierList.t;
ipv6_addresses : InstanceIpv6AddressList.t;
mac_address : Aws.BaseTypes.String.t option;
network_interface_id : Aws.BaseTypes.String.t option;
owner_id : Aws.BaseTypes.String.t option;
private_dns_name : Aws.BaseTypes.String.t option;
private_ip_address : Aws.BaseTypes.String.t option;
private_ip_addresses : InstancePrivateIpAddressList.t;
source_dest_check : Aws.BaseTypes.Boolean.t option;
status : NetworkInterfaceStatus.t option;
subnet_id : Aws.BaseTypes.String.t option;
vpc_id : Aws.BaseTypes.String.t option;
interface_type : Aws.BaseTypes.String.t option;
}
val make : ?⁠association:InstanceNetworkInterfaceAssociation.t -> ?⁠attachment:InstanceNetworkInterfaceAttachment.t -> ?⁠description:Aws.BaseTypes.String.t -> ?⁠groups:GroupIdentifierList.t -> ?⁠ipv6_addresses:InstanceIpv6AddressList.t -> ?⁠mac_address:Aws.BaseTypes.String.t -> ?⁠network_interface_id:Aws.BaseTypes.String.t -> ?⁠owner_id:Aws.BaseTypes.String.t -> ?⁠private_dns_name:Aws.BaseTypes.String.t -> ?⁠private_ip_address:Aws.BaseTypes.String.t -> ?⁠private_ip_addresses:InstancePrivateIpAddressList.t -> ?⁠source_dest_check:Aws.BaseTypes.Boolean.t -> ?⁠status:NetworkInterfaceStatus.t -> ?⁠subnet_id:Aws.BaseTypes.String.t -> ?⁠vpc_id:Aws.BaseTypes.String.t -> ?⁠interface_type:Aws.BaseTypes.String.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t