Class CfnDBSecurityGroupIngressProps
Properties for defining a CfnDBSecurityGroupIngress.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDBSecurityGroupIngressProps : ICfnDBSecurityGroupIngressProps
Syntax (vb)
Public Class CfnDBSecurityGroupIngressProps Implements ICfnDBSecurityGroupIngressProps
Remarks
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.AWS.RDS;
var cfnDBSecurityGroupIngressProps = new CfnDBSecurityGroupIngressProps {
DbSecurityGroupName = "dbSecurityGroupName",
// the properties below are optional
Cidrip = "cidrip",
Ec2SecurityGroupId = "ec2SecurityGroupId",
Ec2SecurityGroupName = "ec2SecurityGroupName",
Ec2SecurityGroupOwnerId = "ec2SecurityGroupOwnerId"
};
Synopsis
Constructors
| CfnDBSecurityGroupIngressProps() | Properties for defining a |
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 |
Constructors
CfnDBSecurityGroupIngressProps()
Properties for defining a CfnDBSecurityGroupIngress.
public CfnDBSecurityGroupIngressProps()
Remarks
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.AWS.RDS;
var cfnDBSecurityGroupIngressProps = new CfnDBSecurityGroupIngressProps {
DbSecurityGroupName = "dbSecurityGroupName",
// the properties below are optional
Cidrip = "cidrip",
Ec2SecurityGroupId = "ec2SecurityGroupId",
Ec2SecurityGroupName = "ec2SecurityGroupName",
Ec2SecurityGroupOwnerId = "ec2SecurityGroupOwnerId"
};
Properties
Cidrip
The IP range to authorize.
public string? Cidrip { get; set; }
Property Value
Remarks
DbSecurityGroupName
The name of the DB security group to add authorization to.
public string DbSecurityGroupName { get; set; }
Property Value
Remarks
Ec2SecurityGroupId
Id of the EC2 security group to authorize.
public string? Ec2SecurityGroupId { get; set; }
Property Value
Remarks
For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.
Ec2SecurityGroupName
Name of the EC2 security group to authorize.
public string? Ec2SecurityGroupName { get; set; }
Property Value
Remarks
For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.
Ec2SecurityGroupOwnerId
AWS account number of the owner of the EC2 security group specified in the EC2SecurityGroupName parameter.
public string? Ec2SecurityGroupOwnerId { get; set; }
Property Value
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.