Class: Aws::Billing::Types::BillingViewSegmentTimeRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::Billing::Types::BillingViewSegmentTimeRange
- Defined in:
- gems/aws-sdk-billing/lib/aws-sdk-billing/types.rb
Overview
Specifies a time range with an inclusive begin date and an exclusive end date.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#begin_date_inclusive ⇒ Time
The inclusive start of the time range.
-
#end_date_exclusive ⇒ Time
The exclusive end of the time range.
Instance Attribute Details
#begin_date_inclusive ⇒ Time
The inclusive start of the time range. This value can't be in the future.
402 403 404 405 406 407 |
# File 'gems/aws-sdk-billing/lib/aws-sdk-billing/types.rb', line 402 class BillingViewSegmentTimeRange < Struct.new( :begin_date_inclusive, :end_date_exclusive) SENSITIVE = [] include Aws::Structure end |
#end_date_exclusive ⇒ Time
The exclusive end of the time range. This value must be after
beginDateInclusive.
402 403 404 405 406 407 |
# File 'gems/aws-sdk-billing/lib/aws-sdk-billing/types.rb', line 402 class BillingViewSegmentTimeRange < Struct.new( :begin_date_inclusive, :end_date_exclusive) SENSITIVE = [] include Aws::Structure end |