Class: Aws::LakeFormation::Types::TransactionDescription
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::TransactionDescription
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lakeformation/types.rb
Overview
A structure that contains information about a transaction.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#transaction_end_time ⇒ Time
The time when the transaction committed or aborted, if it is not currently active.
-
#transaction_id ⇒ String
The ID of the transaction.
-
#transaction_start_time ⇒ Time
The time when the transaction started.
-
#transaction_status ⇒ String
A status of ACTIVE, COMMITTED, or ABORTED.
Instance Attribute Details
#transaction_end_time ⇒ Time
The time when the transaction committed or aborted, if it is not currently active.
3756 3757 3758 3759 3760 3761 3762 3763 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 3756 class TransactionDescription < Struct.new( :transaction_id, :transaction_status, :transaction_start_time, :transaction_end_time) SENSITIVE = [] include Aws::Structure end |
#transaction_id ⇒ String
The ID of the transaction.
3756 3757 3758 3759 3760 3761 3762 3763 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 3756 class TransactionDescription < Struct.new( :transaction_id, :transaction_status, :transaction_start_time, :transaction_end_time) SENSITIVE = [] include Aws::Structure end |
#transaction_start_time ⇒ Time
The time when the transaction started.
3756 3757 3758 3759 3760 3761 3762 3763 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 3756 class TransactionDescription < Struct.new( :transaction_id, :transaction_status, :transaction_start_time, :transaction_end_time) SENSITIVE = [] include Aws::Structure end |
#transaction_status ⇒ String
A status of ACTIVE, COMMITTED, or ABORTED.
3756 3757 3758 3759 3760 3761 3762 3763 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 3756 class TransactionDescription < Struct.new( :transaction_id, :transaction_status, :transaction_start_time, :transaction_end_time) SENSITIVE = [] include Aws::Structure end |