Show / Hide Table of Contents

Class CfnDBSecurityGroupIngressMixinProps

Properties for CfnDBSecurityGroupIngressPropsMixin.

Inheritance
object
CfnDBSecurityGroupIngressMixinProps
Implements
ICfnDBSecurityGroupIngressMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.RDS
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDBSecurityGroupIngressMixinProps : ICfnDBSecurityGroupIngressMixinProps
Syntax (vb)
Public Class CfnDBSecurityGroupIngressMixinProps Implements 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

Constructors

CfnDBSecurityGroupIngressMixinProps()

Properties for CfnDBSecurityGroupIngressPropsMixin.

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.

Constructors

CfnDBSecurityGroupIngressMixinProps()

Properties for CfnDBSecurityGroupIngressPropsMixin.

public CfnDBSecurityGroupIngressMixinProps()
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"
             };

Properties

Cidrip

The IP range to authorize.

public string? Cidrip { get; set; }
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.

public string? DbSecurityGroupName { get; set; }
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.

public string? Ec2SecurityGroupId { get; set; }
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.

public string? Ec2SecurityGroupName { get; set; }
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.

public string? Ec2SecurityGroupOwnerId { get; set; }
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

Implements

ICfnDBSecurityGroupIngressMixinProps
Back to top Generated by DocFX