Struct aws_sdk_transcribe::model::absolute_time_range::Builder
source · pub struct Builder { /* private fields */ }Expand description
A builder for AbsoluteTimeRange.
Implementations§
source§impl Builder
impl Builder
sourcepub fn start_time(self, input: i64) -> Self
pub fn start_time(self, input: i64) -> Self
The time, in milliseconds, when Amazon Transcribe starts searching for the specified criteria in your audio. If you include StartTime in your request, you must also include EndTime.
sourcepub fn set_start_time(self, input: Option<i64>) -> Self
pub fn set_start_time(self, input: Option<i64>) -> Self
The time, in milliseconds, when Amazon Transcribe starts searching for the specified criteria in your audio. If you include StartTime in your request, you must also include EndTime.
sourcepub fn end_time(self, input: i64) -> Self
pub fn end_time(self, input: i64) -> Self
The time, in milliseconds, when Amazon Transcribe stops searching for the specified criteria in your audio. If you include EndTime in your request, you must also include StartTime.
sourcepub fn set_end_time(self, input: Option<i64>) -> Self
pub fn set_end_time(self, input: Option<i64>) -> Self
The time, in milliseconds, when Amazon Transcribe stops searching for the specified criteria in your audio. If you include EndTime in your request, you must also include StartTime.
sourcepub fn first(self, input: i64) -> Self
pub fn first(self, input: i64) -> Self
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.
sourcepub fn set_first(self, input: Option<i64>) -> Self
pub fn set_first(self, input: Option<i64>) -> Self
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.
sourcepub fn last(self, input: i64) -> Self
pub fn last(self, input: i64) -> Self
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.
sourcepub fn set_last(self, input: Option<i64>) -> Self
pub fn set_last(self, input: Option<i64>) -> Self
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.
sourcepub fn build(self) -> AbsoluteTimeRange
pub fn build(self) -> AbsoluteTimeRange
Consumes the builder and constructs a AbsoluteTimeRange.