Class: Aws::CostExplorer::Types::DateInterval
- Inherits:
-
Struct
- Object
- Struct
- Aws::CostExplorer::Types::DateInterval
- Defined in:
- gems/aws-sdk-costexplorer/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
.
1367 1368 1369 1370 1371 1372 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 1367 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.
1367 1368 1369 1370 1371 1372 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 1367 class DateInterval < Struct.new( :start, :end) SENSITIVE = [] include Aws::Structure end |