Class: Aws::LocationService::Types::GetMapSpritesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::GetMapSpritesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-locationservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:key]
Instance Attribute Summary collapse
-
#file_name ⇒ String
The name of the sprite file.
-
#key ⇒ String
The optional [API key] to authorize the request.
-
#map_name ⇒ String
The map resource associated with the sprite file.
Instance Attribute Details
#file_name ⇒ String
The name of the sprite file. Use the following file names for the sprite sheet:
-
‘sprites.png`
-
‘[email protected]` for high pixel density displays
For the JSON document containing image offsets. Use the following file names:
-
‘sprites.json`
-
‘[email protected]` for high pixel density displays
3599 3600 3601 3602 3603 3604 3605 |
# File 'lib/aws-sdk-locationservice/types.rb', line 3599 class GetMapSpritesRequest < Struct.new( :map_name, :file_name, :key) SENSITIVE = [:key] include Aws::Structure end |
#key ⇒ String
The optional [API key] to authorize the request.
[1]: docs.aws.amazon.com/location/latest/developerguide/using-apikeys.html
3599 3600 3601 3602 3603 3604 3605 |
# File 'lib/aws-sdk-locationservice/types.rb', line 3599 class GetMapSpritesRequest < Struct.new( :map_name, :file_name, :key) SENSITIVE = [:key] include Aws::Structure end |
#map_name ⇒ String
The map resource associated with the sprite file.
3599 3600 3601 3602 3603 3604 3605 |
# File 'lib/aws-sdk-locationservice/types.rb', line 3599 class GetMapSpritesRequest < Struct.new( :map_name, :file_name, :key) SENSITIVE = [:key] include Aws::Structure end |