#[non_exhaustive]pub struct ListModelsInput {
pub project_name: Option<String>,
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.project_name: Option<String>The name of the project that contains the model versions that you want to list.
next_token: Option<String>If the previous response was incomplete (because there is more data to retrieve), Amazon Lookout for Vision returns a pagination token in the response. You can use this pagination token to retrieve the next set of models.
max_results: Option<i32>The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.
Implementations§
source§impl ListModelsInput
impl ListModelsInput
sourcepub fn project_name(&self) -> Option<&str>
pub fn project_name(&self) -> Option<&str>
The name of the project that contains the model versions that you want to list.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the previous response was incomplete (because there is more data to retrieve), Amazon Lookout for Vision returns a pagination token in the response. You can use this pagination token to retrieve the next set of models.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.
source§impl ListModelsInput
impl ListModelsInput
sourcepub fn builder() -> ListModelsInputBuilder
pub fn builder() -> ListModelsInputBuilder
Creates a new builder-style object to manufacture ListModelsInput.
Trait Implementations§
source§impl Clone for ListModelsInput
impl Clone for ListModelsInput
source§fn clone(&self) -> ListModelsInput
fn clone(&self) -> ListModelsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListModelsInput
impl Debug for ListModelsInput
source§impl PartialEq for ListModelsInput
impl PartialEq for ListModelsInput
source§fn eq(&self, other: &ListModelsInput) -> bool
fn eq(&self, other: &ListModelsInput) -> bool
self and other values to be equal, and is used
by ==.