Class: Aws::LocationService::Types::GetMapSpritesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::GetMapSpritesRequest
- Defined in:
- gems/aws-sdk-locationservice/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][1] 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
3599 3600 3601 3602 3603 3604 3605 |
# File 'gems/aws-sdk-locationservice/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.
3599 3600 3601 3602 3603 3604 3605 |
# File 'gems/aws-sdk-locationservice/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 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 3599 class GetMapSpritesRequest < Struct.new( :map_name, :file_name, :key) SENSITIVE = [:key] include Aws::Structure end |