image_set_versions
Creates, updates, deletes, gets or lists an image_set_versions resource.
Overview
| Name | image_set_versions |
| Type | Resource |
| Id | aws.medical_imaging.image_set_versions |
Fields
The following fields are returned by SELECT queries:
- list_image_set_versions
| Name | Datatype | Description |
|---|---|---|
image_set_workflow_status | string | The image set workflow status. (CREATED, COPIED, COPYING, COPYING_WITH_READ_ONLY_ACCESS, COPY_FAILED, UPDATING, UPDATING_FOR_STUDY_CONSISTENCY, UPDATED, UPDATE_FAILED, DELETING, DELETED, IMPORTING, IMPORTED, IMPORT_FAILED) |
created_at | string (date-time) | The timestamp when the image set properties were created. |
deleted_at | string (date-time) | The timestamp when the image set properties were deleted. |
image_set_id | string | The image set identifier. (pattern: <code>[0-9a-z]{32}</code>) |
image_set_state | string | The image set state. (ACTIVE, LOCKED, DELETED) |
is_primary | boolean | The flag to determine whether the image set is primary or not. |
message | string | The error message thrown if an image set action fails. (pattern: <code>[\w -:`]+</code>) |
overrides | object | Contains details on overrides used when creating the returned version of an image set. For example, if forced exists, the forced flag was used when creating the image set. |
updated_at | string (date-time) | The timestamp when the image set properties were updated. |
version_id | string | The image set version identifier. (pattern: <code>\d+</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_image_set_versions | select | datastore_id, image_set_id, region | nextToken, maxResults | List image set versions. |
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 |
|---|---|---|
datastore_id | string | The data store identifier. |
image_set_id | string | The image set identifier. |
region | string | AWS region (default: us-east-1) |
maxResults | integer | The max results count. |
nextToken | string | The pagination token used to request the list of image set versions on the next page. |
SELECT examples
- list_image_set_versions
List image set versions.
SELECT
image_set_workflow_status,
created_at,
deleted_at,
image_set_id,
image_set_state,
is_primary,
message,
overrides,
updated_at,
version_id
FROM aws.medical_imaging.image_set_versions
WHERE datastore_id = '{{ datastore_id }}' -- required
AND image_set_id = '{{ image_set_id }}' -- required
AND region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;