Class: AWSCDK::QuickSight::CfnTemplate::GeospatialMapStyleOptionsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::GeospatialMapStyleOptionsProperty
- Defined in:
- quick_sight/cfn_template.rb
Overview
The map style options of the geospatial map.
Instance Attribute Summary collapse
-
#base_map_style ⇒ String?
readonly
The base map style of the geospatial map.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(base_map_style: nil) ⇒ GeospatialMapStyleOptionsProperty
constructor
A new instance of GeospatialMapStyleOptionsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(base_map_style: nil) ⇒ GeospatialMapStyleOptionsProperty
Returns a new instance of GeospatialMapStyleOptionsProperty.
12809 12810 12811 12812 |
# File 'quick_sight/cfn_template.rb', line 12809 def initialize(base_map_style: nil) @base_map_style = base_map_style Jsii::Type.check_type(@base_map_style, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "baseMapStyle") unless @base_map_style.nil? end |
Instance Attribute Details
#base_map_style ⇒ String? (readonly)
The base map style of the geospatial map.
12818 12819 12820 |
# File 'quick_sight/cfn_template.rb', line 12818 def base_map_style @base_map_style end |
Class Method Details
.jsii_properties ⇒ Object
12820 12821 12822 12823 12824 |
# File 'quick_sight/cfn_template.rb', line 12820 def self.jsii_properties { :base_map_style => "baseMapStyle", } end |
Instance Method Details
#to_jsii ⇒ Object
12826 12827 12828 12829 12830 12831 12832 |
# File 'quick_sight/cfn_template.rb', line 12826 def to_jsii result = {} result.merge!({ "baseMapStyle" => @base_map_style, }) result.compact end |