interface DBClusterParameterGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Neptune.DBClusterParameterGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsneptune#DBClusterParameterGroupReference |
Java | software.amazon.awscdk.services.neptune.DBClusterParameterGroupReference |
Python | aws_cdk.aws_neptune.DBClusterParameterGroupReference |
TypeScript | aws-cdk-lib » aws_neptune » DBClusterParameterGroupReference |
A reference to a DBClusterParameterGroup resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_neptune as neptune } from 'aws-cdk-lib';
const dBClusterParameterGroupReference: neptune.DBClusterParameterGroupReference = {
dbClusterParameterGroupName: 'dbClusterParameterGroupName',
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The Name of the DBClusterParameterGroup resource. |
dbClusterParameterGroupName
Type:
string
The Name of the DBClusterParameterGroup resource.

.NET
Go
Java
Python
TypeScript