Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Class: Aws::Support::Types::DateInterval

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

Overview

Date and time (UTC) format in RFC 3339 : 'yyyy-MM-dd'T'HH:mm:ss.SSSZZ'.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#end_date_timeString

End Date Time (UTC). RFC 3339 format : 'yyyy-MM-dd'T'HH:mm:ss.SSSZZ'.

Returns:

  • (String)

659
660
661
662
663
664
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 659

class DateInterval < Struct.new(
  :start_date_time,
  :end_date_time)
  SENSITIVE = []
  include Aws::Structure
end

#start_date_timeString

A JSON object containing start and date time (UTC). Date and time format is RFC 3339 : 'yyyy-MM-dd'T'HH:mm:ss.SSSZZ'.

Returns:

  • (String)

659
660
661
662
663
664
# File 'gems/aws-sdk-support/lib/aws-sdk-support/types.rb', line 659

class DateInterval < Struct.new(
  :start_date_time,
  :end_date_time)
  SENSITIVE = []
  include Aws::Structure
end