Class: Aws::GeoPlaces::Types::SecondaryAddressComponent

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

Overview

Components that correspond to secondary identifiers on an address. The only component type supported currently is Unit.

Constant Summary collapse

SENSITIVE =
[:number, :designator]

Instance Attribute Summary collapse

Instance Attribute Details

#designatorString

The designator of the secondary address component.

Example: Apt.

Returns:

  • (String)


2829
2830
2831
2832
2833
2834
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 2829

class SecondaryAddressComponent < Struct.new(
  :number,
  :designator)
  SENSITIVE = [:number, :designator]
  include Aws::Structure
end

#numberString

Number that uniquely identifies a secondary address.

Returns:

  • (String)


2829
2830
2831
2832
2833
2834
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 2829

class SecondaryAddressComponent < Struct.new(
  :number,
  :designator)
  SENSITIVE = [:number, :designator]
  include Aws::Structure
end