Struct rusoto_ec2::VgwTelemetry[][src]

pub struct VgwTelemetry {
    pub accepted_route_count: Option<i64>,
    pub last_status_change: Option<String>,
    pub outside_ip_address: Option<String>,
    pub status: Option<String>,
    pub status_message: Option<String>,
}

Describes telemetry for a VPN tunnel.

Fields

The number of accepted routes.

The date and time of the last change in status.

The Internet-routable IP address of the virtual private gateway's outside interface.

The status of the VPN tunnel.

If an error occurs, a description of the error.

Trait Implementations

impl Default for VgwTelemetry
[src]

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

impl Debug for VgwTelemetry
[src]

Formats the value using the given formatter. Read more

impl Clone for VgwTelemetry
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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