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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-geoplaces/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

Instance Attribute Details

#nameString

The time zone name.

Returns:

  • (String)


3271
3272
3273
3274
3275
3276
3277
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 3271

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

#offsetString

Time zone offset of the timezone from UTC.

Returns:

  • (String)


3271
3272
3273
3274
3275
3276
3277
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 3271

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

#offset_secondsInteger

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

Returns:

  • (Integer)


3271
3272
3273
3274
3275
3276
3277
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 3271

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