Class: AWSCDK::QuickSight::CfnAnalysis::ClusterMarkerProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::ClusterMarkerProperty
- Defined in:
- quick_sight/cfn_analysis.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.
3878 3879 3880 3881 |
# File 'quick_sight/cfn_analysis.rb', line 3878 def initialize(simple_cluster_marker: nil) @simple_cluster_marker = simple_cluster_marker.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnAnalysis::SimpleClusterMarkerProperty.new(**simple_cluster_marker.transform_keys(&:to_sym)) : simple_cluster_marker Jsii::Type.check_type(@simple_cluster_marker, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkFuYWx5c2lzLlNpbXBsZUNsdXN0ZXJNYXJrZXJQcm9wZXJ0eSJ9XX19")), "simpleClusterMarker") unless @simple_cluster_marker.nil? end |
Instance Attribute Details
#simple_cluster_marker ⇒ AWSCDK::IResolvable, ... (readonly)
The simple cluster marker of the cluster marker.
3887 3888 3889 |
# File 'quick_sight/cfn_analysis.rb', line 3887 def simple_cluster_marker @simple_cluster_marker end |
Class Method Details
.jsii_properties ⇒ Object
3889 3890 3891 3892 3893 |
# File 'quick_sight/cfn_analysis.rb', line 3889 def self.jsii_properties { :simple_cluster_marker => "simpleClusterMarker", } end |
Instance Method Details
#to_jsii ⇒ Object
3895 3896 3897 3898 3899 3900 3901 |
# File 'quick_sight/cfn_analysis.rb', line 3895 def to_jsii result = {} result.merge!({ "simpleClusterMarker" => @simple_cluster_marker, }) result.compact end |