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 =
[]
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.
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 |