Class: AWSCDK::QuickSight::CfnTemplate::FilledMapSortConfigurationProperty

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



9392
9393
9394
9395
# File 'quick_sight/cfn_template.rb', line 9392

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

Instance Attribute Details

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

The sort configuration of the location fields.



9401
9402
9403
# File 'quick_sight/cfn_template.rb', line 9401

def category_sort
  @category_sort
end

Class Method Details

.jsii_propertiesObject



9403
9404
9405
9406
9407
# File 'quick_sight/cfn_template.rb', line 9403

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

Instance Method Details

#to_jsiiObject



9409
9410
9411
9412
9413
9414
9415
# File 'quick_sight/cfn_template.rb', line 9409

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