Class: AWSCDK::QuickSight::CfnDashboard::GeospatialPointLayerProperty

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

Overview

The geospatial Point layer.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(style:) ⇒ GeospatialPointLayerProperty

Returns a new instance of GeospatialPointLayerProperty.

Parameters:



14968
14969
14970
14971
# File 'quick_sight/cfn_dashboard.rb', line 14968

def initialize(style:)
  @style = style.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnDashboard::GeospatialPointStyleProperty.new(**style.transform_keys(&:to_sym)) : style
  Jsii::Type.check_type(@style, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkRhc2hib2FyZC5HZW9zcGF0aWFsUG9pbnRTdHlsZVByb3BlcnR5In1dfX0=")), "style")
end

Class Method Details

.jsii_propertiesObject



14979
14980
14981
14982
14983
# File 'quick_sight/cfn_dashboard.rb', line 14979

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

Instance Method Details

#to_jsiiObject



14985
14986
14987
14988
14989
14990
14991
# File 'quick_sight/cfn_dashboard.rb', line 14985

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