Class: Aws::QLDB::Types::LedgerSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::QLDB::Types::LedgerSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-qldb/types.rb
Overview
Information about a ledger, including its name, state, and when it was created.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creation_date_time ⇒ Time
The date and time, in epoch time format, when the ledger was created.
-
#name ⇒ String
The name of the ledger.
-
#state ⇒ String
The current status of the ledger.
Instance Attribute Details
#creation_date_time ⇒ Time
The date and time, in epoch time format, when the ledger was created. (Epoch time format is the number of seconds elapsed since 12:00:00 AM January 1, 1970 UTC.)
881 882 883 884 885 886 887 |
# File 'lib/aws-sdk-qldb/types.rb', line 881 class LedgerSummary < Struct.new( :name, :state, :creation_date_time) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the ledger.
881 882 883 884 885 886 887 |
# File 'lib/aws-sdk-qldb/types.rb', line 881 class LedgerSummary < Struct.new( :name, :state, :creation_date_time) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
The current status of the ledger.
881 882 883 884 885 886 887 |
# File 'lib/aws-sdk-qldb/types.rb', line 881 class LedgerSummary < Struct.new( :name, :state, :creation_date_time) SENSITIVE = [] include Aws::Structure end |