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
Modifier and TypeMethodDescriptionpointsOfInterest
(Collection<RealTimeContactAnalysisPointOfInterest> pointsOfInterest) List of PointOfInterest - objects describing a single match of a rule.pointsOfInterest
(Consumer<RealTimeContactAnalysisPointOfInterest.Builder>... pointsOfInterest) List of PointOfInterest - objects describing a single match of a rule.pointsOfInterest
(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 Details
-
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.Builder
avoiding the need to create one manually viaRealTimeContactAnalysisPointOfInterest.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed topointsOfInterest(List<RealTimeContactAnalysisPointOfInterest>)
.- 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:
-