ClusterParameterGroup
Source:
src/AWS/Redshift/ClusterParameterGroup.ts
An Amazon Redshift cluster parameter group — a named set of database parameters applied to provisioned Redshift clusters.
Parameter groups are free and provision instantly. A Cluster
references one by name via clusterParameterGroupName; parameter changes
take effect after the cluster reboots.
Creating a Parameter Group
Section titled “Creating a Parameter Group”Default Parameter Group
const params = yield* Redshift.ClusterParameterGroup("WarehouseParams", { family: "redshift-2.0",});Overriding Parameters
const params = yield* Redshift.ClusterParameterGroup("WarehouseParams", { family: "redshift-2.0", parameters: { enable_user_activity_logging: "true", statement_timeout: "60000", },});