Struct aws_sdk_rekognition::input::ListDatasetEntriesInput
source · [−]#[non_exhaustive]pub struct ListDatasetEntriesInput { /* private fields */ }Implementations
sourceimpl ListDatasetEntriesInput
impl ListDatasetEntriesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDatasetEntries, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListDatasetEntries, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListDatasetEntries>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListDatasetEntriesInput.
sourceimpl ListDatasetEntriesInput
impl ListDatasetEntriesInput
sourcepub fn dataset_arn(&self) -> Option<&str>
pub fn dataset_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for the dataset that you want to use.
sourcepub fn contains_labels(&self) -> Option<&[String]>
pub fn contains_labels(&self) -> Option<&[String]>
Specifies a label filter for the response. The response includes an entry only if one or more of the labels in ContainsLabels exist in the entry.
sourcepub fn labeled(&self) -> Option<bool>
pub fn labeled(&self) -> Option<bool>
Specify true to get only the JSON Lines where the image is labeled. Specify false to get only the JSON Lines where the image isn't labeled. If you don't specify Labeled, ListDatasetEntries returns JSON Lines for labeled and unlabeled images.
sourcepub fn source_ref_contains(&self) -> Option<&str>
pub fn source_ref_contains(&self) -> Option<&str>
If specified, ListDatasetEntries only returns JSON Lines where the value of SourceRefContains is part of the source-ref field. The source-ref field contains the Amazon S3 location of the image. You can use SouceRefContains for tasks such as getting the JSON Line for a single image, or gettting JSON Lines for all images within a specific folder.
sourcepub fn has_errors(&self) -> Option<bool>
pub fn has_errors(&self) -> Option<bool>
Specifies an error filter for the response. Specify True to only include entries that have errors.
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 ListDatasetEntriesInput
impl Clone for ListDatasetEntriesInput
sourcefn clone(&self) -> ListDatasetEntriesInput
fn clone(&self) -> ListDatasetEntriesInput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more