Module Values_1.GroupSource

A group in Quick Sight consists of a set of users. You can use groups to make it easier to manage access and security.

Sourcetype nonrec t = {
  1. arn : Values_0.Arn.t option;
    (*

    The Amazon Resource Name (ARN) for the group.

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

    The name of the group.

    *)
  3. description : GroupDescription.t option;
    (*

    The group description.

    *)
  4. principalId : Values_0.String_.t option;
    (*

    The principal ID of the group.

    *)
}
Sourceval make : ?arn:??? -> ?groupName:??? -> ?description:??? -> ?principalId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.Arn.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