Class: AWSCDK::QuickSight::CfnTemplate::TableFieldCustomIconContentProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
quick_sight/cfn_template.rb

Overview

The custom icon content for the table link content configuration.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(icon: nil) ⇒ TableFieldCustomIconContentProperty

Returns a new instance of TableFieldCustomIconContentProperty.

Parameters:

  • icon (String, nil) (defaults to: nil)

    The icon set type (link) of the custom icon content for table URL link content.



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

#iconString? (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_propertiesObject



25977
25978
25979
25980
25981
# File 'quick_sight/cfn_template.rb', line 25977

def self.jsii_properties
  {
    :icon => "icon",
  }
end

Instance Method Details

#to_jsiiObject



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