DBClusterParameterGroup
Source:
src/AWS/Neptune/DBClusterParameterGroup.ts
An Amazon Neptune DB cluster parameter group — a named set of engine
configuration parameters (query timeout, audit logging, …) that can be
attached to one or more Neptune DBClusters.
Creating a Parameter Group
Section titled “Creating a Parameter Group”const params = yield* DBClusterParameterGroup("Params", { family: "neptune1.4", parameters: { neptune_query_timeout: "120000", },});Attaching to a Cluster
Section titled “Attaching to a Cluster”const cluster = yield* DBCluster("Graph", { dbSubnetGroupName: subnetGroup.dbSubnetGroupName, dbClusterParameterGroupName: params.dbClusterParameterGroupName,});