[][src]Struct rusoto_rds::EC2SecurityGroup

pub struct EC2SecurityGroup {
    pub ec2_security_group_id: Option<String>,
    pub ec2_security_group_name: Option<String>,
    pub ec2_security_group_owner_id: Option<String>,
    pub status: Option<String>,
}

This data type is used as a response element in the following actions:

  • AuthorizeDBSecurityGroupIngress

  • DescribeDBSecurityGroups

  • RevokeDBSecurityGroupIngress

Fields

ec2_security_group_id: Option<String>

Specifies the id of the EC2 security group.

ec2_security_group_name: Option<String>

Specifies the name of the EC2 security group.

ec2_security_group_owner_id: Option<String>

Specifies the AWS ID of the owner of the EC2 security group specified in the EC2SecurityGroupName field.

status: Option<String>

Provides the status of the EC2 security group. Status can be "authorizing", "authorized", "revoking", and "revoked".

Trait Implementations

impl Clone for EC2SecurityGroup[src]

impl Debug for EC2SecurityGroup[src]

impl Default for EC2SecurityGroup[src]

impl PartialEq<EC2SecurityGroup> for EC2SecurityGroup[src]

impl StructuralPartialEq for EC2SecurityGroup[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, 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.