Class: AWSCDK::QuickSight::CfnDashboard::SheetImageSourceProperty

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

Overview

The source of the image.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(sheet_image_static_file_source: nil) ⇒ SheetImageSourceProperty

Returns a new instance of SheetImageSourceProperty.

Parameters:



27444
27445
27446
27447
# File 'quick_sight/cfn_dashboard.rb', line 27444

def initialize(sheet_image_static_file_source: nil)
  @sheet_image_static_file_source = sheet_image_static_file_source.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnDashboard::SheetImageStaticFileSourceProperty.new(**sheet_image_static_file_source.transform_keys(&:to_sym)) : sheet_image_static_file_source
  Jsii::Type.check_type(@sheet_image_static_file_source, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkRhc2hib2FyZC5TaGVldEltYWdlU3RhdGljRmlsZVNvdXJjZVByb3BlcnR5In1dfX0=")), "sheetImageStaticFileSource") unless @sheet_image_static_file_source.nil?
end

Instance Attribute Details

#sheet_image_static_file_sourceAWSCDK::IResolvable, ... (readonly)

The source of the static file that contains the image.



27453
27454
27455
# File 'quick_sight/cfn_dashboard.rb', line 27453

def sheet_image_static_file_source
  @sheet_image_static_file_source
end

Class Method Details

.jsii_propertiesObject



27455
27456
27457
27458
27459
# File 'quick_sight/cfn_dashboard.rb', line 27455

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

Instance Method Details

#to_jsiiObject



27461
27462
27463
27464
27465
27466
27467
# File 'quick_sight/cfn_dashboard.rb', line 27461

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