Class: AWSCDK::QuickSight::CfnTemplate::CustomNarrativeOptionsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::CustomNarrativeOptionsProperty
- Defined in:
- quick_sight/cfn_template.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.
5891 5892 5893 5894 |
# File 'quick_sight/cfn_template.rb', line 5891 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.
5900 5901 5902 |
# File 'quick_sight/cfn_template.rb', line 5900 def narrative @narrative end |
Class Method Details
.jsii_properties ⇒ Object
5902 5903 5904 5905 5906 |
# File 'quick_sight/cfn_template.rb', line 5902 def self.jsii_properties { :narrative => "narrative", } end |
Instance Method Details
#to_jsii ⇒ Object
5908 5909 5910 5911 5912 5913 5914 |
# File 'quick_sight/cfn_template.rb', line 5908 def to_jsii result = {} result.merge!({ "narrative" => @narrative, }) result.compact end |