Module Values.GroupStatusDetailSource

Provides the details of a group's status.

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

    The status of a group.

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

    The Unix timestamp when the Amazon Q Business application was last updated.

    *)
  3. errorDetail : ErrorDetail.t option;
    (*

    The details of an error associated a group status.

    *)
}
Sourceval make : ?status:??? -> ?lastUpdatedAt:??? -> ?errorDetail:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `String of ErrorMessage.t ]) list | `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