Module Values.ManagedQueryResultsConfigurationUpdatesSource

Updates the configuration for managed query results.

Sourcetype nonrec t = {
  1. enabled : BoxedBoolean.t option;
    (*

    If set to true, specifies that Athena manages query results in Athena owned storage.

    *)
  2. encryptionConfiguration : ManagedQueryResultsEncryptionConfiguration.t option;
    (*

    If you encrypt query and calculation results in Athena owned storage, this field indicates the encryption option (for example, SSE_KMS or CSE_KMS) and key information.

    *)
  3. removeEncryptionConfiguration : BoxedBoolean.t option;
    (*

    If set to true, it removes workgroup from Athena owned storage. The existing query results are cleaned up after 24hrs. You must provide query results in location specified under ResultConfiguration$OutputLocation.

    *)
}
Sourceval make : ?enabled:??? -> ?encryptionConfiguration:??? -> ?removeEncryptionConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BoxedBoolean.t | `Structure of (string * [> `String of KmsKey.t ]) 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