Interface CfnDBSecurityGroupPropsMixin.IngressProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDBSecurityGroupPropsMixin.IngressProperty.Jsii$Proxy
Enclosing class:
CfnDBSecurityGroupPropsMixin

@Stability(Stable) public static interface CfnDBSecurityGroupPropsMixin.IngressProperty extends software.amazon.jsii.JsiiSerializable
The Ingress property type specifies an individual ingress rule within an AWS::RDS::DBSecurityGroup resource.

EC2-Classic was retired on August 15, 2022. If you haven't migrated from EC2-Classic to a VPC, we recommend that you migrate as soon as possible. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide , the blog EC2-Classic Networking is Retiring – Here’s How to Prepare , and Moving a DB instance not in a VPC into a VPC in the Amazon RDS User Guide .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.rds.mixins.*;
 IngressProperty ingressProperty = IngressProperty.builder()
         .cidrip("cidrip")
         .ec2SecurityGroupId("ec2SecurityGroupId")
         .ec2SecurityGroupName("ec2SecurityGroupName")
         .ec2SecurityGroupOwnerId("ec2SecurityGroupOwnerId")
         .build();
 

See Also: