interface CfnDBSecurityGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RDS.Mixins.CfnDBSecurityGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrds/mixins#CfnDBSecurityGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.rds.mixins.CfnDBSecurityGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_rds.mixins.CfnDBSecurityGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_rds » mixins » CfnDBSecurityGroupMixinProps |
Properties for CfnDBSecurityGroupPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsecuritygroup.html
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 cfnDBSecurityGroupMixinProps: rds_mixins.CfnDBSecurityGroupMixinProps = {
dbSecurityGroupIngress: [{
cidrip: 'cidrip',
ec2SecurityGroupId: 'ec2SecurityGroupId',
ec2SecurityGroupName: 'ec2SecurityGroupName',
ec2SecurityGroupOwnerId: 'ec2SecurityGroupOwnerId',
}],
ec2VpcId: 'ec2VpcId',
groupDescription: 'groupDescription',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| db | IResolvable | (IResolvable | Ingress)[] | Ingress rules to be applied to the DB security group. |
| ec2 | string | The identifier of an Amazon virtual private cloud (VPC). |
| group | string | Provides the description of the DB security group. |
| tags? | Cfn[] | Metadata assigned to an Amazon RDS resource consisting of a key-value pair. |
dbSecurityGroupIngress?
Type:
IResolvable | (IResolvable | Ingress)[]
(optional)
Ingress rules to be applied to the DB security group.
ec2VpcId?
Type:
string
(optional)
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.
groupDescription?
Type:
string
(optional)
Provides the description of the DB security group.
tags?
Type:
Cfn[]
(optional)
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 .

.NET
Go
Java
Python
TypeScript