Module Values_0.CreateUserHierarchyGroupRequestSource

Creates a new user hierarchy group.

Sourcetype nonrec t = {
  1. name : HierarchyGroupName.t;
    (*

    The name of the user hierarchy group. Must not be more than 100 characters.

    *)
  2. parentGroupId : HierarchyGroupId.t option;
    (*

    The identifier for the parent hierarchy group. The user hierarchy is created at level one if the parent group ID is null.

    *)
  3. instanceId : InstanceId.t;
    (*

    The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

    *)
  4. tags : TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.

    *)
}
Sourceval context_ : string
Sourceval make : ?parentGroupId:??? -> ?tags:??? -> name:HierarchyGroupName.t -> instanceId:InstanceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of HierarchyGroupName.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