Module Values.AwsAthenaWorkGroupDetailsSource

Provides information about an Amazon Athena workgroup.

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

    The workgroup name.

    *)
  2. description : NonEmptyString.t option;
    (*

    The workgroup description.

    *)
  3. state : NonEmptyString.t option;
    (*

    Whether the workgroup is enabled or disabled.

    *)
  4. configuration : AwsAthenaWorkGroupConfigurationDetails.t option;
    (*

    The configuration of the workgroup, which includes the location in Amazon Simple Storage Service (Amazon S3) where query results are stored, the encryption option, if any, used for query results, whether Amazon CloudWatch metrics are enabled for the workgroup, and the limit for the amount of bytes scanned (cutoff) per query, if it is specified.

    *)
}
Sourceval make : ?name:??? -> ?description:??? -> ?state:??? -> ?configuration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `String of NonEmptyString.t ]) list ]) list ]) list ]) 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