Class: Aws::Chime::Types::GeoMatchParams
- Inherits:
-
Struct
- Object
- Struct
- Aws::Chime::Types::GeoMatchParams
- Defined in:
- gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb
Overview
Note:
When making an API call, you may pass GeoMatchParams data as a hash:
{
country: "Country", # required
area_code: "AreaCode", # required
}
The country and area code for a proxy phone number in a proxy phone session.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#area_code ⇒ String
The area code.
-
#country ⇒ String
The country.
Instance Attribute Details
#area_code ⇒ String
The area code.
4039 4040 4041 4042 4043 4044 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 4039 class GeoMatchParams < Struct.new( :country, :area_code) SENSITIVE = [] include Aws::Structure end |
#country ⇒ String
The country.
4039 4040 4041 4042 4043 4044 |
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 4039 class GeoMatchParams < Struct.new( :country, :area_code) SENSITIVE = [] include Aws::Structure end |