Class: AWSCDK::QuickSight::CfnAnalysis::EntityProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
quick_sight/cfn_analysis.rb

Overview

An object, structure, or sub-structure of an analysis, template, or dashboard.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path: nil) ⇒ EntityProperty

Returns a new instance of EntityProperty.

Parameters:

  • path (String, nil) (defaults to: nil)

    The hierarchical path of the entity within the analysis, template, or dashboard definition tree.



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

#pathString? (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_propertiesObject



8863
8864
8865
8866
8867
# File 'quick_sight/cfn_analysis.rb', line 8863

def self.jsii_properties
  {
    :path => "path",
  }
end

Instance Method Details

#to_jsiiObject



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