Class: Aws::Glue::Types::TableVersion
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::TableVersion
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Specifies a version of a table.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#table ⇒ Types::Table
The table in question.
-
#version_id ⇒ String
The ID value that identifies this table version.
Instance Attribute Details
#table ⇒ Types::Table
The table in question.
25437 25438 25439 25440 25441 25442 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 25437 class TableVersion < Struct.new( :table, :version_id) SENSITIVE = [] include Aws::Structure end |
#version_id ⇒ String
The ID value that identifies this table version. A VersionId
is a
string representation of an integer. Each version is incremented by
1.
25437 25438 25439 25440 25441 25442 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 25437 class TableVersion < Struct.new( :table, :version_id) SENSITIVE = [] include Aws::Structure end |