Class: AWSCDK::QuickSight::CfnDashboard::GeospatialPointLayerProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::GeospatialPointLayerProperty
- Defined in:
- quick_sight/cfn_dashboard.rb
Overview
The geospatial Point layer.
Instance Attribute Summary collapse
-
#style ⇒ AWSCDK::IResolvable, AWSCDK::QuickSight::CfnDashboard::GeospatialPointStyleProperty
readonly
The visualization style for a point layer.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(style:) ⇒ GeospatialPointLayerProperty
constructor
A new instance of GeospatialPointLayerProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(style:) ⇒ GeospatialPointLayerProperty
Returns a new instance of GeospatialPointLayerProperty.
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 |
Instance Attribute Details
#style ⇒ AWSCDK::IResolvable, AWSCDK::QuickSight::CfnDashboard::GeospatialPointStyleProperty (readonly)
The visualization style for a point layer.
14977 14978 14979 |
# File 'quick_sight/cfn_dashboard.rb', line 14977 def style @style end |
Class Method Details
.jsii_properties ⇒ Object
14979 14980 14981 14982 14983 |
# File 'quick_sight/cfn_dashboard.rb', line 14979 def self.jsii_properties { :style => "style", } end |
Instance Method Details
#to_jsii ⇒ Object
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 |