Class: AWSCDK::QuickSight::CfnDashboard::FilledMapSortConfigurationProperty

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



10337
10338
10339
10340
# File 'quick_sight/cfn_dashboard.rb', line 10337

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

Instance Attribute Details

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

The sort configuration of the location fields.



10346
10347
10348
# File 'quick_sight/cfn_dashboard.rb', line 10346

def category_sort
  @category_sort
end

Class Method Details

.jsii_propertiesObject



10348
10349
10350
10351
10352
# File 'quick_sight/cfn_dashboard.rb', line 10348

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

Instance Method Details

#to_jsiiObject



10354
10355
10356
10357
10358
10359
10360
# File 'quick_sight/cfn_dashboard.rb', line 10354

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