Skip to main content

image_set_versions

Creates, updates, deletes, gets or lists an image_set_versions resource.

Overview

Nameimage_set_versions
TypeResource
Idaws.medical_imaging.image_set_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
image_set_workflow_statusstringThe 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_atstring (date-time)The timestamp when the image set properties were created.
deleted_atstring (date-time)The timestamp when the image set properties were deleted.
image_set_idstringThe image set identifier. (pattern: <code>[0-9a-z]{32}</code>)
image_set_statestringThe image set state. (ACTIVE, LOCKED, DELETED)
is_primarybooleanThe flag to determine whether the image set is primary or not.
messagestringThe error message thrown if an image set action fails. (pattern: <code>[\w -:`]+</code>)
overridesobjectContains 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_atstring (date-time)The timestamp when the image set properties were updated.
version_idstringThe image set version identifier. (pattern: <code>\d+</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_image_set_versionsselectdatastore_id, image_set_id, regionnextToken, maxResultsList 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.

NameDatatypeDescription
datastore_idstringThe data store identifier.
image_set_idstringThe image set identifier.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe max results count.
nextTokenstringThe pagination token used to request the list of image set versions on the next page.

SELECT examples

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