Class: Aws::GlueDataBrew::Types::ViewFrame
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::ViewFrame
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Represents the data being transformed during an action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#analytics ⇒ String
Controls if analytics computation is enabled or disabled.
-
#column_range ⇒ Integer
The number of columns to include in the view frame, beginning with the
StartColumnIndex
value and ignoring any columns in theHiddenColumns
list. -
#hidden_columns ⇒ Array<String>
A list of columns to hide in the view frame.
-
#row_range ⇒ Integer
The number of rows to include in the view frame, beginning with the
StartRowIndex
value. -
#start_column_index ⇒ Integer
The starting index for the range of columns to return in the view frame.
-
#start_row_index ⇒ Integer
The starting index for the range of rows to return in the view frame.
Instance Attribute Details
#analytics ⇒ String
Controls if analytics computation is enabled or disabled. Enabled by default.
4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4221 class ViewFrame < Struct.new( :start_column_index, :column_range, :hidden_columns, :start_row_index, :row_range, :analytics) SENSITIVE = [] include Aws::Structure end |
#column_range ⇒ Integer
The number of columns to include in the view frame, beginning with
the StartColumnIndex
value and ignoring any columns in the
HiddenColumns
list.
4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4221 class ViewFrame < Struct.new( :start_column_index, :column_range, :hidden_columns, :start_row_index, :row_range, :analytics) SENSITIVE = [] include Aws::Structure end |
#hidden_columns ⇒ Array<String>
A list of columns to hide in the view frame.
4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4221 class ViewFrame < Struct.new( :start_column_index, :column_range, :hidden_columns, :start_row_index, :row_range, :analytics) SENSITIVE = [] include Aws::Structure end |
#row_range ⇒ Integer
The number of rows to include in the view frame, beginning with the
StartRowIndex
value.
4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4221 class ViewFrame < Struct.new( :start_column_index, :column_range, :hidden_columns, :start_row_index, :row_range, :analytics) SENSITIVE = [] include Aws::Structure end |
#start_column_index ⇒ Integer
The starting index for the range of columns to return in the view frame.
4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4221 class ViewFrame < Struct.new( :start_column_index, :column_range, :hidden_columns, :start_row_index, :row_range, :analytics) SENSITIVE = [] include Aws::Structure end |
#start_row_index ⇒ Integer
The starting index for the range of rows to return in the view frame.
4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 4221 class ViewFrame < Struct.new( :start_column_index, :column_range, :hidden_columns, :start_row_index, :row_range, :analytics) SENSITIVE = [] include Aws::Structure end |