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

.NET
Go
Java
Python
TypeScript