package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. auto_placement : AutoPlacement.t option;
  2. availability_zone : Aws.BaseTypes.String.t;
  3. client_token : Aws.BaseTypes.String.t option;
  4. instance_type : Aws.BaseTypes.String.t option;
  5. instance_family : Aws.BaseTypes.String.t option;
  6. quantity : Aws.BaseTypes.Integer.t;
  7. tag_specifications : TagSpecificationList.t;
  8. host_recovery : HostRecovery.t option;
}
val make : ?auto_placement:AutoPlacement.t -> availability_zone:Aws.BaseTypes.String.t -> ?client_token:Aws.BaseTypes.String.t -> ?instance_type:Aws.BaseTypes.String.t -> ?instance_family:Aws.BaseTypes.String.t -> quantity:Aws.BaseTypes.Integer.t -> ?tag_specifications:TagSpecificationList.t -> ?host_recovery:HostRecovery.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