Class: AWSCDK::QuickSight::CfnDashboard::CustomNarrativeOptionsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::CustomNarrativeOptionsProperty
- Defined in:
- quick_sight/cfn_dashboard.rb
Overview
The custom narrative options.
Instance Attribute Summary collapse
-
#narrative ⇒ String
readonly
The string input of custom narrative.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(narrative:) ⇒ CustomNarrativeOptionsProperty
constructor
A new instance of CustomNarrativeOptionsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(narrative:) ⇒ CustomNarrativeOptionsProperty
Returns a new instance of CustomNarrativeOptionsProperty.
5906 5907 5908 5909 |
# File 'quick_sight/cfn_dashboard.rb', line 5906 def initialize(narrative:) @narrative = narrative Jsii::Type.check_type(@narrative, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "narrative") end |
Instance Attribute Details
#narrative ⇒ String (readonly)
The string input of custom narrative.
5915 5916 5917 |
# File 'quick_sight/cfn_dashboard.rb', line 5915 def narrative @narrative end |
Class Method Details
.jsii_properties ⇒ Object
5917 5918 5919 5920 5921 |
# File 'quick_sight/cfn_dashboard.rb', line 5917 def self.jsii_properties { :narrative => "narrative", } end |
Instance Method Details
#to_jsii ⇒ Object
5923 5924 5925 5926 5927 5928 5929 |
# File 'quick_sight/cfn_dashboard.rb', line 5923 def to_jsii result = {} result.merge!({ "narrative" => @narrative, }) result.compact end |