Skip to main content

evaluation_form_versions

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

Overview

Nameevaluation_form_versions
TypeResource
Idaws.connect.evaluation_form_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
created_bystringThe Amazon Resource Name (ARN) of the user who created the evaluation form.
created_timestring (date-time)The timestamp for when the evaluation form was created.
evaluation_form_arnstringThe Amazon Resource Name (ARN) for the evaluation form resource.
evaluation_form_idstringThe unique identifier for the evaluation form.
evaluation_form_versionintegerA version of the evaluation form.
last_modified_bystringThe Amazon Resource Name (ARN) of the user who last updated the evaluation form.
last_modified_timestring (date-time)The timestamp for when the evaluation form was last updated.
lockedbooleanThe flag indicating whether the evaluation form is locked for changes.
statusstringThe status of the evaluation form. (DRAFT, ACTIVE)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_evaluation_form_versionsselectinstance_id, evaluation_form_id, regionmaxResults, nextTokenLists versions of an evaluation form in the specified Connect Customer instance.

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
evaluation_form_idstringThe unique identifier for the evaluation form.
instance_idstringThe identifier of the Connect Customer instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of results to return per page.
nextTokenstringThe token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

SELECT examples

Lists versions of an evaluation form in the specified Connect Customer instance.

SELECT
created_by,
created_time,
evaluation_form_arn,
evaluation_form_id,
evaluation_form_version,
last_modified_by,
last_modified_time,
locked,
status
FROM aws.connect.evaluation_form_versions
WHERE instance_id = '{{ instance_id }}' -- required
AND evaluation_form_id = '{{ evaluation_form_id }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;