Class: Aws::RedshiftServerless::Types::ConfigParameter

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-redshiftserverless/types.rb

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#parameter_keyString

The key of the parameter. The options are ‘auto_mv`, `datestyle`, `enable_case_sensitivity_identifier`, `enable_user_activity_logging`, `query_group`, `search_path`, and query monitoring metrics that let you define performance boundaries. For more information about query monitoring rules and available metrics, see [Query monitoring metrics for Amazon Redshift Serverless].

[1]: docs.aws.amazon.com/redshift/latest/dg/cm-c-wlm-query-monitoring-rules.html#cm-c-wlm-query-monitoring-metrics-serverless

Returns:

  • (String)


53
54
55
56
57
58
# File 'lib/aws-sdk-redshiftserverless/types.rb', line 53

class ConfigParameter < Struct.new(
  :parameter_key,
  :parameter_value)
  SENSITIVE = []
  include Aws::Structure
end

#parameter_valueString

The value of the parameter to set.

Returns:

  • (String)


53
54
55
56
57
58
# File 'lib/aws-sdk-redshiftserverless/types.rb', line 53

class ConfigParameter < Struct.new(
  :parameter_key,
  :parameter_value)
  SENSITIVE = []
  include Aws::Structure
end