Class: AWSCDK::QuickSight::CfnTemplate::TableFieldLinkConfigurationProperty

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

Overview

The link configuration of a table field URL.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(content:, target:) ⇒ TableFieldLinkConfigurationProperty

Returns a new instance of TableFieldLinkConfigurationProperty.

Parameters:



26076
26077
26078
26079
26080
26081
# File 'quick_sight/cfn_template.rb', line 26076

def initialize(content:, target:)
  @content = content.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnTemplate::TableFieldLinkContentConfigurationProperty.new(**content.transform_keys(&:to_sym)) : content
  Jsii::Type.check_type(@content, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmblRlbXBsYXRlLlRhYmxlRmllbGRMaW5rQ29udGVudENvbmZpZ3VyYXRpb25Qcm9wZXJ0eSJ9XX19")), "content")
  @target = target
  Jsii::Type.check_type(@target, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "target")
end

Instance Attribute Details

#targetString (readonly)

The URL target (new tab, new window, same tab) for the table link configuration.



26092
26093
26094
# File 'quick_sight/cfn_template.rb', line 26092

def target
  @target
end

Class Method Details

.jsii_propertiesObject



26094
26095
26096
26097
26098
26099
# File 'quick_sight/cfn_template.rb', line 26094

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

Instance Method Details

#to_jsiiObject



26101
26102
26103
26104
26105
26106
26107
26108
# File 'quick_sight/cfn_template.rb', line 26101

def to_jsii
  result = {}
  result.merge!({
    "content" => @content,
    "target" => @target,
  })
  result.compact
end