Describe Ledger
qldb_describe_ledger | R Documentation |
Returns information about a ledger, including its state, permissions mode, encryption at rest settings, and when it was created¶
Description¶
Returns information about a ledger, including its state, permissions mode, encryption at rest settings, and when it was created.
Usage¶
Arguments¶
Name
[required] The name of the ledger that you want to describe.
Value¶
A list with the following syntax:
list(
Name = "string",
Arn = "string",
State = "CREATING"|"ACTIVE"|"DELETING"|"DELETED",
CreationDateTime = as.POSIXct(
"2015-01-01"
),
PermissionsMode = "ALLOW_ALL"|"STANDARD",
DeletionProtection = TRUE|FALSE,
EncryptionDescription = list(
KmsKeyArn = "string",
EncryptionStatus = "ENABLED"|"UPDATING"|"KMS_KEY_INACCESSIBLE",
InaccessibleKmsKeyDateTime = as.POSIXct(
"2015-01-01"
)
)
)