storage_profile_for_queues
Creates, updates, deletes, gets or lists a storage_profile_for_queues resource.
Overview
| Name | storage_profile_for_queues |
| Type | Resource |
| Id | aws.deadline.storage_profile_for_queues |
Fields
The following fields are returned by SELECT queries:
- get_storage_profile_for_queue
| Name | Datatype | Description |
|---|---|---|
display_name | string | The display name of the storage profile connected to a queue. This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field. |
file_system_locations | array | The location of the files for the storage profile within the queue. |
os_family | string | The operating system of the storage profile in the queue. (WINDOWS, LINUX, MACOS) |
storage_profile_id | string | The storage profile ID. (pattern: <code>sp-[0-9a-f]{32}</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_storage_profile_for_queue | select | farm_id, queue_id, storage_profile_id, region | Gets a storage profile for a queue. |
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 |
|---|---|---|
farm_id | string | The farm ID for the queue in storage profile. |
queue_id | string | The queue ID the queue in the storage profile. |
region | string | AWS region (default: us-east-1) |
storage_profile_id | string | The storage profile ID for the storage profile in the queue. |
SELECT examples
- get_storage_profile_for_queue
Gets a storage profile for a queue.
SELECT
display_name,
file_system_locations,
os_family,
storage_profile_id
FROM aws.deadline.storage_profile_for_queues
WHERE farm_id = '{{ farm_id }}' -- required
AND queue_id = '{{ queue_id }}' -- required
AND storage_profile_id = '{{ storage_profile_id }}' -- required
AND region = '{{ region }}' -- required
;