Struct rusoto_rds::AuthorizeDBSecurityGroupIngressMessage[][src]

pub struct AuthorizeDBSecurityGroupIngressMessage {
    pub cidrip: Option<String>,
    pub db_security_group_name: String,
    pub ec2_security_group_id: Option<String>,
    pub ec2_security_group_name: Option<String>,
    pub ec2_security_group_owner_id: Option<String>,
}

Fields

The IP range to authorize.

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

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.

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.

AWS account number of the owner of the EC2 security group specified in the EC2SecurityGroupName parameter. The AWS Access Key ID is not an acceptable value. For VPC DB security groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.

Trait Implementations

impl Default for AuthorizeDBSecurityGroupIngressMessage
[src]

Returns the "default value" for a type. Read more

impl Debug for AuthorizeDBSecurityGroupIngressMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for AuthorizeDBSecurityGroupIngressMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AuthorizeDBSecurityGroupIngressMessage
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations