Class: AWSCDK::QuickSight::CfnTemplate::AnalysisDefaultsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::AnalysisDefaultsProperty
- Defined in:
- quick_sight/cfn_template.rb
Overview
The configuration for default analysis settings.
Instance Attribute Summary collapse
-
#default_new_sheet_configuration ⇒ AWSCDK::IResolvable, AWSCDK::QuickSight::CfnTemplate::DefaultNewSheetConfigurationProperty
readonly
The configuration for default new sheet settings.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(default_new_sheet_configuration:) ⇒ AnalysisDefaultsProperty
constructor
A new instance of AnalysisDefaultsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(default_new_sheet_configuration:) ⇒ AnalysisDefaultsProperty
Returns a new instance of AnalysisDefaultsProperty.
833 834 835 836 |
# File 'quick_sight/cfn_template.rb', line 833 def initialize(default_new_sheet_configuration:) @default_new_sheet_configuration = default_new_sheet_configuration.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnTemplate::DefaultNewSheetConfigurationProperty.new(**default_new_sheet_configuration.transform_keys(&:to_sym)) : default_new_sheet_configuration Jsii::Type.check_type(@default_new_sheet_configuration, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmblRlbXBsYXRlLkRlZmF1bHROZXdTaGVldENvbmZpZ3VyYXRpb25Qcm9wZXJ0eSJ9XX19")), "defaultNewSheetConfiguration") end |
Instance Attribute Details
#default_new_sheet_configuration ⇒ AWSCDK::IResolvable, AWSCDK::QuickSight::CfnTemplate::DefaultNewSheetConfigurationProperty (readonly)
The configuration for default new sheet settings.
842 843 844 |
# File 'quick_sight/cfn_template.rb', line 842 def default_new_sheet_configuration @default_new_sheet_configuration end |
Class Method Details
.jsii_properties ⇒ Object
844 845 846 847 848 |
# File 'quick_sight/cfn_template.rb', line 844 def self.jsii_properties { :default_new_sheet_configuration => "defaultNewSheetConfiguration", } end |
Instance Method Details
#to_jsii ⇒ Object
850 851 852 853 854 855 856 |
# File 'quick_sight/cfn_template.rb', line 850 def to_jsii result = {} result.merge!({ "defaultNewSheetConfiguration" => @default_new_sheet_configuration, }) result.compact end |