package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. instance_id : Aws.BaseTypes.String.t option;
  2. public_ip : Aws.BaseTypes.String.t option;
  3. allocation_id : Aws.BaseTypes.String.t option;
  4. association_id : Aws.BaseTypes.String.t option;
  5. domain : DomainType.t option;
  6. network_interface_id : Aws.BaseTypes.String.t option;
  7. network_interface_owner_id : Aws.BaseTypes.String.t option;
  8. private_ip_address : Aws.BaseTypes.String.t option;
  9. tags : TagList.t;
  10. public_ipv4_pool : Aws.BaseTypes.String.t option;
  11. network_border_group : Aws.BaseTypes.String.t option;
  12. customer_owned_ip : Aws.BaseTypes.String.t option;
  13. customer_owned_ipv4_pool : Aws.BaseTypes.String.t option;
  14. carrier_ip : Aws.BaseTypes.String.t option;
}
val make : ?instance_id:Aws.BaseTypes.String.t -> ?public_ip:Aws.BaseTypes.String.t -> ?allocation_id:Aws.BaseTypes.String.t -> ?association_id:Aws.BaseTypes.String.t -> ?domain:DomainType.t -> ?network_interface_id:Aws.BaseTypes.String.t -> ?network_interface_owner_id:Aws.BaseTypes.String.t -> ?private_ip_address:Aws.BaseTypes.String.t -> ?tags:TagList.t -> ?public_ipv4_pool:Aws.BaseTypes.String.t -> ?network_border_group:Aws.BaseTypes.String.t -> ?customer_owned_ip:Aws.BaseTypes.String.t -> ?customer_owned_ipv4_pool:Aws.BaseTypes.String.t -> ?carrier_ip: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