Interface CategoryDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CategoryDetails.Builder,CategoryDetails>,SdkBuilder<CategoryDetails.Builder,CategoryDetails>,SdkPojo
- Enclosing class:
- CategoryDetails
public static interface CategoryDetails.Builder extends SdkPojo, CopyableBuilder<CategoryDetails.Builder,CategoryDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CategoryDetails.BuilderpointsOfInterest(Collection<PointOfInterest> pointsOfInterest)The section of audio where the category rule was detected.CategoryDetails.BuilderpointsOfInterest(Consumer<PointOfInterest.Builder>... pointsOfInterest)The section of audio where the category rule was detected.CategoryDetails.BuilderpointsOfInterest(PointOfInterest... pointsOfInterest)The section of audio where the category rule was detected.-
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
CategoryDetails.Builder pointsOfInterest(Collection<PointOfInterest> pointsOfInterest)
The section of audio where the category rule was detected.
- Parameters:
pointsOfInterest- The section of audio where the category rule was detected.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pointsOfInterest
CategoryDetails.Builder pointsOfInterest(PointOfInterest... pointsOfInterest)
The section of audio where the category rule was detected.
- Parameters:
pointsOfInterest- The section of audio where the category rule was detected.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
pointsOfInterest
CategoryDetails.Builder pointsOfInterest(Consumer<PointOfInterest.Builder>... pointsOfInterest)
The section of audio where the category rule was detected.
This is a convenience method that creates an instance of thePointOfInterest.Builderavoiding the need to create one manually viaPointOfInterest.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 onPointOfInterest.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#pointsOfInterest(java.util.Collection)
-
-