List Evaluation Forms
connect_list_evaluation_forms | R Documentation |
Lists evaluation forms in the specified Amazon Connect instance¶
Description¶
Lists evaluation forms in the specified Amazon Connect instance.
Usage¶
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.
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(
EvaluationFormSummaryList = list(
list(
EvaluationFormId = "string",
EvaluationFormArn = "string",
Title = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
CreatedBy = "string",
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
LastModifiedBy = "string",
LastActivatedTime = as.POSIXct(
"2015-01-01"
),
LastActivatedBy = "string",
LatestVersion = 123,
ActiveVersion = 123
)
),
NextToken = "string"
)