Module Values.AwsEc2LaunchTemplateDataPlacementDetailsSource

Provides details about the placement of an Amazon EC2 instance.

Sourcetype nonrec t = {
  1. affinity : NonEmptyString.t option;
    (*

    The affinity setting for an instance on an EC2 Dedicated Host.

    *)
  2. availabilityZone : NonEmptyString.t option;
    (*

    The Availability Zone for the instance.

    *)
  3. groupName : NonEmptyString.t option;
    (*

    The name of the placement group for the instance.

    *)
  4. hostId : NonEmptyString.t option;
    (*

    The ID of the Dedicated Host for the instance.

    *)
  5. hostResourceGroupArn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of the host resource group in which to launch the instances.

    *)
  6. partitionNumber : Integer.t option;
    (*

    The number of the partition the instance should launch in.

    *)
  7. spreadDomain : NonEmptyString.t option;
    (*

    Reserved for future use.

    *)
  8. tenancy : NonEmptyString.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.

    *)
}
Sourceval make : ?affinity:??? -> ?availabilityZone:??? -> ?groupName:??? -> ?hostId:??? -> ?hostResourceGroupArn:??? -> ?partitionNumber:??? -> ?spreadDomain:??? -> ?tenancy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of NonEmptyString.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