Struct aws_sdk_lexmodelsv2::operation::search_associated_transcripts::builders::SearchAssociatedTranscriptsOutputBuilder
source · #[non_exhaustive]pub struct SearchAssociatedTranscriptsOutputBuilder { /* private fields */ }
Expand description
A builder for SearchAssociatedTranscriptsOutput
.
Implementations§
source§impl SearchAssociatedTranscriptsOutputBuilder
impl SearchAssociatedTranscriptsOutputBuilder
sourcepub fn bot_id(self, input: impl Into<String>) -> Self
pub fn bot_id(self, input: impl Into<String>) -> Self
The unique identifier of the bot associated with the transcripts that you are searching.
sourcepub fn set_bot_id(self, input: Option<String>) -> Self
pub fn set_bot_id(self, input: Option<String>) -> Self
The unique identifier of the bot associated with the transcripts that you are searching.
sourcepub fn get_bot_id(&self) -> &Option<String>
pub fn get_bot_id(&self) -> &Option<String>
The unique identifier of the bot associated with the transcripts that you are searching.
sourcepub fn bot_version(self, input: impl Into<String>) -> Self
pub fn bot_version(self, input: impl Into<String>) -> Self
The version of the bot containing the transcripts that you are searching.
sourcepub fn set_bot_version(self, input: Option<String>) -> Self
pub fn set_bot_version(self, input: Option<String>) -> Self
The version of the bot containing the transcripts that you are searching.
sourcepub fn get_bot_version(&self) -> &Option<String>
pub fn get_bot_version(&self) -> &Option<String>
The version of the bot containing the transcripts that you are searching.
sourcepub fn locale_id(self, input: impl Into<String>) -> Self
pub fn locale_id(self, input: impl Into<String>) -> Self
The identifier of the language and locale of the transcripts to search. The string must match one of the supported locales. For more information, see Supported languages
sourcepub fn set_locale_id(self, input: Option<String>) -> Self
pub fn set_locale_id(self, input: Option<String>) -> Self
The identifier of the language and locale of the transcripts to search. The string must match one of the supported locales. For more information, see Supported languages
sourcepub fn get_locale_id(&self) -> &Option<String>
pub fn get_locale_id(&self) -> &Option<String>
The identifier of the language and locale of the transcripts to search. The string must match one of the supported locales. For more information, see Supported languages
sourcepub fn bot_recommendation_id(self, input: impl Into<String>) -> Self
pub fn bot_recommendation_id(self, input: impl Into<String>) -> Self
The unique identifier of the bot recommendation associated with the transcripts to search.
sourcepub fn set_bot_recommendation_id(self, input: Option<String>) -> Self
pub fn set_bot_recommendation_id(self, input: Option<String>) -> Self
The unique identifier of the bot recommendation associated with the transcripts to search.
sourcepub fn get_bot_recommendation_id(&self) -> &Option<String>
pub fn get_bot_recommendation_id(&self) -> &Option<String>
The unique identifier of the bot recommendation associated with the transcripts to search.
sourcepub fn next_index(self, input: i32) -> Self
pub fn next_index(self, input: i32) -> Self
A index that indicates whether there are more results to return in a response to the SearchAssociatedTranscripts operation. If the nextIndex field is present, you send the contents as the nextIndex parameter of a SearchAssociatedTranscriptsRequest operation to get the next page of results.
sourcepub fn set_next_index(self, input: Option<i32>) -> Self
pub fn set_next_index(self, input: Option<i32>) -> Self
A index that indicates whether there are more results to return in a response to the SearchAssociatedTranscripts operation. If the nextIndex field is present, you send the contents as the nextIndex parameter of a SearchAssociatedTranscriptsRequest operation to get the next page of results.
sourcepub fn get_next_index(&self) -> &Option<i32>
pub fn get_next_index(&self) -> &Option<i32>
A index that indicates whether there are more results to return in a response to the SearchAssociatedTranscripts operation. If the nextIndex field is present, you send the contents as the nextIndex parameter of a SearchAssociatedTranscriptsRequest operation to get the next page of results.
sourcepub fn associated_transcripts(self, input: AssociatedTranscript) -> Self
pub fn associated_transcripts(self, input: AssociatedTranscript) -> Self
Appends an item to associated_transcripts
.
To override the contents of this collection use set_associated_transcripts
.
The object that contains the associated transcript that meet the criteria you specified.
sourcepub fn set_associated_transcripts(
self,
input: Option<Vec<AssociatedTranscript>>
) -> Self
pub fn set_associated_transcripts( self, input: Option<Vec<AssociatedTranscript>> ) -> Self
The object that contains the associated transcript that meet the criteria you specified.
sourcepub fn get_associated_transcripts(&self) -> &Option<Vec<AssociatedTranscript>>
pub fn get_associated_transcripts(&self) -> &Option<Vec<AssociatedTranscript>>
The object that contains the associated transcript that meet the criteria you specified.
sourcepub fn total_results(self, input: i32) -> Self
pub fn total_results(self, input: i32) -> Self
The total number of transcripts returned by the search.
sourcepub fn set_total_results(self, input: Option<i32>) -> Self
pub fn set_total_results(self, input: Option<i32>) -> Self
The total number of transcripts returned by the search.
sourcepub fn get_total_results(&self) -> &Option<i32>
pub fn get_total_results(&self) -> &Option<i32>
The total number of transcripts returned by the search.
sourcepub fn build(self) -> SearchAssociatedTranscriptsOutput
pub fn build(self) -> SearchAssociatedTranscriptsOutput
Consumes the builder and constructs a SearchAssociatedTranscriptsOutput
.
Trait Implementations§
source§impl Clone for SearchAssociatedTranscriptsOutputBuilder
impl Clone for SearchAssociatedTranscriptsOutputBuilder
source§fn clone(&self) -> SearchAssociatedTranscriptsOutputBuilder
fn clone(&self) -> SearchAssociatedTranscriptsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for SearchAssociatedTranscriptsOutputBuilder
impl Default for SearchAssociatedTranscriptsOutputBuilder
source§fn default() -> SearchAssociatedTranscriptsOutputBuilder
fn default() -> SearchAssociatedTranscriptsOutputBuilder
source§impl PartialEq for SearchAssociatedTranscriptsOutputBuilder
impl PartialEq for SearchAssociatedTranscriptsOutputBuilder
source§fn eq(&self, other: &SearchAssociatedTranscriptsOutputBuilder) -> bool
fn eq(&self, other: &SearchAssociatedTranscriptsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.