Class: Aws::GeoPlaces::Types::TimeZone
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoPlaces::Types::TimeZone
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-geoplaces/types.rb
Overview
The time zone in which the place is located.
Constant Summary collapse
- SENSITIVE =
[:name, :offset, :offset_seconds]
Instance Attribute Summary collapse
-
#name ⇒ String
The time zone name.
-
#offset ⇒ String
Time zone offset of the timezone from UTC.
-
#offset_seconds ⇒ Integer
The offset of the time zone from UTC, in seconds.
Instance Attribute Details
#name ⇒ String
The time zone name.
3854 3855 3856 3857 3858 3859 3860 |
# File 'lib/aws-sdk-geoplaces/types.rb', line 3854 class TimeZone < Struct.new( :name, :offset, :offset_seconds) SENSITIVE = [:name, :offset, :offset_seconds] include Aws::Structure end |