Struct rusoto_gamelift::VpcPeeringConnectionStatus[][src]

pub struct VpcPeeringConnectionStatus {
    pub code: Option<String>,
    pub message: Option<String>,
}

Represents status information for a VPC peering connection. Status is associated with a VpcPeeringConnection object. Status codes and messages are provided from EC2 (see VpcPeeringConnectionStateReason). Connection status information is also communicated as a fleet Event.

Fields

Code indicating the status of a VPC peering connection.

Additional messaging associated with the connection status.

Trait Implementations

impl Default for VpcPeeringConnectionStatus
[src]

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

impl Debug for VpcPeeringConnectionStatus
[src]

Formats the value using the given formatter. Read more

impl Clone for VpcPeeringConnectionStatus
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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