package aws-ec2

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Types.InstanceNetworkInterfaceSource

Sourcetype 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;
}
Sourceval make : ?association:??? -> ?attachment:??? -> ?description:??? -> ?groups:??? -> ?ipv6_addresses:??? -> ?mac_address:??? -> ?network_interface_id:??? -> ?owner_id:??? -> ?private_dns_name:??? -> ?private_ip_address:??? -> ?private_ip_addresses:??? -> ?source_dest_check:??? -> ?status:??? -> ?subnet_id:??? -> ?vpc_id:??? -> ?interface_type:??? -> unit -> t
Sourceval parse : Ezxmlm.nodes -> t option
Sourceval to_query : t -> Aws.Query.t
Sourceval to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
Sourceval of_json : Aws.Json.t -> t