Interface CategoryEvent.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CategoryEvent.Builder,CategoryEvent>,SdkBuilder<CategoryEvent.Builder,CategoryEvent>,SdkPojo
- All Known Subinterfaces:
DefaultCategoryEvent.Builder
- All Known Implementing Classes:
CategoryEvent.BuilderImpl
- Enclosing class:
- CategoryEvent
@Mutable @NotThreadSafe public static interface CategoryEvent.Builder extends SdkPojo, CopyableBuilder<CategoryEvent.Builder,CategoryEvent>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CategoryEvent.BuildermatchedCategories(String... matchedCategories)Lists the categories that were matched in your audio segment.CategoryEvent.BuildermatchedCategories(Collection<String> matchedCategories)Lists the categories that were matched in your audio segment.CategoryEvent.BuildermatchedDetails(Map<String,PointsOfInterest> matchedDetails)Contains information about the matched categories, including category names and timestamps.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
matchedCategories
CategoryEvent.Builder matchedCategories(Collection<String> matchedCategories)
Lists the categories that were matched in your audio segment.
- Parameters:
matchedCategories- Lists the categories that were matched in your audio segment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
matchedCategories
CategoryEvent.Builder matchedCategories(String... matchedCategories)
Lists the categories that were matched in your audio segment.
- Parameters:
matchedCategories- Lists the categories that were matched in your audio segment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
matchedDetails
CategoryEvent.Builder matchedDetails(Map<String,PointsOfInterest> matchedDetails)
Contains information about the matched categories, including category names and timestamps.
- Parameters:
matchedDetails- Contains information about the matched categories, including category names and timestamps.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-