Interface CreateEvaluationFormRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,ConnectRequest.Builder
,CopyableBuilder<CreateEvaluationFormRequest.Builder,CreateEvaluationFormRequest>
,SdkBuilder<CreateEvaluationFormRequest.Builder,CreateEvaluationFormRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- CreateEvaluationFormRequest
public static interface CreateEvaluationFormRequest.Builder extends ConnectRequest.Builder, SdkPojo, CopyableBuilder<CreateEvaluationFormRequest.Builder,CreateEvaluationFormRequest>
-
-
Method Summary
-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.services.connect.model.ConnectRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
instanceId
CreateEvaluationFormRequest.Builder instanceId(String instanceId)
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
- Parameters:
instanceId
- The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
title
CreateEvaluationFormRequest.Builder title(String title)
A title of the evaluation form.
- Parameters:
title
- A title of the evaluation form.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
CreateEvaluationFormRequest.Builder description(String description)
The description of the evaluation form.
- Parameters:
description
- The description of the evaluation form.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
CreateEvaluationFormRequest.Builder items(Collection<EvaluationFormItem> items)
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.
- Parameters:
items
- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
CreateEvaluationFormRequest.Builder items(EvaluationFormItem... items)
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.
- Parameters:
items
- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
CreateEvaluationFormRequest.Builder items(Consumer<EvaluationFormItem.Builder>... items)
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.
This is a convenience method that creates an instance of theEvaluationFormItem.Builder
avoiding the need to create one manually viaEvaluationFormItem.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed to#items(List
.) - Parameters:
items
- a consumer that will call methods onEvaluationFormItem.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection
)
-
scoringStrategy
CreateEvaluationFormRequest.Builder scoringStrategy(EvaluationFormScoringStrategy scoringStrategy)
A scoring strategy of the evaluation form.
- Parameters:
scoringStrategy
- A scoring strategy of the evaluation form.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scoringStrategy
default CreateEvaluationFormRequest.Builder scoringStrategy(Consumer<EvaluationFormScoringStrategy.Builder> scoringStrategy)
A scoring strategy of the evaluation form.
This is a convenience method that creates an instance of theEvaluationFormScoringStrategy.Builder
avoiding the need to create one manually viaEvaluationFormScoringStrategy.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toscoringStrategy(EvaluationFormScoringStrategy)
.- Parameters:
scoringStrategy
- a consumer that will call methods onEvaluationFormScoringStrategy.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
scoringStrategy(EvaluationFormScoringStrategy)
-
clientToken
CreateEvaluationFormRequest.Builder clientToken(String 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.
- Parameters:
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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
CreateEvaluationFormRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
CreateEvaluationFormRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-