@Generated(value="jsii-pacmak/1.63.2 (build a8a8833)",
date="2022-08-02T20:25:38.269Z")
public interface CfnDBSecurityGroupIngressProps
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.rds.*; CfnDBSecurityGroupIngressProps cfnDBSecurityGroupIngressProps = CfnDBSecurityGroupIngressProps.builder() .dbSecurityGroupName("dbSecurityGroupName") // the properties below are optional .cidrip("cidrip") .ec2SecurityGroupId("ec2SecurityGroupId") .ec2SecurityGroupName("ec2SecurityGroupName") .ec2SecurityGroupOwnerId("ec2SecurityGroupOwnerId") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDBSecurityGroupIngressProps.Builder
A builder for
CfnDBSecurityGroupIngressProps |
static class |
CfnDBSecurityGroupIngressProps.Jsii$Proxy
An implementation for
CfnDBSecurityGroupIngressProps |
Modifier and Type | Method and Description |
---|---|
static CfnDBSecurityGroupIngressProps.Builder |
builder() |
default java.lang.String |
getCidrip()
The IP range to authorize.
|
java.lang.String |
getDbSecurityGroupName()
The name of the DB security group to add authorization to.
|
default java.lang.String |
getEc2SecurityGroupId()
Id of the EC2 security group to authorize.
|
default java.lang.String |
getEc2SecurityGroupName()
Name of the EC2 security group to authorize.
|
default java.lang.String |
getEc2SecurityGroupOwnerId()
AWS account number of the owner of the EC2 security group specified in the `EC2SecurityGroupName` parameter.
|
java.lang.String getDbSecurityGroupName()
default java.lang.String getCidrip()
default java.lang.String getEc2SecurityGroupId()
For VPC DB security groups, EC2SecurityGroupId
must be provided. Otherwise, EC2SecurityGroupOwnerId
and either EC2SecurityGroupName
or EC2SecurityGroupId
must be provided.
default java.lang.String getEc2SecurityGroupName()
For VPC DB security groups, EC2SecurityGroupId
must be provided. Otherwise, EC2SecurityGroupOwnerId
and either EC2SecurityGroupName
or EC2SecurityGroupId
must be provided.
default java.lang.String getEc2SecurityGroupOwnerId()
The AWS access key ID isn't an acceptable value. For VPC DB security groups, EC2SecurityGroupId
must be provided. Otherwise, EC2SecurityGroupOwnerId
and either EC2SecurityGroupName
or EC2SecurityGroupId
must be provided.
static CfnDBSecurityGroupIngressProps.Builder builder()