Class: AWSCDK::QuickSight::CfnAnalysis::EntityProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::EntityProperty
- Defined in:
- quick_sight/cfn_analysis.rb
Overview
An object, structure, or sub-structure of an analysis, template, or dashboard.
Instance Attribute Summary collapse
-
#path ⇒ String?
readonly
The hierarchical path of the entity within the analysis, template, or dashboard definition tree.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(path: nil) ⇒ EntityProperty
constructor
A new instance of EntityProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(path: nil) ⇒ EntityProperty
Returns a new instance of EntityProperty.
8852 8853 8854 8855 |
# File 'quick_sight/cfn_analysis.rb', line 8852 def initialize(path: nil) @path = path Jsii::Type.check_type(@path, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "path") unless @path.nil? end |
Instance Attribute Details
#path ⇒ String? (readonly)
The hierarchical path of the entity within the analysis, template, or dashboard definition tree.
8861 8862 8863 |
# File 'quick_sight/cfn_analysis.rb', line 8861 def path @path end |
Class Method Details
.jsii_properties ⇒ Object
8863 8864 8865 8866 8867 |
# File 'quick_sight/cfn_analysis.rb', line 8863 def self.jsii_properties { :path => "path", } end |
Instance Method Details
#to_jsii ⇒ Object
8869 8870 8871 8872 8873 8874 8875 |
# File 'quick_sight/cfn_analysis.rb', line 8869 def to_jsii result = {} result.merge!({ "path" => @path, }) result.compact end |