Interface RelativeTimeRange.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RelativeTimeRange.Builder,RelativeTimeRange>,SdkBuilder<RelativeTimeRange.Builder,RelativeTimeRange>,SdkPojo
- Enclosing class:
- RelativeTimeRange
public static interface RelativeTimeRange.Builder extends SdkPojo, CopyableBuilder<RelativeTimeRange.Builder,RelativeTimeRange>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RelativeTimeRange.BuilderendPercentage(Integer endPercentage)The time, in percentage, when Amazon Transcribe stops searching for the specified criteria in your media file.RelativeTimeRange.Builderfirst(Integer first)The time, in percentage, from the start of your media file until the specified value.RelativeTimeRange.Builderlast(Integer last)The time, in percentage, from the specified value until the end of your media file.RelativeTimeRange.BuilderstartPercentage(Integer startPercentage)The time, in percentage, when Amazon Transcribe starts searching for the specified criteria in your media file.-
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
-
startPercentage
RelativeTimeRange.Builder startPercentage(Integer startPercentage)
The time, in percentage, when Amazon Transcribe starts searching for the specified criteria in your media file. If you include
StartPercentagein your request, you must also includeEndPercentage.- Parameters:
startPercentage- The time, in percentage, when Amazon Transcribe starts searching for the specified criteria in your media file. If you includeStartPercentagein your request, you must also includeEndPercentage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endPercentage
RelativeTimeRange.Builder endPercentage(Integer endPercentage)
The time, in percentage, when Amazon Transcribe stops searching for the specified criteria in your media file. If you include
EndPercentagein your request, you must also includeStartPercentage.- Parameters:
endPercentage- The time, in percentage, when Amazon Transcribe stops searching for the specified criteria in your media file. If you includeEndPercentagein your request, you must also includeStartPercentage.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
first
RelativeTimeRange.Builder first(Integer first)
The time, in percentage, 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 percentage, 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
RelativeTimeRange.Builder last(Integer last)
The time, in percentage, 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 percentage, 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.
-
-