Skip to main content

provisioned_capacities

Creates, updates, deletes, gets or lists a provisioned_capacities resource.

Overview

Nameprovisioned_capacities
TypeResource
Idaws.glacier.provisioned_capacities

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
provisioned_capacity_listarrayThe response body contains the following JSON fields.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_provisioned_capacityselectaccount_id, regionThis operation lists the provisioned capacity units for the specified AWS account.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
account_idstringThe AWS account ID of the account that owns the vault. 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 use an account ID, don't include any hyphens ('-') in the ID.
regionstringAWS region (default: us-east-1)

SELECT examples

This operation lists the provisioned capacity units for the specified AWS account.

SELECT
provisioned_capacity_list
FROM aws.glacier.provisioned_capacities
WHERE account_id = '{{ account_id }}' -- required
AND region = '{{ region }}' -- required
;