Class: Aws::GeoMaps::Types::GetTileRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoMaps::Types::GetTileRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-geomaps/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:key]
Instance Attribute Summary collapse
-
#key ⇒ String
Optional: The API key to be used for authorization.
-
#tileset ⇒ String
Specifies the desired tile set.
-
#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
Optional: The API key to be used for authorization. Either an API key or valid SigV4 signature must be provided when making a request.
623 624 625 626 627 628 629 630 631 |
# File 'lib/aws-sdk-geomaps/types.rb', line 623 class GetTileRequest < Struct.new( :tileset, :z, :x, :y, :key) SENSITIVE = [:key] include Aws::Structure end |
#tileset ⇒ String
Specifies the desired tile set.
Valid Values: ‘raster.satellite | vector.basemap`
623 624 625 626 627 628 629 630 631 |
# File 'lib/aws-sdk-geomaps/types.rb', line 623 class GetTileRequest < Struct.new( :tileset, :z, :x, :y, :key) SENSITIVE = [:key] include Aws::Structure end |
#x ⇒ String
The X axis value for the map tile. Must be between 0 and 19.
623 624 625 626 627 628 629 630 631 |
# File 'lib/aws-sdk-geomaps/types.rb', line 623 class GetTileRequest < Struct.new( :tileset, :z, :x, :y, :key) SENSITIVE = [:key] include Aws::Structure end |
#y ⇒ String
The Y axis value for the map tile.
623 624 625 626 627 628 629 630 631 |
# File 'lib/aws-sdk-geomaps/types.rb', line 623 class GetTileRequest < Struct.new( :tileset, :z, :x, :y, :key) SENSITIVE = [:key] include Aws::Structure end |
#z ⇒ String
The zoom value for the map tile.
623 624 625 626 627 628 629 630 631 |
# File 'lib/aws-sdk-geomaps/types.rb', line 623 class GetTileRequest < Struct.new( :tileset, :z, :x, :y, :key) SENSITIVE = [:key] include Aws::Structure end |