Class: Aws::Billing::Types::BillingViewSegmentTimeRange

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#begin_date_inclusive ⇒ Time

The inclusive start of the time range. This value can't be in the future.

Returns:

  • (Time)


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.

Returns:

  • (Time)


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