package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. association : InstanceNetworkInterfaceAssociation.t option;
  2. attachment : InstanceNetworkInterfaceAttachment.t option;
  3. description : Aws.BaseTypes.String.t option;
  4. groups : GroupIdentifierList.t;
  5. ipv6_addresses : InstanceIpv6AddressList.t;
  6. mac_address : Aws.BaseTypes.String.t option;
  7. network_interface_id : Aws.BaseTypes.String.t option;
  8. owner_id : Aws.BaseTypes.String.t option;
  9. private_dns_name : Aws.BaseTypes.String.t option;
  10. private_ip_address : Aws.BaseTypes.String.t option;
  11. private_ip_addresses : InstancePrivateIpAddressList.t;
  12. source_dest_check : Aws.BaseTypes.Boolean.t option;
  13. status : NetworkInterfaceStatus.t option;
  14. subnet_id : Aws.BaseTypes.String.t option;
  15. vpc_id : Aws.BaseTypes.String.t option;
  16. 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