Interface CfnDBSecurityGroupIngressMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDBSecurityGroupIngressMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-14T18:32:18.203Z")
@Stability(Stable)
public interface CfnDBSecurityGroupIngressMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDBSecurityGroupIngressPropsMixin.
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.*;
CfnDBSecurityGroupIngressMixinProps cfnDBSecurityGroupIngressMixinProps = CfnDBSecurityGroupIngressMixinProps.builder()
.cidrip("cidrip")
.dbSecurityGroupName("dbSecurityGroupName")
.ec2SecurityGroupId("ec2SecurityGroupId")
.ec2SecurityGroupName("ec2SecurityGroupName")
.ec2SecurityGroupOwnerId("ec2SecurityGroupOwnerId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDBSecurityGroupIngressMixinPropsstatic final classAn implementation forCfnDBSecurityGroupIngressMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe IP range to authorize.default StringThe name of the DB security group to add authorization to.default StringId of the EC2 security group to authorize.default StringName of the EC2 security group to authorize.default StringAWS account number of the owner of the EC2 security group specified in theEC2SecurityGroupNameparameter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCidrip
The IP range to authorize.- See Also:
-
getDbSecurityGroupName
The name of the DB security group to add authorization to.- See Also:
-
getEc2SecurityGroupId
Id of the EC2 security group to authorize.For VPC DB security groups,
EC2SecurityGroupIdmust be provided. Otherwise,EC2SecurityGroupOwnerIdand eitherEC2SecurityGroupNameorEC2SecurityGroupIdmust be provided.- See Also:
-
getEc2SecurityGroupName
Name of the EC2 security group to authorize.For VPC DB security groups,
EC2SecurityGroupIdmust be provided. Otherwise,EC2SecurityGroupOwnerIdand eitherEC2SecurityGroupNameorEC2SecurityGroupIdmust be provided.- See Also:
-
getEc2SecurityGroupOwnerId
AWS account number of the owner of the EC2 security group specified in theEC2SecurityGroupNameparameter.The AWS access key ID isn't an acceptable value. For VPC DB security groups,
EC2SecurityGroupIdmust be provided. Otherwise,EC2SecurityGroupOwnerIdand eitherEC2SecurityGroupNameorEC2SecurityGroupIdmust be provided.- See Also:
-
builder
-