Class: AWSCDK::QuickSight::CfnAnalysis::SheetVisualScopingConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnAnalysis::SheetVisualScopingConfigurationProperty
- Defined in:
- quick_sight/cfn_analysis.rb
Overview
The filter that is applied to the options.
Instance Attribute Summary collapse
-
#scope ⇒ String
readonly
The scope of the applied entities.
-
#sheet_id ⇒ String
readonly
The selected sheet that the filter is applied to.
-
#visual_ids ⇒ Array<String>?
readonly
The selected visuals that the filter is applied to.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(scope:, sheet_id:, visual_ids: nil) ⇒ SheetVisualScopingConfigurationProperty
constructor
A new instance of SheetVisualScopingConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(scope:, sheet_id:, visual_ids: nil) ⇒ SheetVisualScopingConfigurationProperty
Returns a new instance of SheetVisualScopingConfigurationProperty.
26675 26676 26677 26678 26679 26680 26681 26682 |
# File 'quick_sight/cfn_analysis.rb', line 26675 def initialize(scope:, sheet_id:, visual_ids: nil) @scope = scope Jsii::Type.check_type(@scope, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "scope") @sheet_id = sheet_id Jsii::Type.check_type(@sheet_id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "sheetId") @visual_ids = visual_ids Jsii::Type.check_type(@visual_ids, JSON.parse(Base64.strict_decode64("eyJjb2xsZWN0aW9uIjp7ImVsZW1lbnR0eXBlIjp7InByaW1pdGl2ZSI6InN0cmluZyJ9LCJraW5kIjoiYXJyYXkifX0=")), "visualIds") unless @visual_ids.nil? end |
Instance Attribute Details
#scope ⇒ String (readonly)
The scope of the applied entities. Choose one of the following options:.
ALL_VISUALSSELECTED_VISUALS
26691 26692 26693 |
# File 'quick_sight/cfn_analysis.rb', line 26691 def scope @scope end |
#sheet_id ⇒ String (readonly)
The selected sheet that the filter is applied to.
26696 26697 26698 |
# File 'quick_sight/cfn_analysis.rb', line 26696 def sheet_id @sheet_id end |
#visual_ids ⇒ Array<String>? (readonly)
The selected visuals that the filter is applied to.
26701 26702 26703 |
# File 'quick_sight/cfn_analysis.rb', line 26701 def visual_ids @visual_ids end |
Class Method Details
.jsii_properties ⇒ Object
26703 26704 26705 26706 26707 26708 26709 |
# File 'quick_sight/cfn_analysis.rb', line 26703 def self.jsii_properties { :scope => "scope", :sheet_id => "sheetId", :visual_ids => "visualIds", } end |
Instance Method Details
#to_jsii ⇒ Object
26711 26712 26713 26714 26715 26716 26717 26718 26719 |
# File 'quick_sight/cfn_analysis.rb', line 26711 def to_jsii result = {} result.merge!({ "scope" => @scope, "sheetId" => @sheet_id, "visualIds" => @visual_ids, }) result.compact end |