Class: AWSCDK::QuickSight::CfnTemplate::ColumnGroupColumnSchemaProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::ColumnGroupColumnSchemaProperty
- 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
-
#name ⇒ String?
readonly
The name of the column group's column schema.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(name: nil) ⇒ ColumnGroupColumnSchemaProperty
constructor
A new instance of ColumnGroupColumnSchemaProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(name: nil) ⇒ ColumnGroupColumnSchemaProperty
Returns a new instance of ColumnGroupColumnSchemaProperty.
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
#name ⇒ String? (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_properties ⇒ Object
3793 3794 3795 3796 3797 |
# File 'quick_sight/cfn_template.rb', line 3793 def self.jsii_properties { :name => "name", } end |
Instance Method Details
#to_jsii ⇒ Object
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 |