provisioned_capacities
Creates, updates, deletes, gets or lists a provisioned_capacities resource.
Overview
| Name | provisioned_capacities |
| Type | Resource |
| Id | aws.glacier.provisioned_capacities |
Fields
The following fields are returned by SELECT queries:
- list_provisioned_capacity
| Name | Datatype | Description |
|---|---|---|
provisioned_capacity_list | array | The response body contains the following JSON fields. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_provisioned_capacity | select | account_id, region | This 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.
| Name | Datatype | Description |
|---|---|---|
account_id | string | The 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. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_provisioned_capacity
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
;