Class: AWSCDK::QuickSight::CfnAnalysis::CustomNarrativeOptionsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::CustomNarrativeOptionsProperty
- Defined in:
- quick_sight/cfn_analysis.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.
6040 6041 6042 6043 |
# File 'quick_sight/cfn_analysis.rb', line 6040 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.
6049 6050 6051 |
# File 'quick_sight/cfn_analysis.rb', line 6049 def narrative @narrative end |
Class Method Details
.jsii_properties ⇒ Object
6051 6052 6053 6054 6055 |
# File 'quick_sight/cfn_analysis.rb', line 6051 def self.jsii_properties { :narrative => "narrative", } end |
Instance Method Details
#to_jsii ⇒ Object
6057 6058 6059 6060 6061 6062 6063 |
# File 'quick_sight/cfn_analysis.rb', line 6057 def to_jsii result = {} result.merge!({ "narrative" => @narrative, }) result.compact end |