Creates an evaluation form in the specified Connect Customer instance
Source:R/connect_operations.R
connect_create_evaluation_form.RdCreates an evaluation form in the specified Connect Customer instance. The form can be used to define questions related to agent performance, and create sections to organize such questions. Question and section identifiers cannot be duplicated within the same evaluation form.
See https://www.paws-r-sdk.com/docs/connect_create_evaluation_form/ for full documentation.
Usage
connect_create_evaluation_form(
InstanceId,
Title,
Description = NULL,
Items,
ScoringStrategy = NULL,
AutoEvaluationConfiguration = NULL,
ClientToken = NULL,
AsDraft = NULL,
Tags = NULL,
ReviewConfiguration = NULL,
TargetConfiguration = NULL,
LanguageConfiguration = NULL
)Arguments
- InstanceId
[required] The identifier of the Connect Customer instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
- Title
[required] A title of the evaluation form.
- Description
The description of the evaluation form.
- Items
[required] Items that are part of the evaluation form. The total number of sections and questions must not exceed 100 each. Questions must be contained in a section.
- ScoringStrategy
A scoring strategy of the evaluation form.
- AutoEvaluationConfiguration
Configuration information about automated evaluations.
- ClientToken
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If not provided, the Amazon Web Services SDK populates this field. For more information about idempotency, see Making retries safe with idempotent APIs.
- AsDraft
A boolean flag indicating whether to create evaluation form in draft state.
The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.
- ReviewConfiguration
Configuration information about evaluation reviews.
- TargetConfiguration
Configuration that specifies the target for the evaluation form.
- LanguageConfiguration
Configuration for language settings of the evaluation form.