Class: Aws::QuickSight::Types::InputColumn
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::InputColumn
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
Note:
When making an API call, you may pass InputColumn data as a hash:
{
name: "ColumnName", # required
type: "STRING", # required, accepts STRING, INTEGER, DECIMAL, DATETIME, BIT, BOOLEAN, JSON
}
Metadata for a column that is used as the input of a transform operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of this column in the underlying data source.
-
#type ⇒ String
The data type of the column.
Instance Attribute Details
#name ⇒ String
The name of this column in the underlying data source.
7780 7781 7782 7783 7784 7785 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7780 class InputColumn < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The data type of the column.
7780 7781 7782 7783 7784 7785 |
# File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 7780 class InputColumn < Struct.new( :name, :type) SENSITIVE = [] include Aws::Structure end |