Class: AWSCDK::QuickSight::CfnDashboard::FilterTextAreaControlProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnDashboard::FilterTextAreaControlProperty
- Defined in:
- quick_sight/cfn_dashboard.rb
Overview
A control to display a text box that is used to enter multiple entries.
Instance Attribute Summary collapse
-
#delimiter ⇒ String?
readonly
The delimiter that is used to separate the lines in text.
-
#display_options ⇒ AWSCDK::IResolvable, ...
readonly
The display options of a control.
-
#filter_control_id ⇒ String
readonly
The ID of the
FilterTextAreaControl. -
#source_filter_id ⇒ String
readonly
The source filter ID of the
FilterTextAreaControl. -
#title ⇒ String
readonly
The title of the
FilterTextAreaControl.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(filter_control_id:, source_filter_id:, title:, delimiter: nil, display_options: nil) ⇒ FilterTextAreaControlProperty
constructor
A new instance of FilterTextAreaControlProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(filter_control_id:, source_filter_id:, title:, delimiter: nil, display_options: nil) ⇒ FilterTextAreaControlProperty
Returns a new instance of FilterTextAreaControlProperty.
11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 |
# File 'quick_sight/cfn_dashboard.rb', line 11551 def initialize(filter_control_id:, source_filter_id:, title:, delimiter: nil, display_options: nil) @filter_control_id = filter_control_id Jsii::Type.check_type(@filter_control_id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "filterControlId") @source_filter_id = source_filter_id Jsii::Type.check_type(@source_filter_id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "sourceFilterId") @title = title Jsii::Type.check_type(@title, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "title") @delimiter = delimiter Jsii::Type.check_type(@delimiter, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "delimiter") unless @delimiter.nil? @display_options = .is_a?(Hash) ? ::AWSCDK::QuickSight::CfnDashboard::TextAreaControlDisplayOptionsProperty.new(**.transform_keys(&:to_sym)) : Jsii::Type.check_type(@display_options, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkRhc2hib2FyZC5UZXh0QXJlYUNvbnRyb2xEaXNwbGF5T3B0aW9uc1Byb3BlcnR5In1dfX0=")), "displayOptions") unless @display_options.nil? end |
Instance Attribute Details
#delimiter ⇒ String? (readonly)
The delimiter that is used to separate the lines in text.
11583 11584 11585 |
# File 'quick_sight/cfn_dashboard.rb', line 11583 def delimiter @delimiter end |
#display_options ⇒ AWSCDK::IResolvable, ... (readonly)
The display options of a control.
11588 11589 11590 |
# File 'quick_sight/cfn_dashboard.rb', line 11588 def @display_options end |
#filter_control_id ⇒ String (readonly)
The ID of the FilterTextAreaControl .
11568 11569 11570 |
# File 'quick_sight/cfn_dashboard.rb', line 11568 def filter_control_id @filter_control_id end |
#source_filter_id ⇒ String (readonly)
The source filter ID of the FilterTextAreaControl .
11573 11574 11575 |
# File 'quick_sight/cfn_dashboard.rb', line 11573 def source_filter_id @source_filter_id end |
#title ⇒ String (readonly)
The title of the FilterTextAreaControl .
11578 11579 11580 |
# File 'quick_sight/cfn_dashboard.rb', line 11578 def title @title end |
Class Method Details
.jsii_properties ⇒ Object
11590 11591 11592 11593 11594 11595 11596 11597 11598 |
# File 'quick_sight/cfn_dashboard.rb', line 11590 def self.jsii_properties { :filter_control_id => "filterControlId", :source_filter_id => "sourceFilterId", :title => "title", :delimiter => "delimiter", :display_options => "displayOptions", } end |
Instance Method Details
#to_jsii ⇒ Object
11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 |
# File 'quick_sight/cfn_dashboard.rb', line 11600 def to_jsii result = {} result.merge!({ "filterControlId" => @filter_control_id, "sourceFilterId" => @source_filter_id, "title" => @title, "delimiter" => @delimiter, "displayOptions" => @display_options, }) result.compact end |