Interface RealTimeContactAnalysisCategoryDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RealTimeContactAnalysisCategoryDetails.Builder,RealTimeContactAnalysisCategoryDetails>,SdkBuilder<RealTimeContactAnalysisCategoryDetails.Builder,RealTimeContactAnalysisCategoryDetails>,SdkPojo
- Enclosing class:
- RealTimeContactAnalysisCategoryDetails
public static interface RealTimeContactAnalysisCategoryDetails.Builder extends SdkPojo, CopyableBuilder<RealTimeContactAnalysisCategoryDetails.Builder,RealTimeContactAnalysisCategoryDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RealTimeContactAnalysisCategoryDetails.BuilderpointsOfInterest(Collection<RealTimeContactAnalysisPointOfInterest> pointsOfInterest)List of PointOfInterest - objects describing a single match of a rule.RealTimeContactAnalysisCategoryDetails.BuilderpointsOfInterest(Consumer<RealTimeContactAnalysisPointOfInterest.Builder>... pointsOfInterest)List of PointOfInterest - objects describing a single match of a rule.RealTimeContactAnalysisCategoryDetails.BuilderpointsOfInterest(RealTimeContactAnalysisPointOfInterest... pointsOfInterest)List of PointOfInterest - objects describing a single match of a rule.-
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
-
pointsOfInterest
RealTimeContactAnalysisCategoryDetails.Builder pointsOfInterest(Collection<RealTimeContactAnalysisPointOfInterest> pointsOfInterest)
List of PointOfInterest - objects describing a single match of a rule.
- Parameters:
pointsOfInterest- List of PointOfInterest - objects describing a single match of a rule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pointsOfInterest
RealTimeContactAnalysisCategoryDetails.Builder pointsOfInterest(RealTimeContactAnalysisPointOfInterest... pointsOfInterest)
List of PointOfInterest - objects describing a single match of a rule.
- Parameters:
pointsOfInterest- List of PointOfInterest - objects describing a single match of a rule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pointsOfInterest
RealTimeContactAnalysisCategoryDetails.Builder pointsOfInterest(Consumer<RealTimeContactAnalysisPointOfInterest.Builder>... pointsOfInterest)
List of PointOfInterest - objects describing a single match of a rule.
This is a convenience method that creates an instance of theRealTimeContactAnalysisPointOfInterest.Builderavoiding the need to create one manually viaRealTimeContactAnalysisPointOfInterest.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#pointsOfInterest(List.) - Parameters:
pointsOfInterest- a consumer that will call methods onRealTimeContactAnalysisPointOfInterest.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#pointsOfInterest(java.util.Collection)
-
-