Module Values_2.PlacementGroupSource

Describes a placement group.

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

    The name of the placement group.

    *)
  2. state : Values_1.PlacementGroupState.t option;
    (*

    The state of the placement group.

    *)
  3. strategy : Values_1.PlacementStrategy.t option;
    (*

    The placement strategy.

    *)
  4. partitionCount : Values_0.Integer.t option;
    (*

    The number of partitions. Valid only if strategy is set to partition.

    *)
  5. groupId : Values_0.String_.t option;
    (*

    The ID of the placement group.

    *)
  6. tags : Values_0.TagList.t option;
    (*

    Any tags applied to the placement group.

    *)
  7. groupArn : Values_0.String_.t option;
    (*

    The Amazon Resource Name (ARN) of the placement group.

    *)
  8. spreadLevel : Values_1.SpreadLevel.t option;
    (*

    The spread level for the placement group. Only Outpost placement groups can be spread across hosts.

    *)
  9. linkedGroupId : Values_0.PlacementGroupId.t option;
    (*

    Reserved for future use.

    *)
  10. operator : Values_0.OperatorResponse.t option;
    (*

    The service provider that manages the Placement Group.

    *)
}
Sourceval make : ?groupName:??? -> ?state:??? -> ?strategy:??? -> ?partitionCount:??? -> ?groupId:??? -> ?tags:??? -> ?groupArn:??? -> ?spreadLevel:??? -> ?linkedGroupId:??? -> ?operator:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.Integer.t | `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_0.String_.t | `Structure of (string * [> `Boolean of bool | `String of string ]) list ]) 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