Class: AWSCDK::QuickSight::CfnTemplate::ColumnGroupColumnSchemaProperty

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

Overview

A structure describing the name, data type, and geographic role of the columns.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name: nil) ⇒ ColumnGroupColumnSchemaProperty

Returns a new instance of ColumnGroupColumnSchemaProperty.

Parameters:

  • name (String, nil) (defaults to: nil)

    The name of the column group's column schema.



3782
3783
3784
3785
# File 'quick_sight/cfn_template.rb', line 3782

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

Instance Attribute Details

#nameString? (readonly)

The name of the column group's column schema.



3791
3792
3793
# File 'quick_sight/cfn_template.rb', line 3791

def name
  @name
end

Class Method Details

.jsii_propertiesObject



3793
3794
3795
3796
3797
# File 'quick_sight/cfn_template.rb', line 3793

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

Instance Method Details

#to_jsiiObject



3799
3800
3801
3802
3803
3804
3805
# File 'quick_sight/cfn_template.rb', line 3799

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