Class: Aws::InternetMonitor::Types::RoundTripTime

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-internetmonitor/lib/aws-sdk-internetmonitor/types.rb

Overview

Round-trip time (RTT) is how long it takes for a request from the user to return a response to the user. Amazon CloudWatch Internet Monitor calculates RTT at different percentiles: p50, p90, and p95.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#p50Float

RTT at the 50th percentile (p50).

Returns:

  • (Float)


1698
1699
1700
1701
1702
1703
1704
# File 'gems/aws-sdk-internetmonitor/lib/aws-sdk-internetmonitor/types.rb', line 1698

class RoundTripTime < Struct.new(
  :p50,
  :p90,
  :p95)
  SENSITIVE = []
  include Aws::Structure
end

#p90Float

RTT at the 90th percentile (p90).

Returns:

  • (Float)


1698
1699
1700
1701
1702
1703
1704
# File 'gems/aws-sdk-internetmonitor/lib/aws-sdk-internetmonitor/types.rb', line 1698

class RoundTripTime < Struct.new(
  :p50,
  :p90,
  :p95)
  SENSITIVE = []
  include Aws::Structure
end

#p95Float

RTT at the 95th percentile (p95).

Returns:

  • (Float)


1698
1699
1700
1701
1702
1703
1704
# File 'gems/aws-sdk-internetmonitor/lib/aws-sdk-internetmonitor/types.rb', line 1698

class RoundTripTime < Struct.new(
  :p50,
  :p90,
  :p95)
  SENSITIVE = []
  include Aws::Structure
end