Class: Aws::CostExplorer::Types::CoverageHours
- Inherits:
-
Struct
- Object
- Struct
- Aws::CostExplorer::Types::CoverageHours
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-costexplorer/types.rb
Overview
How long a running instance either used a reservation or was On-Demand.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#coverage_hours_percentage ⇒ String
The percentage of instance hours that a reservation covered.
-
#on_demand_hours ⇒ String
The number of instance running hours that On-Demand Instances covered.
-
#reserved_hours ⇒ String
The number of instance running hours that reservations covered.
-
#total_running_hours ⇒ String
The total instance usage, in hours.
Instance Attribute Details
#coverage_hours_percentage ⇒ String
The percentage of instance hours that a reservation covered.
909 910 911 912 913 914 915 916 |
# File 'lib/aws-sdk-costexplorer/types.rb', line 909 class CoverageHours < Struct.new( :on_demand_hours, :reserved_hours, :total_running_hours, :coverage_hours_percentage) SENSITIVE = [] include Aws::Structure end |
#on_demand_hours ⇒ String
The number of instance running hours that On-Demand Instances covered.
909 910 911 912 913 914 915 916 |
# File 'lib/aws-sdk-costexplorer/types.rb', line 909 class CoverageHours < Struct.new( :on_demand_hours, :reserved_hours, :total_running_hours, :coverage_hours_percentage) SENSITIVE = [] include Aws::Structure end |
#reserved_hours ⇒ String
The number of instance running hours that reservations covered.
909 910 911 912 913 914 915 916 |
# File 'lib/aws-sdk-costexplorer/types.rb', line 909 class CoverageHours < Struct.new( :on_demand_hours, :reserved_hours, :total_running_hours, :coverage_hours_percentage) SENSITIVE = [] include Aws::Structure end |
#total_running_hours ⇒ String
The total instance usage, in hours.
909 910 911 912 913 914 915 916 |
# File 'lib/aws-sdk-costexplorer/types.rb', line 909 class CoverageHours < Struct.new( :on_demand_hours, :reserved_hours, :total_running_hours, :coverage_hours_percentage) SENSITIVE = [] include Aws::Structure end |