interface DBClusterParameterGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Neptune.DBClusterParameterGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsneptune#DBClusterParameterGroupReference |
Java | software.amazon.awscdk.interfaces.neptune.DBClusterParameterGroupReference |
Python | aws_cdk.interfaces.aws_neptune.DBClusterParameterGroupReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_neptune } from 'aws-cdk-lib/interfaces';
const dBClusterParameterGroupReference: interfaces_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