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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#column_nameString

The name of the column that failed.

Returns:

  • (String)


2565
2566
2567
2568
2569
2570
# File 'lib/aws-sdk-glue/types.rb', line 2565

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:



2565
2566
2567
2568
2569
2570
# File 'lib/aws-sdk-glue/types.rb', line 2565

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