Class: Aws::Pinpoint::Types::EndpointLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::EndpointLocation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Specifies geographic information about an endpoint.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#city ⇒ String
The name of the city where the endpoint is located.
-
#country ⇒ String
The two-character code, in ISO 3166-1 alpha-2 format, for the country or region where the endpoint is located.
-
#latitude ⇒ Float
The latitude coordinate of the endpoint location, rounded to one decimal place.
-
#longitude ⇒ Float
The longitude coordinate of the endpoint location, rounded to one decimal place.
-
#postal_code ⇒ String
The postal or ZIP code for the area where the endpoint is located.
-
#region ⇒ String
The name of the region where the endpoint is located.
Instance Attribute Details
#city ⇒ String
The name of the city where the endpoint is located.
4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 4797 class EndpointLocation < Struct.new( :city, :country, :latitude, :longitude, :postal_code, :region) SENSITIVE = [] include Aws::Structure end |
#country ⇒ String
The two-character code, in ISO 3166-1 alpha-2 format, for the country or region where the endpoint is located. For example, US for the United States.
4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 4797 class EndpointLocation < Struct.new( :city, :country, :latitude, :longitude, :postal_code, :region) SENSITIVE = [] include Aws::Structure end |
#latitude ⇒ Float
The latitude coordinate of the endpoint location, rounded to one decimal place.
4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 4797 class EndpointLocation < Struct.new( :city, :country, :latitude, :longitude, :postal_code, :region) SENSITIVE = [] include Aws::Structure end |
#longitude ⇒ Float
The longitude coordinate of the endpoint location, rounded to one decimal place.
4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 4797 class EndpointLocation < Struct.new( :city, :country, :latitude, :longitude, :postal_code, :region) SENSITIVE = [] include Aws::Structure end |
#postal_code ⇒ String
The postal or ZIP code for the area where the endpoint is located.
4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 4797 class EndpointLocation < Struct.new( :city, :country, :latitude, :longitude, :postal_code, :region) SENSITIVE = [] include Aws::Structure end |
#region ⇒ String
The name of the region where the endpoint is located. For locations in the United States, this value is the name of a state.
4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 4797 class EndpointLocation < Struct.new( :city, :country, :latitude, :longitude, :postal_code, :region) SENSITIVE = [] include Aws::Structure end |