interface CfnDBSecurityGroupIngressMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RDS.Mixins.CfnDBSecurityGroupIngressMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrds/mixins#CfnDBSecurityGroupIngressMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.rds.mixins.CfnDBSecurityGroupIngressMixinProps |
Python | aws_cdk.mixins_preview.aws_rds.mixins.CfnDBSecurityGroupIngressMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_rds » mixins » CfnDBSecurityGroupIngressMixinProps |
Properties for CfnDBSecurityGroupIngressPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as rds_mixins } from '@aws-cdk/mixins-preview/aws-rds';
const cfnDBSecurityGroupIngressMixinProps: rds_mixins.CfnDBSecurityGroupIngressMixinProps = {
cidrip: 'cidrip',
dbSecurityGroupName: 'dbSecurityGroupName',
ec2SecurityGroupId: 'ec2SecurityGroupId',
ec2SecurityGroupName: 'ec2SecurityGroupName',
ec2SecurityGroupOwnerId: 'ec2SecurityGroupOwnerId',
};
Properties
| Name | Type | Description |
|---|---|---|
| cidrip? | string | The IP range to authorize. |
| db | string | The name of the DB security group to add authorization to. |
| ec2 | string | Id of the EC2 security group to authorize. |
| ec2 | string | Name of the EC2 security group to authorize. |
| ec2 | string | AWS account number of the owner of the EC2 security group specified in the EC2SecurityGroupName parameter. |
cidrip?
Type:
string
(optional)
The IP range to authorize.
dbSecurityGroupName?
Type:
string
(optional)
The name of the DB security group to add authorization to.
ec2SecurityGroupId?
Type:
string
(optional)
Id of the EC2 security group to authorize.
For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.
ec2SecurityGroupName?
Type:
string
(optional)
Name of the EC2 security group to authorize.
For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.
ec2SecurityGroupOwnerId?
Type:
string
(optional)
AWS account number of the owner of the EC2 security group specified in the EC2SecurityGroupName parameter.
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.

.NET
Go
Java
Python
TypeScript