Class: AWSCDK::QuickSight::CfnDashboard::StaticFileURLSourceOptionsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::StaticFileURLSourceOptionsProperty
- Defined in:
- quick_sight/cfn_dashboard.rb
Overview
The structure that contains the URL to download the static file from.
Instance Attribute Summary collapse
-
#url ⇒ String
readonly
The URL to download the static file from.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(url:) ⇒ StaticFileURLSourceOptionsProperty
constructor
A new instance of StaticFileURLSourceOptionsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(url:) ⇒ StaticFileURLSourceOptionsProperty
Returns a new instance of StaticFileURLSourceOptionsProperty.
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
#url ⇒ String (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_properties ⇒ Object
28303 28304 28305 28306 28307 |
# File 'quick_sight/cfn_dashboard.rb', line 28303 def self.jsii_properties { :url => "url", } end |
Instance Method Details
#to_jsii ⇒ Object
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 |