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`
-
‘sprites@2x.png` for high pixel density displays
For the JSON document containing image offsets. Use the following file names:
-
‘sprites.json`
-
‘sprites@2x.json` for high pixel density displays
3601 3602 3603 3604 3605 3606 3607 |
# File 'lib/aws-sdk-locationservice/types.rb', line 3601 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
3601 3602 3603 3604 3605 3606 3607 |
# File 'lib/aws-sdk-locationservice/types.rb', line 3601 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.
3601 3602 3603 3604 3605 3606 3607 |
# File 'lib/aws-sdk-locationservice/types.rb', line 3601 class GetMapSpritesRequest < Struct.new( :map_name, :file_name, :key) SENSITIVE = [:key] include Aws::Structure end |