Class: Aws::Support::Types::SupportedHour

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

Overview

Time range object with ‘startTime` and `endTime` range in RFC 3339 format. `’HH:mm:ss.SSS’‘.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#end_timeString

End Time. RFC 3339 format ‘’HH:mm:ss.SSS’‘.

Returns:

  • (String)


1402
1403
1404
1405
1406
1407
# File 'lib/aws-sdk-support/types.rb', line 1402

class SupportedHour < Struct.new(
  :start_time,
  :end_time)
  SENSITIVE = []
  include Aws::Structure
end

#start_timeString

Start Time. RFC 3339 format ‘’HH:mm:ss.SSS’‘.

Returns:

  • (String)


1402
1403
1404
1405
1406
1407
# File 'lib/aws-sdk-support/types.rb', line 1402

class SupportedHour < Struct.new(
  :start_time,
  :end_time)
  SENSITIVE = []
  include Aws::Structure
end