Class: AWSCDK::QuickSight::CfnDashboard::StaticFileURLSourceOptionsProperty

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

Overview

The structure that contains the URL to download the static file from.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(url:) ⇒ StaticFileURLSourceOptionsProperty

Returns a new instance of StaticFileURLSourceOptionsProperty.

Parameters:

  • url (String)

    The URL to download the static file from.



28292
28293
28294
28295
# File 'quick_sight/cfn_dashboard.rb', line 28292

def initialize(url:)
  @url = url
  Jsii::Type.check_type(@url, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "url")
end

Instance Attribute Details

#urlString (readonly)

The URL to download the static file from.



28301
28302
28303
# File 'quick_sight/cfn_dashboard.rb', line 28301

def url
  @url
end

Class Method Details

.jsii_propertiesObject



28303
28304
28305
28306
28307
# File 'quick_sight/cfn_dashboard.rb', line 28303

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

Instance Method Details

#to_jsiiObject



28309
28310
28311
28312
28313
28314
28315
# File 'quick_sight/cfn_dashboard.rb', line 28309

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