Module Values.ConfigParameterSource

An array of key-value pairs to set for advanced control over Amazon Redshift Serverless.

Sourcetype nonrec t = {
  1. parameterKey : ParameterKey.t option;
    (*

    The key of the parameter. The options are auto_mv, datestyle, enable_case_sensitive_identifier, enable_user_activity_logging, query_group, search_path, require_ssl, use_fips_ssl, and either wlm_json_configuration or query monitoring metrics that let you define performance boundaries. You can either specify individual query monitoring metrics (such as max_scan_row_count, max_query_execution_time) or use wlm_json_configuration to define query queues with rules, but not both. For more information about query monitoring rules and available metrics, see Query monitoring metrics for Amazon Redshift Serverless.

    *)
  2. parameterValue : ParameterValue.t option;
    (*

    The value of the parameter to set.

    *)
}
Sourceval make : ?parameterKey:??? -> ?parameterValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ParameterKey.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