Struct rusoto_ec2::StaleSecurityGroup[][src]

pub struct StaleSecurityGroup {
    pub description: Option<String>,
    pub group_id: 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

The description of the security group.

The ID of the security group.

The name of the security group.

Information about the stale inbound rules in the security group.

Information about the stale outbound rules in the security group.

The ID of the VPC for the security group.

Trait Implementations

impl Default for StaleSecurityGroup
[src]

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

impl Debug for StaleSecurityGroup
[src]

Formats the value using the given formatter. Read more

impl Clone for StaleSecurityGroup
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for StaleSecurityGroup
[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