Struct aws_sdk_transcribe::operation::list_language_models::builders::ListLanguageModelsOutputBuilder
source · #[non_exhaustive]pub struct ListLanguageModelsOutputBuilder { /* private fields */ }
Expand description
A builder for ListLanguageModelsOutput
.
Implementations§
source§impl ListLanguageModelsOutputBuilder
impl ListLanguageModelsOutputBuilder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If NextToken
is present in your response, it indicates that not all results are displayed. To view the next set of results, copy the string associated with the NextToken
parameter in your results output, then run your request again including NextToken
with the value of the copied string. Repeat as needed to view all your results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If NextToken
is present in your response, it indicates that not all results are displayed. To view the next set of results, copy the string associated with the NextToken
parameter in your results output, then run your request again including NextToken
with the value of the copied string. Repeat as needed to view all your results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If NextToken
is present in your response, it indicates that not all results are displayed. To view the next set of results, copy the string associated with the NextToken
parameter in your results output, then run your request again including NextToken
with the value of the copied string. Repeat as needed to view all your results.
sourcepub fn models(self, input: LanguageModel) -> Self
pub fn models(self, input: LanguageModel) -> Self
Appends an item to models
.
To override the contents of this collection use set_models
.
Provides information about the custom language models that match the criteria specified in your request.
sourcepub fn set_models(self, input: Option<Vec<LanguageModel>>) -> Self
pub fn set_models(self, input: Option<Vec<LanguageModel>>) -> Self
Provides information about the custom language models that match the criteria specified in your request.
sourcepub fn get_models(&self) -> &Option<Vec<LanguageModel>>
pub fn get_models(&self) -> &Option<Vec<LanguageModel>>
Provides information about the custom language models that match the criteria specified in your request.
sourcepub fn build(self) -> ListLanguageModelsOutput
pub fn build(self) -> ListLanguageModelsOutput
Consumes the builder and constructs a ListLanguageModelsOutput
.
Trait Implementations§
source§impl Clone for ListLanguageModelsOutputBuilder
impl Clone for ListLanguageModelsOutputBuilder
source§fn clone(&self) -> ListLanguageModelsOutputBuilder
fn clone(&self) -> ListLanguageModelsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListLanguageModelsOutputBuilder
impl Default for ListLanguageModelsOutputBuilder
source§fn default() -> ListLanguageModelsOutputBuilder
fn default() -> ListLanguageModelsOutputBuilder
source§impl PartialEq for ListLanguageModelsOutputBuilder
impl PartialEq for ListLanguageModelsOutputBuilder
source§fn eq(&self, other: &ListLanguageModelsOutputBuilder) -> bool
fn eq(&self, other: &ListLanguageModelsOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListLanguageModelsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListLanguageModelsOutputBuilder
impl RefUnwindSafe for ListLanguageModelsOutputBuilder
impl Send for ListLanguageModelsOutputBuilder
impl Sync for ListLanguageModelsOutputBuilder
impl Unpin for ListLanguageModelsOutputBuilder
impl UnwindSafe for ListLanguageModelsOutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more