Class: Aws::QLDB::Types::LedgerSummary

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#creation_date_timeTime

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.)

Returns:

  • (Time)


881
882
883
884
885
886
887
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 881

class LedgerSummary < Struct.new(
  :name,
  :state,
  :creation_date_time)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of the ledger.

Returns:

  • (String)


881
882
883
884
885
886
887
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 881

class LedgerSummary < Struct.new(
  :name,
  :state,
  :creation_date_time)
  SENSITIVE = []
  include Aws::Structure
end

#stateString

The current status of the ledger.

Returns:

  • (String)


881
882
883
884
885
886
887
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 881

class LedgerSummary < Struct.new(
  :name,
  :state,
  :creation_date_time)
  SENSITIVE = []
  include Aws::Structure
end