Class: Aws::LocationService::Types::GetMapTileRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::GetMapTileRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-locationservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:key]
Instance Attribute Summary collapse
-
#key ⇒ String
The optional [API key] to authorize the request.
-
#map_name ⇒ String
The map resource to retrieve the map tiles from.
-
#x ⇒ String
The X axis value for the map tile.
-
#y ⇒ String
The Y axis value for the map tile.
-
#z ⇒ String
The zoom value for the map tile.
Instance Attribute Details
#key ⇒ String
The optional [API key] to authorize the request.
[1]: docs.aws.amazon.com/location/latest/developerguide/using-apikeys.html
3701 3702 3703 3704 3705 3706 3707 3708 3709 |
# File 'lib/aws-sdk-locationservice/types.rb', line 3701 class GetMapTileRequest < Struct.new( :map_name, :z, :x, :y, :key) SENSITIVE = [:key] include Aws::Structure end |
#map_name ⇒ String
The map resource to retrieve the map tiles from.
3701 3702 3703 3704 3705 3706 3707 3708 3709 |
# File 'lib/aws-sdk-locationservice/types.rb', line 3701 class GetMapTileRequest < Struct.new( :map_name, :z, :x, :y, :key) SENSITIVE = [:key] include Aws::Structure end |
#x ⇒ String
The X axis value for the map tile.
3701 3702 3703 3704 3705 3706 3707 3708 3709 |
# File 'lib/aws-sdk-locationservice/types.rb', line 3701 class GetMapTileRequest < Struct.new( :map_name, :z, :x, :y, :key) SENSITIVE = [:key] include Aws::Structure end |
#y ⇒ String
The Y axis value for the map tile.
3701 3702 3703 3704 3705 3706 3707 3708 3709 |
# File 'lib/aws-sdk-locationservice/types.rb', line 3701 class GetMapTileRequest < Struct.new( :map_name, :z, :x, :y, :key) SENSITIVE = [:key] include Aws::Structure end |
#z ⇒ String
The zoom value for the map tile.
3701 3702 3703 3704 3705 3706 3707 3708 3709 |
# File 'lib/aws-sdk-locationservice/types.rb', line 3701 class GetMapTileRequest < Struct.new( :map_name, :z, :x, :y, :key) SENSITIVE = [:key] include Aws::Structure end |