interface DBParameterGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Neptune.DBParameterGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsneptune#DBParameterGroupReference |
Java | software.amazon.awscdk.interfaces.neptune.DBParameterGroupReference |
Python | aws_cdk.interfaces.aws_neptune.DBParameterGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_neptune » 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_neptune as interfaces_aws_neptune } from 'aws-cdk-lib/interfaces';
const dBParameterGroupReference: interfaces_aws_neptune.DBParameterGroupReference = {
dbParameterGroupName: 'dbParameterGroupName',
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The Name of the DBParameterGroup resource. |
dbParameterGroupName
Type:
string
The Name of the DBParameterGroup resource.

.NET
Go
Java
Python
TypeScript