Skip to main content

storage_profiles_for_queues

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

Overview

Namestorage_profiles_for_queues
TypeResource
Idaws.deadline.storage_profiles_for_queues

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
display_namestringThe 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_familystringThe operating system (OS) family. (WINDOWS, LINUX, MACOS)
storage_profile_idstringThe storage profile ID. (pattern: <code>sp-[0-9a-f]{32}</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_storage_profiles_for_queueselectfarm_id, queue_id, regionnextToken, maxResultsLists 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.

NameDatatypeDescription
farm_idstringThe farm ID of the queue's storage profile.
queue_idstringThe queue ID for the storage profile.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.
nextTokenstringThe token for the next set of results, or null to start from the beginning.

SELECT examples

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 }}'
;