Class: Aws::GeoPlaces::Types::SecondaryAddressComponent
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoPlaces::Types::SecondaryAddressComponent
- 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
-
#designator ⇒ String
The designator of the secondary address component.
-
#number ⇒ String
Number that uniquely identifies a secondary address.
Instance Attribute Details
#designator ⇒ String
The designator of the secondary address component.
Example: Apt.
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 |
#number ⇒ String
Number that uniquely identifies a secondary address.
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 |