Module Values.GroupOrderingIdSummarySource

Summary information on the processing of PUT and DELETE actions for mapping users to their groups.

Sourcetype nonrec t = {
  1. status : PrincipalMappingStatus.t option;
    (*

    The current processing status of actions for mapping users to their groups. The status can be either PROCESSING, SUCCEEDED, DELETING, DELETED, or FAILED.

    *)
  2. lastUpdatedAt : Timestamp.t option;
    (*

    The Unix timestamp when an action was last updated. An action can be a PUT or DELETE action for mapping users to their groups.

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

    The Unix timestamp when an action was received by Amazon Kendra. An action can be a PUT or DELETE action for mapping users to their groups.

    *)
  4. orderingId : PrincipalOrderingId.t option;
    (*

    The order in which actions should complete processing. An action can be a PUT or DELETE action for mapping users to their groups.

    *)
  5. failureReason : FailureReason.t option;
    (*

    The reason an action could not be processed. An action can be a PUT or DELETE action for mapping users to their groups.

    *)
}
Sourceval make : ?status:??? -> ?lastUpdatedAt:??? -> ?receivedAt:??? -> ?orderingId:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of PrincipalOrderingId.t | `String of FailureReason.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