Module Values.PersonasSummarySource

Summary information for users or groups in your IAM Identity Center identity source. This applies to users and groups with specific permissions that define their level of access to your Amazon Kendra experience. You can create an Amazon Kendra experience such as a search application. For more information on creating a search application experience, see Building a search experience with no code.

Sourcetype nonrec t = {
  1. entityId : EntityId.t option;
    (*

    The identifier of a user or group in your IAM Identity Center identity source. For example, a user ID could be an email.

    *)
  2. persona : Persona.t option;
    (*

    The persona that defines the specific permissions of the user or group in your IAM Identity Center identity source. The available personas or access roles are Owner and Viewer. For more information on these personas, see Providing access to your search page.

    *)
  3. createdAt : Timestamp.t option;
    (*

    The Unix timestamp when the summary information was created.

    *)
  4. updatedAt : Timestamp.t option;
    (*

    The Unix timestamp when the summary information was last updated.

    *)
}
Sourceval make : ?entityId:??? -> ?persona:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of EntityId.t | `Timestamp of Timestamp.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