Class: Aws::Glue::Types::Column
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::Column
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass Column data as a hash:
{
name: "NameString", # required
type: "ColumnTypeString",
comment: "CommentString",
parameters: {
"KeyString" => "ParametersMapValue",
},
}
A column in a Table
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#comment ⇒ String
A free-form text comment.
-
#name ⇒ String
The name of the
Column
. -
#parameters ⇒ Hash<String,String>
These key-value pairs define properties associated with the column.
-
#type ⇒ String
The data type of the
Column
.
Instance Attribute Details
#comment ⇒ String
A free-form text comment.
3246 3247 3248 3249 3250 3251 3252 3253 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3246 class Column < Struct.new( :name, :type, :comment, :parameters) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the Column
.
3246 3247 3248 3249 3250 3251 3252 3253 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3246 class Column < Struct.new( :name, :type, :comment, :parameters) SENSITIVE = [] include Aws::Structure end |
#parameters ⇒ Hash<String,String>
These key-value pairs define properties associated with the column.
3246 3247 3248 3249 3250 3251 3252 3253 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 3246 class Column < Struct.new( :name, :type, :comment, :parameters) SENSITIVE = [] include Aws::Structure end |