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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDBSecurityGroupMixinPropsstatic final classAn implementation forCfnDBSecurityGroupMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectIngress rules to be applied to the DB security group.default StringThe identifier of an Amazon virtual private cloud (VPC).default StringProvides the description of the DB security group.getTags()Metadata assigned to an Amazon RDS resource consisting of a key-value pair.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDbSecurityGroupIngress
Ingress rules to be applied to the DB security group.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDBSecurityGroupPropsMixin.IngressProperty>- See Also:
-
getEc2VpcId
The identifier of an Amazon virtual private cloud (VPC).This property indicates the VPC that this DB security group belongs to.
This property is included for backwards compatibility and is no longer recommended for providing security information to an RDS DB instance.
- See Also:
-
getGroupDescription
Provides the description of the DB security group.- See Also:
-
getTags
Metadata assigned to an Amazon RDS resource consisting of a key-value pair.For more information, see Tagging Amazon RDS resources in the Amazon RDS User Guide or Tagging Amazon Aurora and Amazon RDS resources in the Amazon Aurora User Guide .
- See Also:
-
builder
-