evaluation_form_versions
Creates, updates, deletes, gets or lists an evaluation_form_versions resource.
Overview
| Name | evaluation_form_versions |
| Type | Resource |
| Id | aws.connect.evaluation_form_versions |
Fields
The following fields are returned by SELECT queries:
- list_evaluation_form_versions
| Name | Datatype | Description |
|---|---|---|
created_by | string | The Amazon Resource Name (ARN) of the user who created the evaluation form. |
created_time | string (date-time) | The timestamp for when the evaluation form was created. |
evaluation_form_arn | string | The Amazon Resource Name (ARN) for the evaluation form resource. |
evaluation_form_id | string | The unique identifier for the evaluation form. |
evaluation_form_version | integer | A version of the evaluation form. |
last_modified_by | string | The Amazon Resource Name (ARN) of the user who last updated the evaluation form. |
last_modified_time | string (date-time) | The timestamp for when the evaluation form was last updated. |
locked | boolean | The flag indicating whether the evaluation form is locked for changes. |
status | string | The status of the evaluation form. (DRAFT, ACTIVE) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_evaluation_form_versions | select | instance_id, evaluation_form_id, region | maxResults, nextToken | Lists 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.
| Name | Datatype | Description |
|---|---|---|
evaluation_form_id | string | The unique identifier for the evaluation form. |
instance_id | string | The identifier of the Connect Customer instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance. |
region | string | AWS region (default: us-east-1) |
maxResults | integer | The maximum number of results to return per page. |
nextToken | string | The 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
- list_evaluation_form_versions
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 }}'
;