[][src]Struct rusoto_rds::DBSecurityGroup

pub struct DBSecurityGroup {
    pub db_security_group_arn: Option<String>,
    pub db_security_group_description: Option<String>,
    pub db_security_group_name: Option<String>,
    pub ec2_security_groups: Option<Vec<EC2SecurityGroup>>,
    pub ip_ranges: Option<Vec<IPRange>>,
    pub owner_id: Option<String>,
    pub vpc_id: Option<String>,
}

Contains the details for an Amazon RDS DB security group.

This data type is used as a response element in the DescribeDBSecurityGroups action.

Fields

db_security_group_arn: Option<String>

The Amazon Resource Name (ARN) for the DB security group.

db_security_group_description: Option<String>

Provides the description of the DB security group.

db_security_group_name: Option<String>

Specifies the name of the DB security group.

ec2_security_groups: Option<Vec<EC2SecurityGroup>>

Contains a list of EC2SecurityGroup elements.

ip_ranges: Option<Vec<IPRange>>

Contains a list of IPRange elements.

owner_id: Option<String>

Provides the AWS ID of the owner of a specific DB security group.

vpc_id: Option<String>

Provides the VpcId of the DB security group.

Trait Implementations

impl Clone for DBSecurityGroup[src]

impl Debug for DBSecurityGroup[src]

impl Default for DBSecurityGroup[src]

impl PartialEq<DBSecurityGroup> for DBSecurityGroup[src]

impl StructuralPartialEq for DBSecurityGroup[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.