Class: AWSCDK::QuickSight::CfnAnalysis::ReferenceLineCustomLabelConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::ReferenceLineCustomLabelConfigurationProperty
- Defined in:
- quick_sight/cfn_analysis.rb
Overview
The configuration for a custom label on a ReferenceLine .
Instance Attribute Summary collapse
-
#custom_label ⇒ String
readonly
The string text of the custom label.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(custom_label:) ⇒ ReferenceLineCustomLabelConfigurationProperty
constructor
A new instance of ReferenceLineCustomLabelConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(custom_label:) ⇒ ReferenceLineCustomLabelConfigurationProperty
Returns a new instance of ReferenceLineCustomLabelConfigurationProperty.
23841 23842 23843 23844 |
# File 'quick_sight/cfn_analysis.rb', line 23841 def initialize(custom_label:) @custom_label = custom_label Jsii::Type.check_type(@custom_label, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "customLabel") end |
Instance Attribute Details
#custom_label ⇒ String (readonly)
The string text of the custom label.
23850 23851 23852 |
# File 'quick_sight/cfn_analysis.rb', line 23850 def custom_label @custom_label end |
Class Method Details
.jsii_properties ⇒ Object
23852 23853 23854 23855 23856 |
# File 'quick_sight/cfn_analysis.rb', line 23852 def self.jsii_properties { :custom_label => "customLabel", } end |
Instance Method Details
#to_jsii ⇒ Object
23858 23859 23860 23861 23862 23863 23864 |
# File 'quick_sight/cfn_analysis.rb', line 23858 def to_jsii result = {} result.merge!({ "customLabel" => @custom_label, }) result.compact end |