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.
3044 3045 3046 3047 3048 3049 |
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 3044 class SecondaryAddressComponent < Struct.new( :number, :designator) SENSITIVE = [:number, :designator] include Aws::Structure end |
#number ⇒ String
Number that uniquely identifies a secondary address.
3044 3045 3046 3047 3048 3049 |
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 3044 class SecondaryAddressComponent < Struct.new( :number, :designator) SENSITIVE = [:number, :designator] include Aws::Structure end |