Class: AWSCDK::QuickSight::CfnDashboard::GeospatialMapStyleOptionsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::GeospatialMapStyleOptionsProperty
- Defined in:
- quick_sight/cfn_dashboard.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.
14699 14700 14701 14702 |
# File 'quick_sight/cfn_dashboard.rb', line 14699 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.
14708 14709 14710 |
# File 'quick_sight/cfn_dashboard.rb', line 14708 def base_map_style @base_map_style end |
Class Method Details
.jsii_properties ⇒ Object
14710 14711 14712 14713 14714 |
# File 'quick_sight/cfn_dashboard.rb', line 14710 def self.jsii_properties { :base_map_style => "baseMapStyle", } end |
Instance Method Details
#to_jsii ⇒ Object
14716 14717 14718 14719 14720 14721 14722 |
# File 'quick_sight/cfn_dashboard.rb', line 14716 def to_jsii result = {} result.merge!({ "baseMapStyle" => @base_map_style, }) result.compact end |