Class: AWSCDK::QuickSight::CfnAnalysis::AnalysisDefaultsProperty

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

Overview

The configuration for default analysis settings.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(default_new_sheet_configuration:) ⇒ AnalysisDefaultsProperty

Returns a new instance of AnalysisDefaultsProperty.

Parameters:



851
852
853
854
# File 'quick_sight/cfn_analysis.rb', line 851

def initialize(default_new_sheet_configuration:)
  @default_new_sheet_configuration = default_new_sheet_configuration.is_a?(Hash) ? ::AWSCDK::QuickSight::CfnAnalysis::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("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19xdWlja3NpZ2h0LkNmbkFuYWx5c2lzLkRlZmF1bHROZXdTaGVldENvbmZpZ3VyYXRpb25Qcm9wZXJ0eSJ9XX19")), "defaultNewSheetConfiguration")
end

Instance Attribute Details

#default_new_sheet_configurationAWSCDK::IResolvable, AWSCDK::QuickSight::CfnAnalysis::DefaultNewSheetConfigurationProperty (readonly)

The configuration for default new sheet settings.



860
861
862
# File 'quick_sight/cfn_analysis.rb', line 860

def default_new_sheet_configuration
  @default_new_sheet_configuration
end

Class Method Details

.jsii_propertiesObject



862
863
864
865
866
# File 'quick_sight/cfn_analysis.rb', line 862

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

Instance Method Details

#to_jsiiObject



868
869
870
871
872
873
874
# File 'quick_sight/cfn_analysis.rb', line 868

def to_jsii
  result = {}
  result.merge!({
    "defaultNewSheetConfiguration" => @default_new_sheet_configuration,
  })
  result.compact
end