Class: AWSCDK::QuickSight::CfnTemplate::KPIVisualStandardLayoutProperty

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

Overview

The standard layout of the KPI visual.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type:) ⇒ KPIVisualStandardLayoutProperty

Returns a new instance of KPIVisualStandardLayoutProperty.

Parameters:

  • type (String)

    The standard layout type.



15506
15507
15508
15509
# File 'quick_sight/cfn_template.rb', line 15506

def initialize(type:)
  @type = type
  Jsii::Type.check_type(@type, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "type")
end

Instance Attribute Details

#typeString (readonly)

The standard layout type.



15515
15516
15517
# File 'quick_sight/cfn_template.rb', line 15515

def type
  @type
end

Class Method Details

.jsii_propertiesObject



15517
15518
15519
15520
15521
# File 'quick_sight/cfn_template.rb', line 15517

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

Instance Method Details

#to_jsiiObject



15523
15524
15525
15526
15527
15528
15529
# File 'quick_sight/cfn_template.rb', line 15523

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