List Legal Holds
| backup_list_legal_holds | R Documentation |
This action returns metadata about active and previous legal holds¶
Description¶
This action returns metadata about active and previous legal holds.
Usage¶
Arguments¶
NextTokenThe next item following a partial list of returned resources. For example, if a request is made to return
MaxResultsnumber of resources,NextTokenallows you to return more items in your list starting at the location pointed to by the next token.MaxResultsThe maximum number of resource list items to be returned.
Value¶
A list with the following syntax:
list(
NextToken = "string",
LegalHolds = list(
list(
Title = "string",
Status = "CREATING"|"ACTIVE"|"CANCELING"|"CANCELED",
Description = "string",
LegalHoldId = "string",
LegalHoldArn = "string",
CreationDate = as.POSIXct(
"2015-01-01"
),
CancellationDate = as.POSIXct(
"2015-01-01"
)
)
)
)