Class: AWSCDK::QuickSight::CfnTemplate::ClusterMarkerProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::ClusterMarkerProperty
- Defined in:
- quick_sight/cfn_template.rb
Overview
The cluster marker that is a part of the cluster marker configuration.
Instance Attribute Summary collapse
-
#simple_cluster_marker ⇒ AWSCDK::IResolvable, ...
readonly
The simple cluster marker of the cluster marker.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(simple_cluster_marker: nil) ⇒ ClusterMarkerProperty
constructor
A new instance of ClusterMarkerProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(simple_cluster_marker: nil) ⇒ ClusterMarkerProperty
Returns a new instance of ClusterMarkerProperty.
3600 3601 3602 3603 |
# File 'quick_sight/cfn_template.rb', line 3600 def initialize(simple_cluster_marker: nil) @simple_cluster_marker = simple_cluster_marker.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnTemplate::SimpleClusterMarkerProperty.new(**simple_cluster_marker.transform_keys(&:to_sym)) : simple_cluster_marker Jsii::Type.check_type(@simple_cluster_marker, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmblRlbXBsYXRlLlNpbXBsZUNsdXN0ZXJNYXJrZXJQcm9wZXJ0eSJ9XX19")), "simpleClusterMarker") unless @simple_cluster_marker.nil? end |
Instance Attribute Details
#simple_cluster_marker ⇒ AWSCDK::IResolvable, ... (readonly)
The simple cluster marker of the cluster marker.
3609 3610 3611 |
# File 'quick_sight/cfn_template.rb', line 3609 def simple_cluster_marker @simple_cluster_marker end |
Class Method Details
.jsii_properties ⇒ Object
3611 3612 3613 3614 3615 |
# File 'quick_sight/cfn_template.rb', line 3611 def self.jsii_properties { :simple_cluster_marker => "simpleClusterMarker", } end |
Instance Method Details
#to_jsii ⇒ Object
3617 3618 3619 3620 3621 3622 3623 |
# File 'quick_sight/cfn_template.rb', line 3617 def to_jsii result = {} result.merge!({ "simpleClusterMarker" => @simple_cluster_marker, }) result.compact end |