Class: AWSCDK::QuickSight::CfnDashboard::NullValueFormatConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::NullValueFormatConfigurationProperty
- Defined in:
- quick_sight/cfn_dashboard.rb
Overview
The options that determine the null value format configuration.
Instance Attribute Summary collapse
-
#null_string ⇒ String
readonly
Determines the null string of null values.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(null_string:) ⇒ NullValueFormatConfigurationProperty
constructor
A new instance of NullValueFormatConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(null_string:) ⇒ NullValueFormatConfigurationProperty
Returns a new instance of NullValueFormatConfigurationProperty.
20038 20039 20040 20041 |
# File 'quick_sight/cfn_dashboard.rb', line 20038 def initialize(null_string:) @null_string = null_string Jsii::Type.check_type(@null_string, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "nullString") end |
Instance Attribute Details
#null_string ⇒ String (readonly)
Determines the null string of null values.
20047 20048 20049 |
# File 'quick_sight/cfn_dashboard.rb', line 20047 def null_string @null_string end |
Class Method Details
.jsii_properties ⇒ Object
20049 20050 20051 20052 20053 |
# File 'quick_sight/cfn_dashboard.rb', line 20049 def self.jsii_properties { :null_string => "nullString", } end |
Instance Method Details
#to_jsii ⇒ Object
20055 20056 20057 20058 20059 20060 20061 |
# File 'quick_sight/cfn_dashboard.rb', line 20055 def to_jsii result = {} result.merge!({ "nullString" => @null_string, }) result.compact end |