Class: Aws::GeoPlaces::Types::Country
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoPlaces::Types::Country
- Includes:
- Structure
- Defined in:
- 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 =
[]
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.
778 779 780 781 782 783 784 |
# File 'lib/aws-sdk-geoplaces/types.rb', line 778 class Country < Struct.new( :code_2, :code_3, :name) SENSITIVE = [] include Aws::Structure end |