Class: Aws::CostOptimizationHub::Types::TimePeriod
- Inherits:
-
Struct
- Object
- Struct
- Aws::CostOptimizationHub::Types::TimePeriod
- Defined in:
- gems/aws-sdk-costoptimizationhub/lib/aws-sdk-costoptimizationhub/types.rb
Overview
Specifies a date range for retrieving efficiency metrics. The start date is inclusive and the end date is exclusive.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end ⇒ String
The end of the time period (exclusive).
-
#start ⇒ String
The beginning of the time period (inclusive).
Instance Attribute Details
#end ⇒ String
The end of the time period (exclusive). Specify the date in ISO 8601 format, such as 2024-12-31.
2551 2552 2553 2554 2555 2556 |
# File 'gems/aws-sdk-costoptimizationhub/lib/aws-sdk-costoptimizationhub/types.rb', line 2551 class TimePeriod < Struct.new( :start, :end) SENSITIVE = [] include Aws::Structure end |
#start ⇒ String
The beginning of the time period (inclusive). Specify the date in ISO 8601 format, such as 2024-01-01.
2551 2552 2553 2554 2555 2556 |
# File 'gems/aws-sdk-costoptimizationhub/lib/aws-sdk-costoptimizationhub/types.rb', line 2551 class TimePeriod < Struct.new( :start, :end) SENSITIVE = [] include Aws::Structure end |