[][src]Struct rusoto_ec2::StaleSecurityGroup

pub struct StaleSecurityGroup {
    pub description: Option<String>,
    pub group_id: Option<String>,
    pub group_name: Option<String>,
    pub stale_ip_permissions: Option<Vec<StaleIpPermission>>,
    pub stale_ip_permissions_egress: Option<Vec<StaleIpPermission>>,
    pub vpc_id: Option<String>,
}

Describes a stale security group (a security group that contains stale rules).

Fields

description: Option<String>

The description of the security group.

group_id: Option<String>

The ID of the security group.

group_name: Option<String>

The name of the security group.

stale_ip_permissions: Option<Vec<StaleIpPermission>>

Information about the stale inbound rules in the security group.

stale_ip_permissions_egress: Option<Vec<StaleIpPermission>>

Information about the stale outbound rules in the security group.

vpc_id: Option<String>

The ID of the VPC for the security group.

Trait Implementations

impl Clone for StaleSecurityGroup[src]

impl Default for StaleSecurityGroup[src]

impl PartialEq<StaleSecurityGroup> for StaleSecurityGroup[src]

impl Debug for StaleSecurityGroup[src]

impl StructuralPartialEq for StaleSecurityGroup[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self