Module Values.CreateCollectionGroupDetailSource

Details about the created collection group.

Sourcetype nonrec t = {
  1. id : CollectionGroupId.t option;
    (*

    The unique identifier of the collection group.

    *)
  2. arn : String_.t option;
    (*

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

    *)
  3. name : CollectionGroupName.t option;
    (*

    The name of the collection group.

    *)
  4. standbyReplicas : StandbyReplicas.t option;
    (*

    Indicates whether standby replicas are used for the collection group.

    *)
  5. description : String_.t option;
    (*

    The description of the collection group.

    *)
  6. tags : Tags.t option;
    (*

    A map of key-value pairs associated with the collection group.

    *)
  7. createdDate : Long.t option;
    (*

    The Epoch time when the collection group was created.

    *)
  8. capacityLimits : CollectionGroupCapacityLimits.t option;
    (*

    The capacity limits for the collection group, in OpenSearch Compute Units (OCUs).

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?standbyReplicas:??? -> ?description:??? -> ?tags:??? -> ?createdDate:??? -> ?capacityLimits:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `Long of Long.t | `String of CollectionGroupId.t | `Structure of (string * [> `Float of CollectionGroupIndexingCapacityValue.t ]) 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