Class: AWSCDK::QuickSight::CfnDashboard::TableFieldCustomIconContentProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::TableFieldCustomIconContentProperty
- Defined in:
- quick_sight/cfn_dashboard.rb
Overview
The custom icon content for the table link content configuration.
Instance Attribute Summary collapse
-
#icon ⇒ String?
readonly
The icon set type (link) of the custom icon content for table URL link content.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(icon: nil) ⇒ TableFieldCustomIconContentProperty
constructor
A new instance of TableFieldCustomIconContentProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(icon: nil) ⇒ TableFieldCustomIconContentProperty
Returns a new instance of TableFieldCustomIconContentProperty.
29136 29137 29138 29139 |
# File 'quick_sight/cfn_dashboard.rb', line 29136 def initialize(icon: nil) @icon = icon Jsii::Type.check_type(@icon, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "icon") unless @icon.nil? end |
Instance Attribute Details
#icon ⇒ String? (readonly)
The icon set type (link) of the custom icon content for table URL link content.
29145 29146 29147 |
# File 'quick_sight/cfn_dashboard.rb', line 29145 def icon @icon end |
Class Method Details
.jsii_properties ⇒ Object
29147 29148 29149 29150 29151 |
# File 'quick_sight/cfn_dashboard.rb', line 29147 def self.jsii_properties { :icon => "icon", } end |
Instance Method Details
#to_jsii ⇒ Object
29153 29154 29155 29156 29157 29158 29159 |
# File 'quick_sight/cfn_dashboard.rb', line 29153 def to_jsii result = {} result.merge!({ "icon" => @icon, }) result.compact end |