interface DBParameterGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.RDS.DBParameterGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsrds#DBParameterGroupReference |
Java | software.amazon.awscdk.interfaces.rds.DBParameterGroupReference |
Python | aws_cdk.interfaces.aws_rds.DBParameterGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_rds » DBParameterGroupReference |
A reference to a DBParameterGroup resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rds as interfaces_aws_rds } from 'aws-cdk-lib/interfaces';
const dBParameterGroupReference: interfaces_aws_rds.DBParameterGroupReference = {
dbParameterGroupName: 'dbParameterGroupName',
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The DBParameterGroupName of the DBParameterGroup resource. |
dbParameterGroupName
Type:
string
The DBParameterGroupName of the DBParameterGroup resource.

.NET
Go
Java
Python
TypeScript