Class: AWSCDK::QuickSight::CfnAnalysis::GeospatialMapStyleOptionsProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
quick_sight/cfn_analysis.rb

Overview

The map style options of the geospatial map.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(base_map_style: nil) ⇒ GeospatialMapStyleOptionsProperty

Returns a new instance of GeospatialMapStyleOptionsProperty.

Parameters:

  • base_map_style (String, nil) (defaults to: nil)

    The base map style of the geospatial map.



13916
13917
13918
13919
# File 'quick_sight/cfn_analysis.rb', line 13916

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_styleString? (readonly)

The base map style of the geospatial map.



13925
13926
13927
# File 'quick_sight/cfn_analysis.rb', line 13925

def base_map_style
  @base_map_style
end

Class Method Details

.jsii_propertiesObject



13927
13928
13929
13930
13931
# File 'quick_sight/cfn_analysis.rb', line 13927

def self.jsii_properties
  {
    :base_map_style => "baseMapStyle",
  }
end

Instance Method Details

#to_jsiiObject



13933
13934
13935
13936
13937
13938
13939
# File 'quick_sight/cfn_analysis.rb', line 13933

def to_jsii
  result = {}
  result.merge!({
    "baseMapStyle" => @base_map_style,
  })
  result.compact
end