Interface LexTranscriptFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LexTranscriptFilter.Builder,LexTranscriptFilter>,SdkBuilder<LexTranscriptFilter.Builder,LexTranscriptFilter>,SdkPojo
- Enclosing class:
- LexTranscriptFilter
public static interface LexTranscriptFilter.Builder extends SdkPojo, CopyableBuilder<LexTranscriptFilter.Builder,LexTranscriptFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default LexTranscriptFilter.BuilderdateRangeFilter(Consumer<DateRangeFilter.Builder> dateRangeFilter)The object that contains a date range filter that will be applied to the transcript.LexTranscriptFilter.BuilderdateRangeFilter(DateRangeFilter dateRangeFilter)The object that contains a date range filter that will be applied to the transcript.-
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
-
dateRangeFilter
LexTranscriptFilter.Builder dateRangeFilter(DateRangeFilter dateRangeFilter)
The object that contains a date range filter that will be applied to the transcript. Specify this object if you want Amazon Lex to only read the files that are within the date range.
- Parameters:
dateRangeFilter- The object that contains a date range filter that will be applied to the transcript. Specify this object if you want Amazon Lex to only read the files that are within the date range.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dateRangeFilter
default LexTranscriptFilter.Builder dateRangeFilter(Consumer<DateRangeFilter.Builder> dateRangeFilter)
The object that contains a date range filter that will be applied to the transcript. Specify this object if you want Amazon Lex to only read the files that are within the date range.
This is a convenience method that creates an instance of theDateRangeFilter.Builderavoiding the need to create one manually viaDateRangeFilter.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todateRangeFilter(DateRangeFilter).- Parameters:
dateRangeFilter- a consumer that will call methods onDateRangeFilter.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
dateRangeFilter(DateRangeFilter)
-
-