Interface AbsoluteTimeRange.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AbsoluteTimeRange.Builder,AbsoluteTimeRange>,SdkBuilder<AbsoluteTimeRange.Builder,AbsoluteTimeRange>,SdkPojo
- Enclosing class:
- AbsoluteTimeRange
public static interface AbsoluteTimeRange.Builder extends SdkPojo, CopyableBuilder<AbsoluteTimeRange.Builder,AbsoluteTimeRange>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AbsoluteTimeRange.BuilderendTime(Long endTime)The time, in milliseconds, when Amazon Transcribe stops searching for the specified criteria in your audio.AbsoluteTimeRange.Builderfirst(Long first)The time, in milliseconds, from the start of your media file until the specified value.AbsoluteTimeRange.Builderlast(Long last)The time, in milliseconds, from the specified value until the end of your media file.AbsoluteTimeRange.BuilderstartTime(Long startTime)The time, in milliseconds, when Amazon Transcribe starts searching for the specified criteria in your audio.-
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
-
startTime
AbsoluteTimeRange.Builder startTime(Long startTime)
The time, in milliseconds, when Amazon Transcribe starts searching for the specified criteria in your audio. If you include
StartTimein your request, you must also includeEndTime.- Parameters:
startTime- The time, in milliseconds, when Amazon Transcribe starts searching for the specified criteria in your audio. If you includeStartTimein your request, you must also includeEndTime.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endTime
AbsoluteTimeRange.Builder endTime(Long endTime)
The time, in milliseconds, when Amazon Transcribe stops searching for the specified criteria in your audio. If you include
EndTimein your request, you must also includeStartTime.- Parameters:
endTime- The time, in milliseconds, when Amazon Transcribe stops searching for the specified criteria in your audio. If you includeEndTimein your request, you must also includeStartTime.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
first
AbsoluteTimeRange.Builder first(Long first)
The time, in milliseconds, from the start of your media file until the specified value. Amazon Transcribe searches for your specified criteria in this time segment.
- Parameters:
first- The time, in milliseconds, from the start of your media file until the specified value. Amazon Transcribe searches for your specified criteria in this time segment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
last
AbsoluteTimeRange.Builder last(Long last)
The time, in milliseconds, from the specified value until the end of your media file. Amazon Transcribe searches for your specified criteria in this time segment.
- Parameters:
last- The time, in milliseconds, from the specified value until the end of your media file. Amazon Transcribe searches for your specified criteria in this time segment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-