Class: AWSCDK::QuickSight::CfnTemplate::MissingDataConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::MissingDataConfigurationProperty
- Defined in:
- quick_sight/cfn_template.rb
Overview
The configuration options that determine how missing data is treated during the rendering of a line chart.
Instance Attribute Summary collapse
-
#treatment_option ⇒ String?
readonly
The treatment option that determines how missing data should be rendered.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(treatment_option: nil) ⇒ MissingDataConfigurationProperty
constructor
A new instance of MissingDataConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(treatment_option: nil) ⇒ MissingDataConfigurationProperty
Returns a new instance of MissingDataConfigurationProperty.
17121 17122 17123 17124 |
# File 'quick_sight/cfn_template.rb', line 17121 def initialize(treatment_option: nil) @treatment_option = treatment_option Jsii::Type.check_type(@treatment_option, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "treatmentOption") unless @treatment_option.nil? end |
Instance Attribute Details
#treatment_option ⇒ String? (readonly)
The treatment option that determines how missing data should be rendered. Choose from the following options:.
INTERPOLATE: Interpolate missing values between the prior and the next known value.SHOW_AS_ZERO: Show missing values as the value0.SHOW_AS_BLANK: Display a blank space when rendering missing data.
17134 17135 17136 |
# File 'quick_sight/cfn_template.rb', line 17134 def treatment_option @treatment_option end |
Class Method Details
.jsii_properties ⇒ Object
17136 17137 17138 17139 17140 |
# File 'quick_sight/cfn_template.rb', line 17136 def self.jsii_properties { :treatment_option => "treatmentOption", } end |
Instance Method Details
#to_jsii ⇒ Object
17142 17143 17144 17145 17146 17147 17148 |
# File 'quick_sight/cfn_template.rb', line 17142 def to_jsii result = {} result.merge!({ "treatmentOption" => @treatment_option, }) result.compact end |