Class: AWSCDK::QuickSight::CfnTemplate::AnalysisDefaultsProperty

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



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_configurationAWSCDK::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_propertiesObject



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_jsiiObject



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