Class: Aws::GeoPlaces::Types::Country
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoPlaces::Types::Country
- Defined in:
- gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb
Overview
The alpha-2 or alpha-3 character code for the country that the results will be present in.
Constant Summary collapse
- SENSITIVE =
[:code_2, :code_3, :name]
Instance Attribute Summary collapse
-
#code_2 ⇒ String
Country, represented by its alpha 2-character code.
-
#code_3 ⇒ String
Country, represented by its alpha t-character code.
-
#name ⇒ String
Name of the country.
Instance Attribute Details
#code_2 ⇒ String
Country, represented by its alpha 2-character code.
833 834 835 836 837 838 839 |
# File 'gems/aws-sdk-geoplaces/lib/aws-sdk-geoplaces/types.rb', line 833 class Country < Struct.new( :code_2, :code_3, :name) SENSITIVE = [:code_2, :code_3, :name] include Aws::Structure end |