Get Data Retrieval Policy
glacier_get_data_retrieval_policy | R Documentation |
This operation returns the current data retrieval policy for the account and region specified in the GET request¶
Description¶
This operation returns the current data retrieval policy for the account and region specified in the GET request. For more information about data retrieval policies, see Amazon Glacier Data Retrieval Policies.
Usage¶
glacier_get_data_retrieval_policy(accountId)
Arguments¶
accountId |
[required] The |
Value¶
A list with the following syntax:
list(
Policy = list(
Rules = list(
list(
Strategy = "string",
BytesPerHour = 123
)
)
)
)
Request syntax¶
svc$get_data_retrieval_policy(
accountId = "string"
)
Examples¶
## Not run:
# The example returns the current data retrieval policy for the account.
svc$get_data_retrieval_policy(
accountId = "-"
)
## End(Not run)