Class: AWSCDK::QuickSight::CfnAnalysis::TableStyleTargetProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::TableStyleTargetProperty
- Defined in:
- quick_sight/cfn_analysis.rb
Overview
The table style target.
Instance Attribute Summary collapse
-
#cell_type ⇒ String
readonly
The cell type of the table style target.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(cell_type:) ⇒ TableStyleTargetProperty
constructor
A new instance of TableStyleTargetProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(cell_type:) ⇒ TableStyleTargetProperty
Returns a new instance of TableStyleTargetProperty.
28858 28859 28860 28861 |
# File 'quick_sight/cfn_analysis.rb', line 28858 def initialize(cell_type:) @cell_type = cell_type Jsii::Type.check_type(@cell_type, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "cellType") end |
Instance Attribute Details
#cell_type ⇒ String (readonly)
The cell type of the table style target.
28867 28868 28869 |
# File 'quick_sight/cfn_analysis.rb', line 28867 def cell_type @cell_type end |
Class Method Details
.jsii_properties ⇒ Object
28869 28870 28871 28872 28873 |
# File 'quick_sight/cfn_analysis.rb', line 28869 def self.jsii_properties { :cell_type => "cellType", } end |
Instance Method Details
#to_jsii ⇒ Object
28875 28876 28877 28878 28879 28880 28881 |
# File 'quick_sight/cfn_analysis.rb', line 28875 def to_jsii result = {} result.merge!({ "cellType" => @cell_type, }) result.compact end |