Struct aws_sdk_rekognition::input::ListDatasetLabelsInput
source · [−]#[non_exhaustive]pub struct ListDatasetLabelsInput { /* private fields */ }Implementations
sourceimpl ListDatasetLabelsInput
impl ListDatasetLabelsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDatasetLabels, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDatasetLabels, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListDatasetLabels>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListDatasetLabelsInput.
sourceimpl ListDatasetLabelsInput
impl ListDatasetLabelsInput
sourcepub fn dataset_arn(&self) -> Option<&str>
pub fn dataset_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the dataset that you want to use.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the previous response was incomplete (because there is more results to retrieve), Amazon Rekognition Custom Labels returns a pagination token in the response. You can use this pagination token to retrieve the next set of results.
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.
Trait Implementations
sourceimpl Clone for ListDatasetLabelsInput
impl Clone for ListDatasetLabelsInput
sourcefn clone(&self) -> ListDatasetLabelsInput
fn clone(&self) -> ListDatasetLabelsInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for ListDatasetLabelsInput
impl Debug for ListDatasetLabelsInput
sourceimpl PartialEq<ListDatasetLabelsInput> for ListDatasetLabelsInput
impl PartialEq<ListDatasetLabelsInput> for ListDatasetLabelsInput
sourcefn eq(&self, other: &ListDatasetLabelsInput) -> bool
fn eq(&self, other: &ListDatasetLabelsInput) -> bool
impl StructuralPartialEq for ListDatasetLabelsInput
Auto Trait Implementations
impl RefUnwindSafe for ListDatasetLabelsInput
impl Send for ListDatasetLabelsInput
impl Sync for ListDatasetLabelsInput
impl Unpin for ListDatasetLabelsInput
impl UnwindSafe for ListDatasetLabelsInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more