Class: Aws::Glue::Types::ColumnError

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-glue/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

Instance Attribute Details

#column_nameString

The name of the column that failed.

Returns:

  • (String)


2642
2643
2644
2645
2646
2647
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2642

class ColumnError < Struct.new(
  :column_name,
  :error)
  SENSITIVE = []
  include Aws::Structure
end

#errorTypes::ErrorDetail

An error message with the reason for the failure of an operation.

Returns:



2642
2643
2644
2645
2646
2647
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2642

class ColumnError < Struct.new(
  :column_name,
  :error)
  SENSITIVE = []
  include Aws::Structure
end