Class: Aws::Glue::Types::TableVersionError
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::TableVersionError
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
An error record for table-version operations.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_detail ⇒ Types::ErrorDetail
The details about the error.
-
#table_name ⇒ String
The name of the table in question.
-
#version_id ⇒ String
The ID value of the version in question.
Instance Attribute Details
#error_detail ⇒ Types::ErrorDetail
The details about the error.
23089 23090 23091 23092 23093 23094 23095 |
# File 'lib/aws-sdk-glue/types.rb', line 23089 class TableVersionError < Struct.new( :table_name, :version_id, :error_detail) SENSITIVE = [] include Aws::Structure end |
#table_name ⇒ String
The name of the table in question.
23089 23090 23091 23092 23093 23094 23095 |
# File 'lib/aws-sdk-glue/types.rb', line 23089 class TableVersionError < Struct.new( :table_name, :version_id, :error_detail) SENSITIVE = [] include Aws::Structure end |
#version_id ⇒ String
The ID value of the version in question. A ‘VersionID` is a string representation of an integer. Each version is incremented by 1.
23089 23090 23091 23092 23093 23094 23095 |
# File 'lib/aws-sdk-glue/types.rb', line 23089 class TableVersionError < Struct.new( :table_name, :version_id, :error_detail) SENSITIVE = [] include Aws::Structure end |