Interface EvaluationRequest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EvaluationRequest.Builder,EvaluationRequest>,SdkBuilder<EvaluationRequest.Builder,EvaluationRequest>,SdkPojo
- Enclosing class:
- EvaluationRequest
public static interface EvaluationRequest.Builder extends SdkPojo, CopyableBuilder<EvaluationRequest.Builder,EvaluationRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EvaluationRequest.BuilderentityId(String entityId)An internal ID that represents a unique user session of the application.EvaluationRequest.BuilderevaluationContext(String evaluationContext)A JSON block of attributes that you can optionally pass in.EvaluationRequest.Builderfeature(String feature)The name of the feature being evaluated.-
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
-
entityId
EvaluationRequest.Builder entityId(String entityId)
An internal ID that represents a unique user session of the application. This
entityIDis checked against any override rules assigned for this feature.- Parameters:
entityId- An internal ID that represents a unique user session of the application. ThisentityIDis checked against any override rules assigned for this feature.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
evaluationContext
EvaluationRequest.Builder evaluationContext(String evaluationContext)
A JSON block of attributes that you can optionally pass in. This JSON block is included in the evaluation events sent to Evidently from the user session.
- Parameters:
evaluationContext- A JSON block of attributes that you can optionally pass in. This JSON block is included in the evaluation events sent to Evidently from the user session.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
feature
EvaluationRequest.Builder feature(String feature)
The name of the feature being evaluated.
- Parameters:
feature- The name of the feature being evaluated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-