interface DBClusterParameterGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DocDB.DBClusterParameterGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdocdb#DBClusterParameterGroupReference |
Java | software.amazon.awscdk.interfaces.docdb.DBClusterParameterGroupReference |
Python | aws_cdk.interfaces.aws_docdb.DBClusterParameterGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_docdb » 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_docdb as interfaces_docdb } from 'aws-cdk-lib/interfaces';
const dBClusterParameterGroupReference: interfaces_docdb.DBClusterParameterGroupReference = {
dbClusterParameterGroupId: 'dbClusterParameterGroupId',
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The Id of the DBClusterParameterGroup resource. |
dbClusterParameterGroupId
Type:
string
The Id of the DBClusterParameterGroup resource.

.NET
Go
Java
Python
TypeScript