Interface CfnDBSecurityGroupMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDBSecurityGroupMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:20:04.380Z") @Stability(Stable) public interface CfnDBSecurityGroupMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnDBSecurityGroupPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.rds.*;
 CfnDBSecurityGroupMixinProps cfnDBSecurityGroupMixinProps = CfnDBSecurityGroupMixinProps.builder()
         .dbSecurityGroupIngress(List.of(IngressProperty.builder()
                 .cidrip("cidrip")
                 .ec2SecurityGroupId("ec2SecurityGroupId")
                 .ec2SecurityGroupName("ec2SecurityGroupName")
                 .ec2SecurityGroupOwnerId("ec2SecurityGroupOwnerId")
                 .build()))
         .ec2VpcId("ec2VpcId")
         .groupDescription("groupDescription")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: