Class: Aws::Billing::Types::TimeRange

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-billing/lib/aws-sdk-billing/types.rb

Overview

Specifies a time range with inclusive begin and end dates.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#begin_date_inclusiveTime

The inclusive start date of the time range.

Returns:

  • (Time)


793
794
795
796
797
798
# File 'gems/aws-sdk-billing/lib/aws-sdk-billing/types.rb', line 793

class TimeRange < Struct.new(
  :begin_date_inclusive,
  :end_date_inclusive)
  SENSITIVE = []
  include Aws::Structure
end

#end_date_inclusiveTime

The inclusive end date of the time range.

Returns:

  • (Time)


793
794
795
796
797
798
# File 'gems/aws-sdk-billing/lib/aws-sdk-billing/types.rb', line 793

class TimeRange < Struct.new(
  :begin_date_inclusive,
  :end_date_inclusive)
  SENSITIVE = []
  include Aws::Structure
end