storage_profiles_for_queues
Creates, updates, deletes, gets or lists a storage_profiles_for_queues resource.
Overview
| Name | storage_profiles_for_queues |
| Type | Resource |
| Id | aws.deadline.storage_profiles_for_queues |
Fields
The following fields are returned by SELECT queries:
- list_storage_profiles_for_queue
| Name | Datatype | Description |
|---|---|---|
display_name | string | The display name of the storage profile summary to update. 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. |
os_family | string | The operating system (OS) family. (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 |
|---|---|---|---|---|
list_storage_profiles_for_queue | select | farm_id, queue_id, region | nextToken, maxResults | Lists storage profiles 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 of the queue's storage profile. |
queue_id | string | The queue ID for the storage profile. |
region | string | AWS region (default: us-east-1) |
maxResults | integer | The maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages. |
nextToken | string | The token for the next set of results, or null to start from the beginning. |
SELECT examples
- list_storage_profiles_for_queue
Lists storage profiles for a queue.
SELECT
display_name,
os_family,
storage_profile_id
FROM aws.deadline.storage_profiles_for_queues
WHERE farm_id = '{{ farm_id }}' -- required
AND queue_id = '{{ queue_id }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;