package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. associate_carrier_ip_address : Aws.BaseTypes.Boolean.t option;
  2. associate_public_ip_address : Aws.BaseTypes.Boolean.t option;
  3. delete_on_termination : Aws.BaseTypes.Boolean.t option;
  4. description : Aws.BaseTypes.String.t option;
  5. device_index : Aws.BaseTypes.Integer.t option;
  6. groups : SecurityGroupIdStringList.t;
  7. interface_type : Aws.BaseTypes.String.t option;
  8. ipv6_address_count : Aws.BaseTypes.Integer.t option;
  9. ipv6_addresses : InstanceIpv6AddressListRequest.t;
  10. network_interface_id : Aws.BaseTypes.String.t option;
  11. private_ip_address : Aws.BaseTypes.String.t option;
  12. private_ip_addresses : PrivateIpAddressSpecificationList.t;
  13. secondary_private_ip_address_count : Aws.BaseTypes.Integer.t option;
  14. subnet_id : Aws.BaseTypes.String.t option;
  15. network_card_index : Aws.BaseTypes.Integer.t option;
}
val make : ?associate_carrier_ip_address:Aws.BaseTypes.Boolean.t -> ?associate_public_ip_address:Aws.BaseTypes.Boolean.t -> ?delete_on_termination:Aws.BaseTypes.Boolean.t -> ?description:Aws.BaseTypes.String.t -> ?device_index:Aws.BaseTypes.Integer.t -> ?groups:SecurityGroupIdStringList.t -> ?interface_type:Aws.BaseTypes.String.t -> ?ipv6_address_count:Aws.BaseTypes.Integer.t -> ?ipv6_addresses:InstanceIpv6AddressListRequest.t -> ?network_interface_id:Aws.BaseTypes.String.t -> ?private_ip_address:Aws.BaseTypes.String.t -> ?private_ip_addresses:PrivateIpAddressSpecificationList.t -> ?secondary_private_ip_address_count:Aws.BaseTypes.Integer.t -> ?subnet_id:Aws.BaseTypes.String.t -> ?network_card_index:Aws.BaseTypes.Integer.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