Skip to content

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.

const params = yield* DBClusterParameterGroup("Params", {
family: "neptune1.4",
parameters: {
neptune_query_timeout: "120000",
},
});
const cluster = yield* DBCluster("Graph", {
dbSubnetGroupName: subnetGroup.dbSubnetGroupName,
dbClusterParameterGroupName: params.dbClusterParameterGroupName,
});