package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. description : Aws.BaseTypes.String.t option;
  2. dry_run : Aws.BaseTypes.Boolean.t option;
  3. groups : SecurityGroupIdStringList.t;
  4. ipv6_address_count : Aws.BaseTypes.Integer.t option;
  5. ipv6_addresses : InstanceIpv6AddressList.t;
  6. private_ip_address : Aws.BaseTypes.String.t option;
  7. private_ip_addresses : PrivateIpAddressSpecificationList.t;
  8. secondary_private_ip_address_count : Aws.BaseTypes.Integer.t option;
  9. interface_type : NetworkInterfaceCreationType.t option;
  10. subnet_id : Aws.BaseTypes.String.t;
  11. tag_specifications : TagSpecificationList.t;
}
val make : ?description:Aws.BaseTypes.String.t -> ?dry_run:Aws.BaseTypes.Boolean.t -> ?groups:SecurityGroupIdStringList.t -> ?ipv6_address_count:Aws.BaseTypes.Integer.t -> ?ipv6_addresses:InstanceIpv6AddressList.t -> ?private_ip_address:Aws.BaseTypes.String.t -> ?private_ip_addresses:PrivateIpAddressSpecificationList.t -> ?secondary_private_ip_address_count:Aws.BaseTypes.Integer.t -> ?interface_type:NetworkInterfaceCreationType.t -> subnet_id:Aws.BaseTypes.String.t -> ?tag_specifications:TagSpecificationList.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