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