Show / Hide Table of Contents

Interface ICfnDBSecurityGroupIngressMixinProps

Properties for CfnDBSecurityGroupIngressPropsMixin.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.RDS
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface ICfnDBSecurityGroupIngressMixinProps
Syntax (vb)
Public Interface ICfnDBSecurityGroupIngressMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsecuritygroupingress.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.RDS;

             var cfnDBSecurityGroupIngressMixinProps = new CfnDBSecurityGroupIngressMixinProps {
                 Cidrip = "cidrip",
                 DbSecurityGroupName = "dbSecurityGroupName",
                 Ec2SecurityGroupId = "ec2SecurityGroupId",
                 Ec2SecurityGroupName = "ec2SecurityGroupName",
                 Ec2SecurityGroupOwnerId = "ec2SecurityGroupOwnerId"
             };

Synopsis

Properties

Cidrip

The IP range to authorize.

DbSecurityGroupName

The name of the DB security group to add authorization to.

Ec2SecurityGroupId

Id of the EC2 security group to authorize.

Ec2SecurityGroupName

Name of the EC2 security group to authorize.

Ec2SecurityGroupOwnerId

AWS account number of the owner of the EC2 security group specified in the EC2SecurityGroupName parameter.

Properties

Cidrip

The IP range to authorize.

string? Cidrip { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsecuritygroupingress.html#cfn-rds-dbsecuritygroupingress-cidrip

DbSecurityGroupName

The name of the DB security group to add authorization to.

string? DbSecurityGroupName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsecuritygroupingress.html#cfn-rds-dbsecuritygroupingress-dbsecuritygroupname

Ec2SecurityGroupId

Id of the EC2 security group to authorize.

string? Ec2SecurityGroupId { get; }
Property Value

string

Remarks

For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsecuritygroupingress.html#cfn-rds-dbsecuritygroupingress-ec2securitygroupid

Ec2SecurityGroupName

Name of the EC2 security group to authorize.

string? Ec2SecurityGroupName { get; }
Property Value

string

Remarks

For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsecuritygroupingress.html#cfn-rds-dbsecuritygroupingress-ec2securitygroupname

Ec2SecurityGroupOwnerId

AWS account number of the owner of the EC2 security group specified in the EC2SecurityGroupName parameter.

string? Ec2SecurityGroupOwnerId { get; }
Property Value

string

Remarks

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbsecuritygroupingress.html#cfn-rds-dbsecuritygroupingress-ec2securitygroupownerid

Back to top Generated by DocFX