Class: Aws::GeoPlaces::Types::TimeZone

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

Overview

The time zone in which the place is located.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The time zone name.

Returns:

  • (String)


2791
2792
2793
2794
2795
2796
2797
# File 'lib/aws-sdk-geoplaces/types.rb', line 2791

class TimeZone < Struct.new(
  :name,
  :offset,
  :offset_seconds)
  SENSITIVE = []
  include Aws::Structure
end

#offsetString

Time zone offset of the timezone from UTC.

Returns:

  • (String)


2791
2792
2793
2794
2795
2796
2797
# File 'lib/aws-sdk-geoplaces/types.rb', line 2791

class TimeZone < Struct.new(
  :name,
  :offset,
  :offset_seconds)
  SENSITIVE = []
  include Aws::Structure
end

#offset_secondsInteger

The offset of the time zone from UTC, in seconds.

Returns:

  • (Integer)


2791
2792
2793
2794
2795
2796
2797
# File 'lib/aws-sdk-geoplaces/types.rb', line 2791

class TimeZone < Struct.new(
  :name,
  :offset,
  :offset_seconds)
  SENSITIVE = []
  include Aws::Structure
end