Class: Aws::QLDB::Types::LedgerSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::QLDB::Types::LedgerSummary
- Defined in:
- gems/aws-sdk-qldb/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.)
861 862 863 864 865 866 867 |
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 861 class LedgerSummary < Struct.new( :name, :state, :creation_date_time) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the ledger.
861 862 863 864 865 866 867 |
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 861 class LedgerSummary < Struct.new( :name, :state, :creation_date_time) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
The current status of the ledger.
861 862 863 864 865 866 867 |
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 861 class LedgerSummary < Struct.new( :name, :state, :creation_date_time) SENSITIVE = [] include Aws::Structure end |