package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. availability_zone_group : Aws.BaseTypes.String.t option;
  2. block_duration_minutes : Aws.BaseTypes.Integer.t option;
  3. client_token : Aws.BaseTypes.String.t option;
  4. dry_run : Aws.BaseTypes.Boolean.t option;
  5. instance_count : Aws.BaseTypes.Integer.t option;
  6. launch_group : Aws.BaseTypes.String.t option;
  7. launch_specification : RequestSpotLaunchSpecification.t option;
  8. spot_price : Aws.BaseTypes.String.t option;
  9. type_ : SpotInstanceType.t option;
  10. valid_from : Aws.BaseTypes.DateTime.t option;
  11. valid_until : Aws.BaseTypes.DateTime.t option;
  12. tag_specifications : TagSpecificationList.t;
  13. instance_interruption_behavior : InstanceInterruptionBehavior.t option;
}
val make : ?availability_zone_group:Aws.BaseTypes.String.t -> ?block_duration_minutes:Aws.BaseTypes.Integer.t -> ?client_token:Aws.BaseTypes.String.t -> ?dry_run:Aws.BaseTypes.Boolean.t -> ?instance_count:Aws.BaseTypes.Integer.t -> ?launch_group:Aws.BaseTypes.String.t -> ?launch_specification:RequestSpotLaunchSpecification.t -> ?spot_price:Aws.BaseTypes.String.t -> ?type_:SpotInstanceType.t -> ?valid_from:Aws.BaseTypes.DateTime.t -> ?valid_until:Aws.BaseTypes.DateTime.t -> ?tag_specifications:TagSpecificationList.t -> ?instance_interruption_behavior:InstanceInterruptionBehavior.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