AWSConnectCreateEvaluationFormRequest

Objective-C

@interface AWSConnectCreateEvaluationFormRequest

Swift

class AWSConnectCreateEvaluationFormRequest
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable clientToken;

    Swift

    var clientToken: String? { get set }
  • The description of the evaluation form.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable detail;

    Swift

    var detail: String? { get set }
  • The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable instanceId;

    Swift

    var instanceId: String? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSConnectEvaluationFormItem *> *_Nullable items;

    Swift

    var items: [AWSConnectEvaluationFormItem]? { get set }
  • A scoring strategy of the evaluation form.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSConnectEvaluationFormScoringStrategy *_Nullable scoringStrategy;

    Swift

    var scoringStrategy: AWSConnectEvaluationFormScoringStrategy? { get set }
  • A title of the evaluation form.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable title;

    Swift

    var title: String? { get set }