Class: Aws::CostExplorer::Types::DateInterval
- Inherits:
-
Struct
- Object
- Struct
- Aws::CostExplorer::Types::DateInterval
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-costexplorer/types.rb
Overview
The time period of the request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end ⇒ String
The end of the time period.
-
#start ⇒ String
The beginning of the time period.
Instance Attribute Details
#end ⇒ String
The end of the time period. The end date is exclusive. For example, if end is 2017-05-01, Amazon Web Services retrieves cost and usage data from the start date up to, but not including, 2017-05-01.
1667 1668 1669 1670 1671 1672 |
# File 'lib/aws-sdk-costexplorer/types.rb', line 1667 class DateInterval < Struct.new( :start, :end) SENSITIVE = [] include Aws::Structure end |
#start ⇒ String
The beginning of the time period. The start date is inclusive. For example, if start is 2017-01-01, Amazon Web Services retrieves cost and usage data starting at 2017-01-01 up to the end date. The start date must be equal to or no later than the current date to avoid a validation error.
1667 1668 1669 1670 1671 1672 |
# File 'lib/aws-sdk-costexplorer/types.rb', line 1667 class DateInterval < Struct.new( :start, :end) SENSITIVE = [] include Aws::Structure end |