Interface RecommendationSet.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RecommendationSet.Builder,RecommendationSet>,SdkBuilder<RecommendationSet.Builder,RecommendationSet>,SdkPojo
- Enclosing class:
- RecommendationSet
public static interface RecommendationSet.Builder extends SdkPojo, CopyableBuilder<RecommendationSet.Builder,RecommendationSet>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description RecommendationSet.Builderstrategy(String strategy)The recommended strategy.RecommendationSet.Builderstrategy(Strategy strategy)The recommended strategy.RecommendationSet.BuildertargetDestination(String targetDestination)The recommended target destination.RecommendationSet.BuildertargetDestination(TargetDestination targetDestination)The recommended target destination.default RecommendationSet.BuildertransformationTool(Consumer<TransformationTool.Builder> transformationTool)The target destination for the recommendation set.RecommendationSet.BuildertransformationTool(TransformationTool transformationTool)The target destination for the recommendation set.-
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, sdkFields
-
-
-
-
Method Detail
-
strategy
RecommendationSet.Builder strategy(String strategy)
The recommended strategy.
-
strategy
RecommendationSet.Builder strategy(Strategy strategy)
The recommended strategy.
-
targetDestination
RecommendationSet.Builder targetDestination(String targetDestination)
The recommended target destination.
- Parameters:
targetDestination- The recommended target destination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TargetDestination,TargetDestination
-
targetDestination
RecommendationSet.Builder targetDestination(TargetDestination targetDestination)
The recommended target destination.
- Parameters:
targetDestination- The recommended target destination.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TargetDestination,TargetDestination
-
transformationTool
RecommendationSet.Builder transformationTool(TransformationTool transformationTool)
The target destination for the recommendation set.
- Parameters:
transformationTool- The target destination for the recommendation set.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
transformationTool
default RecommendationSet.Builder transformationTool(Consumer<TransformationTool.Builder> transformationTool)
The target destination for the recommendation set.
This is a convenience method that creates an instance of theTransformationTool.Builderavoiding the need to create one manually viaTransformationTool.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totransformationTool(TransformationTool).- Parameters:
transformationTool- a consumer that will call methods onTransformationTool.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
transformationTool(TransformationTool)
-
-