Class: AWSCDK::QuickSight::CfnDashboard::AnalysisDefaultsProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
quick_sight/cfn_dashboard.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:



957
958
959
960
# File 'quick_sight/cfn_dashboard.rb', line 957

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

Instance Attribute Details

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

The configuration for default new sheet settings.



966
967
968
# File 'quick_sight/cfn_dashboard.rb', line 966

def default_new_sheet_configuration
  @default_new_sheet_configuration
end

Class Method Details

.jsii_propertiesObject



968
969
970
971
972
# File 'quick_sight/cfn_dashboard.rb', line 968

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

Instance Method Details

#to_jsiiObject



974
975
976
977
978
979
980
# File 'quick_sight/cfn_dashboard.rb', line 974

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