List Data Protection Settings
workspacesweb_list_data_protection_settings | R Documentation |
Retrieves a list of data protection settings¶
Description¶
Retrieves a list of data protection settings.
Usage¶
workspacesweb_list_data_protection_settings(maxResults, nextToken)
Arguments¶
maxResults |
The maximum number of results to be included in the next page. |
nextToken |
The pagination token used to retrieve the next page of results for this operation. |
Value¶
A list with the following syntax:
list(
dataProtectionSettings = list(
list(
creationDate = as.POSIXct(
"2015-01-01"
),
dataProtectionSettingsArn = "string",
description = "string",
displayName = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_data_protection_settings(
maxResults = 123,
nextToken = "string"
)