Class: Aws::InternetMonitor::Types::RoundTripTime
- Inherits:
-
Struct
- Object
- Struct
- Aws::InternetMonitor::Types::RoundTripTime
- Includes:
- Structure
- Defined in:
- 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
-
#p50 ⇒ Float
RTT at the 50th percentile (p50).
-
#p90 ⇒ Float
RTT at the 90th percentile (p90).
-
#p95 ⇒ Float
RTT at the 95th percentile (p95).
Instance Attribute Details
#p50 ⇒ Float
RTT at the 50th percentile (p50).
1698 1699 1700 1701 1702 1703 1704 |
# File 'lib/aws-sdk-internetmonitor/types.rb', line 1698 class RoundTripTime < Struct.new( :p50, :p90, :p95) SENSITIVE = [] include Aws::Structure end |
#p90 ⇒ Float
RTT at the 90th percentile (p90).
1698 1699 1700 1701 1702 1703 1704 |
# File 'lib/aws-sdk-internetmonitor/types.rb', line 1698 class RoundTripTime < Struct.new( :p50, :p90, :p95) SENSITIVE = [] include Aws::Structure end |
#p95 ⇒ Float
RTT at the 95th percentile (p95).
1698 1699 1700 1701 1702 1703 1704 |
# File 'lib/aws-sdk-internetmonitor/types.rb', line 1698 class RoundTripTime < Struct.new( :p50, :p90, :p95) SENSITIVE = [] include Aws::Structure end |