interface DBSecurityGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.RDS.DBSecurityGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsrds#DBSecurityGroupReference |
Java | software.amazon.awscdk.interfaces.rds.DBSecurityGroupReference |
Python | aws_cdk.interfaces.aws_rds.DBSecurityGroupReference |
TypeScript | aws-cdk-lib » interfaces » aws_rds » DBSecurityGroupReference |
A reference to a DBSecurityGroup 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_rds } from 'aws-cdk-lib/interfaces';
const dBSecurityGroupReference: interfaces_rds.DBSecurityGroupReference = {
dbSecurityGroupId: 'dbSecurityGroupId',
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The Id of the DBSecurityGroup resource. |
dbSecurityGroupId
Type:
string
The Id of the DBSecurityGroup resource.

.NET
Go
Java
Python
TypeScript