#[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<ListModelMetadataInput> for ListModelMetadataInput
impl PartialEq<ListModelMetadataInput> 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 ==
.