Class: Aws::Glue::Types::ColumnError
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::ColumnError
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Encapsulates a column name that failed and the reason for failure.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#column_name ⇒ String
The name of the column that failed.
-
#error ⇒ Types::ErrorDetail
An error message with the reason for the failure of an operation.
Instance Attribute Details
#column_name ⇒ String
The name of the column that failed.
2701 2702 2703 2704 2705 2706 |
# File 'lib/aws-sdk-glue/types.rb', line 2701 class ColumnError < Struct.new( :column_name, :error) SENSITIVE = [] include Aws::Structure end |
#error ⇒ Types::ErrorDetail
An error message with the reason for the failure of an operation.
2701 2702 2703 2704 2705 2706 |
# File 'lib/aws-sdk-glue/types.rb', line 2701 class ColumnError < Struct.new( :column_name, :error) SENSITIVE = [] include Aws::Structure end |