Interface EntityRecognizerFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EntityRecognizerFilter.Builder,EntityRecognizerFilter>,SdkBuilder<EntityRecognizerFilter.Builder,EntityRecognizerFilter>,SdkPojo
- Enclosing class:
- EntityRecognizerFilter
public static interface EntityRecognizerFilter.Builder extends SdkPojo, CopyableBuilder<EntityRecognizerFilter.Builder,EntityRecognizerFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EntityRecognizerFilter.BuilderrecognizerName(String recognizerName)The name that you assigned the entity recognizer.EntityRecognizerFilter.Builderstatus(String status)The status of an entity recognizer.EntityRecognizerFilter.Builderstatus(ModelStatus status)The status of an entity recognizer.EntityRecognizerFilter.BuildersubmitTimeAfter(Instant submitTimeAfter)Filters the list of entities based on the time that the list was submitted for processing.EntityRecognizerFilter.BuildersubmitTimeBefore(Instant submitTimeBefore)Filters the list of entities based on the time that the list was submitted for processing.-
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
-
status
EntityRecognizerFilter.Builder status(String status)
The status of an entity recognizer.
- Parameters:
status- The status of an entity recognizer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ModelStatus,ModelStatus
-
status
EntityRecognizerFilter.Builder status(ModelStatus status)
The status of an entity recognizer.
- Parameters:
status- The status of an entity recognizer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ModelStatus,ModelStatus
-
recognizerName
EntityRecognizerFilter.Builder recognizerName(String recognizerName)
The name that you assigned the entity recognizer.
- Parameters:
recognizerName- The name that you assigned the entity recognizer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
submitTimeBefore
EntityRecognizerFilter.Builder submitTimeBefore(Instant submitTimeBefore)
Filters the list of entities based on the time that the list was submitted for processing. Returns only jobs submitted before the specified time. Jobs are returned in descending order, newest to oldest.
- Parameters:
submitTimeBefore- Filters the list of entities based on the time that the list was submitted for processing. Returns only jobs submitted before the specified time. Jobs are returned in descending order, newest to oldest.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
submitTimeAfter
EntityRecognizerFilter.Builder submitTimeAfter(Instant submitTimeAfter)
Filters the list of entities based on the time that the list was submitted for processing. Returns only jobs submitted after the specified time. Jobs are returned in ascending order, oldest to newest.
- Parameters:
submitTimeAfter- Filters the list of entities based on the time that the list was submitted for processing. Returns only jobs submitted after the specified time. Jobs are returned in ascending order, oldest to newest.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-