Class: Aws::Invoicing::Types::DateInterval
- Inherits:
-
Struct
- Object
- Struct
- Aws::Invoicing::Types::DateInterval
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-invoicing/types.rb
Overview
The time period that you want invoice-related documents for.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_date ⇒ Time
The end of the time period that you want invoice-related documents for.
-
#start_date ⇒ Time
The beginning of the time period that you want invoice-related documents for.
Instance Attribute Details
#end_date ⇒ Time
The end of the time period that you want invoice-related documents for. The end date is exclusive. For example, if ‘end` is `2019-01-10`, Amazon Web Services retrieves invoice-related documents from the start date up to, but not including, `2018-01-10`.
362 363 364 365 366 367 |
# File 'lib/aws-sdk-invoicing/types.rb', line 362 class DateInterval < Struct.new( :start_date, :end_date) SENSITIVE = [] include Aws::Structure end |
#start_date ⇒ Time
The beginning of the time period that you want invoice-related documents for. The start date is inclusive. For example, if ‘start` is `2019-01-01`, AWS retrieves invoices starting at `2019-01-01` up to the end date.
362 363 364 365 366 367 |
# File 'lib/aws-sdk-invoicing/types.rb', line 362 class DateInterval < Struct.new( :start_date, :end_date) SENSITIVE = [] include Aws::Structure end |