Module Values_0.SpotPlacementSource

Describes Spot Instance placement.

Sourcetype nonrec t = {
  1. availabilityZone : String_.t option;
    (*

    The Availability Zone. For example, us-east-2a. [Spot Fleet only] To specify multiple Availability Zones, separate them using commas; for example, "us-east-2a, us-east-2b". Either AvailabilityZone or AvailabilityZoneId must be specified in the request, but not both.

    *)
  2. groupName : PlacementGroupName.t option;
    (*

    The name of the placement group.

    *)
  3. tenancy : Tenancy.t option;
    (*

    The tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of dedicated runs on single-tenant hardware. The host tenancy is not supported for Spot Instances.

    *)
  4. availabilityZoneId : String_.t option;
    (*

    The ID of the Availability Zone. For example, use2-az1. [Spot Fleet only] To specify multiple Availability Zones, separate them using commas; for example, "use2-az1, use2-bz1". Either AvailabilityZone or AvailabilityZoneId must be specified in the request, but not both.

    *)
}
Sourceval make : ?availabilityZone:??? -> ?groupName:??? -> ?tenancy:??? -> ?availabilityZoneId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t