Glacier.Client.
get_data_retrieval_policy
(**kwargs)¶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.
See also: AWS API Documentation
Request Syntax
response = client.get_data_retrieval_policy(
)
The AccountId
value is the AWS account ID. This value must match the AWS account ID associated with the credentials used to sign the request. You can either specify an AWS account ID or optionally a single ' -
' (hyphen), in which case Amazon Glacier uses the AWS account ID associated with the credentials used to sign the request. If you specify your account ID, do not include any hyphens ('-') in the ID.
Note: this parameter is set to "-" bydefault if no value is not specified.
{
'Policy': {
'Rules': [
{
'Strategy': 'string',
'BytesPerHour': 123
},
]
}
}
Response Structure
Contains the Amazon S3 Glacier response to the GetDataRetrievalPolicy
request.
Contains the returned data retrieval policy in JSON format.
The policy rule. Although this is a list type, currently there must be only one rule, which contains a Strategy field and optionally a BytesPerHour field.
Data retrieval policy rule.
The type of data retrieval policy to set.
Valid values: BytesPerHour|FreeTier|None
The maximum number of bytes that can be retrieved in an hour.
This field is required only if the value of the Strategy field is BytesPerHour
. Your PUT operation will be rejected if the Strategy field is not set to BytesPerHour
and you set this field.
Exceptions
Glacier.Client.exceptions.InvalidParameterValueException
Glacier.Client.exceptions.MissingParameterValueException
Glacier.Client.exceptions.ServiceUnavailableException
Examples
The example returns the current data retrieval policy for the account.
response = client.get_data_retrieval_policy(
accountId='-',
)
print(response)
Expected Output:
{
'Policy': {
'Rules': [
{
'BytesPerHour': 10737418240,
'Strategy': 'BytesPerHour',
},
],
},
'ResponseMetadata': {
'...': '...',
},
}