#[non_exhaustive]pub struct ListModelMetadataInput {
pub search_expression: Option<ModelMetadataSearchExpression>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.search_expression: Option<ModelMetadataSearchExpression>
One or more filters that searches for the specified resource or resources in a search. All resource objects that satisfy the expression's condition are included in the search results. Specify the Framework, FrameworkVersion, Domain or Task to filter supported. Filter names and values are case-sensitive.
next_token: Option<String>
If the response to a previous ListModelMetadataResponse
request was truncated, the response includes a NextToken. To retrieve the next set of model metadata, use the token in the next request.
max_results: Option<i32>
The maximum number of models to return in the response.
Implementations§
source§impl ListModelMetadataInput
impl ListModelMetadataInput
sourcepub fn search_expression(&self) -> Option<&ModelMetadataSearchExpression>
pub fn search_expression(&self) -> Option<&ModelMetadataSearchExpression>
One or more filters that searches for the specified resource or resources in a search. All resource objects that satisfy the expression's condition are included in the search results. Specify the Framework, FrameworkVersion, Domain or Task to filter supported. Filter names and values are case-sensitive.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the response to a previous ListModelMetadataResponse
request was truncated, the response includes a NextToken. To retrieve the next set of model metadata, use the token in the next request.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of models to return in the response.
source§impl ListModelMetadataInput
impl ListModelMetadataInput
sourcepub fn builder() -> ListModelMetadataInputBuilder
pub fn builder() -> ListModelMetadataInputBuilder
Creates a new builder-style object to manufacture ListModelMetadataInput
.
Trait Implementations§
source§impl Clone for ListModelMetadataInput
impl Clone for ListModelMetadataInput
source§fn clone(&self) -> ListModelMetadataInput
fn clone(&self) -> ListModelMetadataInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListModelMetadataInput
impl Debug for ListModelMetadataInput
source§impl PartialEq for ListModelMetadataInput
impl PartialEq for ListModelMetadataInput
source§fn eq(&self, other: &ListModelMetadataInput) -> bool
fn eq(&self, other: &ListModelMetadataInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListModelMetadataInput
Auto Trait Implementations§
impl Freeze for ListModelMetadataInput
impl RefUnwindSafe for ListModelMetadataInput
impl Send for ListModelMetadataInput
impl Sync for ListModelMetadataInput
impl Unpin for ListModelMetadataInput
impl UnwindSafe for ListModelMetadataInput
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