Class: Aws::QLDB::Types::UpdateLedgerResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::QLDB::Types::UpdateLedgerResponse
- Defined in:
- gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) for the ledger.
-
#creation_date_time ⇒ Time
The date and time, in epoch time format, when the ledger was created.
-
#deletion_protection ⇒ Boolean
The flag that prevents a ledger from being deleted by any user.
-
#encryption_description ⇒ Types::LedgerEncryptionDescription
Information about the encryption of data at rest in the ledger.
-
#name ⇒ String
The name of the ledger.
-
#state ⇒ String
The current status of the ledger.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) for the ledger.
1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 |
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 1605 class UpdateLedgerResponse < Struct.new( :name, :arn, :state, :creation_date_time, :deletion_protection, :encryption_description) SENSITIVE = [] include Aws::Structure end |
#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.)
1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 |
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 1605 class UpdateLedgerResponse < Struct.new( :name, :arn, :state, :creation_date_time, :deletion_protection, :encryption_description) SENSITIVE = [] include Aws::Structure end |
#deletion_protection ⇒ Boolean
The flag that prevents a ledger from being deleted by any user. If
not provided on ledger creation, this feature is enabled (true
) by
default.
If deletion protection is enabled, you must first disable it before
you can delete the ledger. You can disable it by calling the
UpdateLedger
operation to set the flag to false
.
1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 |
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 1605 class UpdateLedgerResponse < Struct.new( :name, :arn, :state, :creation_date_time, :deletion_protection, :encryption_description) SENSITIVE = [] include Aws::Structure end |
#encryption_description ⇒ Types::LedgerEncryptionDescription
Information about the encryption of data at rest in the ledger. This includes the current status, the KMS key, and when the key became inaccessible (in the case of an error).
1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 |
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 1605 class UpdateLedgerResponse < Struct.new( :name, :arn, :state, :creation_date_time, :deletion_protection, :encryption_description) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the ledger.
1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 |
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 1605 class UpdateLedgerResponse < Struct.new( :name, :arn, :state, :creation_date_time, :deletion_protection, :encryption_description) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
The current status of the ledger.
1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 |
# File 'gems/aws-sdk-qldb/lib/aws-sdk-qldb/types.rb', line 1605 class UpdateLedgerResponse < Struct.new( :name, :arn, :state, :creation_date_time, :deletion_protection, :encryption_description) SENSITIVE = [] include Aws::Structure end |