AWSConnectUpdateEvaluationFormRequest

Objective-C

@interface AWSConnectUpdateEvaluationFormRequest

Swift

class AWSConnectUpdateEvaluationFormRequest
  • 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 }
  • A flag indicating whether the operation must create a new version.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable createNewVersion;

    Swift

    var createNewVersion: NSNumber? { get set }
  • The description of the evaluation form.

    Declaration

    Objective-C

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

    Swift

    var detail: String? { get set }
  • The unique identifier for the evaluation form.

    Declaration

    Objective-C

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

    Swift

    var evaluationFormId: String? { get set }
  • A version of the evaluation form to update.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable evaluationFormVersion;

    Swift

    var evaluationFormVersion: NSNumber? { 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 }