Class CfnWorkgroup.ConfigParameterProperty
A array of parameters to set for more control over a serverless database.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.RedshiftServerless
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnWorkgroup.ConfigParameterProperty : CfnWorkgroup.IConfigParameterProperty
Syntax (vb)
Public Class CfnWorkgroup.ConfigParameterProperty Implements CfnWorkgroup.IConfigParameterProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RedshiftServerless;
var configParameterProperty = new ConfigParameterProperty {
ParameterKey = "parameterKey",
ParameterValue = "parameterValue"
};
Synopsis
Constructors
ConfigParameterProperty() | A array of parameters to set for more control over a serverless database. |
Properties
ParameterKey | The key of the parameter. |
ParameterValue | The value of the parameter to set. |
Constructors
ConfigParameterProperty()
A array of parameters to set for more control over a serverless database.
public ConfigParameterProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RedshiftServerless;
var configParameterProperty = new ConfigParameterProperty {
ParameterKey = "parameterKey",
ParameterValue = "parameterValue"
};
Properties
ParameterKey
The key of the parameter.
public string? ParameterKey { get; set; }
Property Value
Remarks
The options are auto_mv
, datestyle
, enable_case_sensitive_identifier
, enable_user_activity_logging
, query_group
, search_path
, require_ssl
, use_fips_ssl
, 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 .
ParameterValue
The value of the parameter to set.
public string? ParameterValue { get; set; }