Interface EvaluateFeatureRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<EvaluateFeatureRequest.Builder,EvaluateFeatureRequest>,EvidentlyRequest.Builder,SdkBuilder<EvaluateFeatureRequest.Builder,EvaluateFeatureRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- EvaluateFeatureRequest
public static interface EvaluateFeatureRequest.Builder extends EvidentlyRequest.Builder, SdkPojo, CopyableBuilder<EvaluateFeatureRequest.Builder,EvaluateFeatureRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EvaluateFeatureRequest.BuilderentityId(String entityId)An internal ID that represents a unique user of the application.EvaluateFeatureRequest.BuilderevaluationContext(String evaluationContext)A JSON object of attributes that you can optionally pass in as part of the evaluation event sent to Evidently from the user session.EvaluateFeatureRequest.Builderfeature(String feature)The name of the feature being evaluated.EvaluateFeatureRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)EvaluateFeatureRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)EvaluateFeatureRequest.Builderproject(String project)The name or ARN of the project that contains this feature.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.evidently.model.EvidentlyRequest.Builder
build
-
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
EvaluateFeatureRequest.Builder entityId(String entityId)
An internal ID that represents a unique user of the application. This
entityIDis checked against any override rules assigned for this feature.- Parameters:
entityId- An internal ID that represents a unique user 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
EvaluateFeatureRequest.Builder evaluationContext(String evaluationContext)
A JSON object of attributes that you can optionally pass in as part of the evaluation event sent to Evidently from the user session. Evidently can use this value to match user sessions with defined audience segments. For more information, see Use segments to focus your audience.
If you include this parameter, the value must be a JSON object. A JSON array is not supported.
- Parameters:
evaluationContext- A JSON object of attributes that you can optionally pass in as part of the evaluation event sent to Evidently from the user session. Evidently can use this value to match user sessions with defined audience segments. For more information, see Use segments to focus your audience.If you include this parameter, the value must be a JSON object. A JSON array is not supported.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
feature
EvaluateFeatureRequest.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.
-
project
EvaluateFeatureRequest.Builder project(String project)
The name or ARN of the project that contains this feature.
- Parameters:
project- The name or ARN of the project that contains this feature.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
EvaluateFeatureRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
EvaluateFeatureRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-