DBSecurityGroupIngressReference

class aws_cdk.aws_rds.DBSecurityGroupIngressReference(*, db_security_group_ingress_id)

Bases: object

A reference to a DBSecurityGroupIngress resource.

Parameters:

db_security_group_ingress_id (str) – The Id of the DBSecurityGroupIngress resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_rds as rds

d_bSecurity_group_ingress_reference = rds.DBSecurityGroupIngressReference(
    db_security_group_ingress_id="dbSecurityGroupIngressId"
)

Attributes

db_security_group_ingress_id

The Id of the DBSecurityGroupIngress resource.