Class: AWSCDK::QuickSight::CfnDashboard::GeospatialLineLayerProperty

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

Overview

The geospatial Line layer.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(style:) ⇒ GeospatialLineLayerProperty

Returns a new instance of GeospatialLineLayerProperty.

Parameters:



14323
14324
14325
14326
# File 'quick_sight/cfn_dashboard.rb', line 14323

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

Class Method Details

.jsii_propertiesObject



14334
14335
14336
14337
14338
# File 'quick_sight/cfn_dashboard.rb', line 14334

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

Instance Method Details

#to_jsiiObject



14340
14341
14342
14343
14344
14345
14346
# File 'quick_sight/cfn_dashboard.rb', line 14340

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