Module Values.WorkGroupSummarySource

The summary information for the workgroup, which includes its name, state, description, and the date and time it was created.

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

    The name of the workgroup.

    *)
  2. state : WorkGroupState.t option;
    (*

    The state of the workgroup.

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

    The workgroup description.

    *)
  4. creationTime : Date.t option;
    (*

    The workgroup creation date and time.

    *)
  5. engineVersion : EngineVersion.t option;
    (*

    The engine version setting for all queries on the workgroup. Queries on the AmazonAthenaPreviewFunctionality workgroup run on the preview engine regardless of this setting.

    *)
  6. identityCenterApplicationArn : IdentityCenterApplicationArn.t option;
    (*

    The ARN of the IAM Identity Center enabled application associated with the workgroup.

    *)
}
Sourceval make : ?name:??? -> ?state:??? -> ?description:??? -> ?creationTime:??? -> ?engineVersion:??? -> ?identityCenterApplicationArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of WorkGroupName.t | `Structure of (string * [> `String of NameString.t ]) list | `Timestamp of Date.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