Skip to content

List Evaluation Form Versions

connect_list_evaluation_form_versions R Documentation

Lists versions of an evaluation form in the specified Amazon Connect instance

Description

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

Usage

connect_list_evaluation_form_versions(InstanceId, EvaluationFormId,
  MaxResults, NextToken)

Arguments

InstanceId

[required] The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

EvaluationFormId

[required] The unique identifier for the evaluation form.

MaxResults

The maximum number of results to return per page.

NextToken

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.

Value

A list with the following syntax:

list(
  EvaluationFormVersionSummaryList = list(
    list(
      EvaluationFormArn = "string",
      EvaluationFormId = "string",
      EvaluationFormVersion = 123,
      Locked = TRUE|FALSE,
      Status = "DRAFT"|"ACTIVE",
      CreatedTime = as.POSIXct(
        "2015-01-01"
      ),
      CreatedBy = "string",
      LastModifiedTime = as.POSIXct(
        "2015-01-01"
      ),
      LastModifiedBy = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_evaluation_form_versions(
  InstanceId = "string",
  EvaluationFormId = "string",
  MaxResults = 123,
  NextToken = "string"
)