Class: AWSCDK::QuickSight::CfnTemplate::TableFieldCustomIconContentProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::TableFieldCustomIconContentProperty
- Defined in:
- quick_sight/cfn_template.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.
25966 25967 25968 25969 |
# File 'quick_sight/cfn_template.rb', line 25966 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.
25975 25976 25977 |
# File 'quick_sight/cfn_template.rb', line 25975 def icon @icon end |
Class Method Details
.jsii_properties ⇒ Object
25977 25978 25979 25980 25981 |
# File 'quick_sight/cfn_template.rb', line 25977 def self.jsii_properties { :icon => "icon", } end |
Instance Method Details
#to_jsii ⇒ Object
25983 25984 25985 25986 25987 25988 25989 |
# File 'quick_sight/cfn_template.rb', line 25983 def to_jsii result = {} result.merge!({ "icon" => @icon, }) result.compact end |