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.
3722 3723 3724 3725 3726 3727 3728 3729 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 3722 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.
3722 3723 3724 3725 3726 3727 3728 3729 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 3722 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.
3722 3723 3724 3725 3726 3727 3728 3729 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 3722 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.
3722 3723 3724 3725 3726 3727 3728 3729 |
# File 'lib/aws-sdk-lakeformation/types.rb', line 3722 class TransactionDescription < Struct.new( :transaction_id, :transaction_status, :transaction_start_time, :transaction_end_time) SENSITIVE = [] include Aws::Structure end |