Class: Aws::GeoMaps::Types::GetSpritesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GeoMaps::Types::GetSpritesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-geomaps/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#color_scheme ⇒ String
Sets color tone for map such as dark and light for specific map styles.
-
#file_name ⇒ String
SpritesAPI: The name of the sprite file to retrieve, following pattern ‘sprites(@2x)?.(png|json)`. -
#style ⇒ String
Style specifies the desired map style for the
SpritesAPIs. -
#variant ⇒ String
Optimizes map styles for specific use case or industry.
Instance Attribute Details
#color_scheme ⇒ String
Sets color tone for map such as dark and light for specific map styles. It applies to only vector map styles such as Standard and Monochrome.
Example: Light
Default value: Light
<note markdown=“1”> Valid values for ColorScheme are case sensitive.
</note>
278 279 280 281 282 283 284 285 |
# File 'lib/aws-sdk-geomaps/types.rb', line 278 class GetSpritesRequest < Struct.new( :file_name, :style, :color_scheme, :variant) SENSITIVE = [] include Aws::Structure end |
#file_name ⇒ String
Sprites API: The name of the sprite file to retrieve, following pattern ‘sprites(@2x)?.(png|json)`.
Example: sprites.png
278 279 280 281 282 283 284 285 |
# File 'lib/aws-sdk-geomaps/types.rb', line 278 class GetSpritesRequest < Struct.new( :file_name, :style, :color_scheme, :variant) SENSITIVE = [] include Aws::Structure end |
#style ⇒ String
Style specifies the desired map style for the Sprites APIs.
278 279 280 281 282 283 284 285 |
# File 'lib/aws-sdk-geomaps/types.rb', line 278 class GetSpritesRequest < Struct.new( :file_name, :style, :color_scheme, :variant) SENSITIVE = [] include Aws::Structure end |
#variant ⇒ String
Optimizes map styles for specific use case or industry. You can choose allowed variant only with Standard map style.
Example: Default
<note markdown=“1”> Valid values for Variant are case sensitive.
</note>
278 279 280 281 282 283 284 285 |
# File 'lib/aws-sdk-geomaps/types.rb', line 278 class GetSpritesRequest < Struct.new( :file_name, :style, :color_scheme, :variant) SENSITIVE = [] include Aws::Structure end |