Class: AWSCDK::QuickSight::CfnAnalysis::FilledMapSortConfigurationProperty

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

Overview

The sort configuration of a FilledMapVisual .

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(category_sort: nil) ⇒ FilledMapSortConfigurationProperty

Returns a new instance of FilledMapSortConfigurationProperty.

Parameters:



9584
9585
9586
9587
# File 'quick_sight/cfn_analysis.rb', line 9584

def initialize(category_sort: nil)
  @category_sort = category_sort
  Jsii::Type.check_type(@category_sort, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImNvbGxlY3Rpb24iOnsiZWxlbWVudHR5cGUiOnsidW5pb24iOnsidHlwZXMiOlt7ImZxbiI6ImF3cy1jZGstbGliLklSZXNvbHZhYmxlIn0seyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfcXVpY2tzaWdodC5DZm5BbmFseXNpcy5GaWVsZFNvcnRPcHRpb25zUHJvcGVydHkifV19fSwia2luZCI6ImFycmF5In19XX19")), "categorySort") unless @category_sort.nil?
end

Instance Attribute Details

#category_sortAWSCDK::IResolvable, ... (readonly)

The sort configuration of the location fields.



9593
9594
9595
# File 'quick_sight/cfn_analysis.rb', line 9593

def category_sort
  @category_sort
end

Class Method Details

.jsii_propertiesObject



9595
9596
9597
9598
9599
# File 'quick_sight/cfn_analysis.rb', line 9595

def self.jsii_properties
  {
    :category_sort => "categorySort",
  }
end

Instance Method Details

#to_jsiiObject



9601
9602
9603
9604
9605
9606
9607
# File 'quick_sight/cfn_analysis.rb', line 9601

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