Class: Aws::Support::Types::DateInterval
- Inherits:
-
Struct
- Object
- Struct
- Aws::Support::Types::DateInterval
- Includes:
- Aws::Structure
- Defined in:
- 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
-
#end_date_time ⇒ String
End Date Time (UTC).
-
#start_date_time ⇒ String
A JSON object containing start and date time (UTC).
Instance Attribute Details
#end_date_time ⇒ String
End Date Time (UTC). RFC 3339 format : ‘yyyy-MM-dd’T’HH:mm:ss.SSSZZ’.
659 660 661 662 663 664 |
# File '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_time ⇒ String
A JSON object containing start and date time (UTC). Date and time format is RFC 3339 : ‘yyyy-MM-dd’T’HH:mm:ss.SSSZZ’.
659 660 661 662 663 664 |
# File 'lib/aws-sdk-support/types.rb', line 659 class DateInterval < Struct.new( :start_date_time, :end_date_time) SENSITIVE = [] include Aws::Structure end |