class AWS::EC2::VPNConnection::Telemetry

Attributes

accepted_route_count[R]

@return [Integer]

last_status_change[R]

@return [Time]

outside_ip_address[R]

@return [String]

status[R]

@return [Symbol] :up or :down

status_message[R]

@return [String]

vpn_connection[R]

@return [VPNConnection]

Public Class Methods

new(vpn_connection, details) click to toggle source
# File lib/aws/ec2/vpn_connection/telemetry.rb, line 19
def initialize vpn_connection, details
  @vpn_connection = vpn_connection
  @outside_ip_address = details.outside_ip_address
  @status = details.status.downcase.to_sym
  @last_status_change = details.last_status_change
  @status_message = details.status_message
  @accepted_route_count = details.accepted_route_count
end