Struct aws_sdk_rekognition::model::DatasetSource
source · [−]#[non_exhaustive]pub struct DatasetSource { /* private fields */ }Expand description
The source that Amazon Rekognition Custom Labels uses to create a dataset. To use an Amazon Sagemaker format manifest file, specify the S3 bucket location in the GroundTruthManifest field. The S3 bucket must be in your AWS account. To create a copy of an existing dataset, specify the Amazon Resource Name (ARN) of an existing dataset in DatasetArn.
You need to specify a value for DatasetArn or GroundTruthManifest, but not both. if you supply both values, or if you don't specify any values, an InvalidParameterException exception occurs.
For more information, see CreateDataset.
Implementations
sourceimpl DatasetSource
impl DatasetSource
sourcepub fn ground_truth_manifest(&self) -> Option<&GroundTruthManifest>
pub fn ground_truth_manifest(&self) -> Option<&GroundTruthManifest>
The S3 bucket that contains an Amazon Sagemaker Ground Truth format manifest file.
sourcepub fn dataset_arn(&self) -> Option<&str>
pub fn dataset_arn(&self) -> Option<&str>
The ARN of an Amazon Rekognition Custom Labels dataset that you want to copy.
sourceimpl DatasetSource
impl DatasetSource
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DatasetSource.
Trait Implementations
sourceimpl Clone for DatasetSource
impl Clone for DatasetSource
sourcefn clone(&self) -> DatasetSource
fn clone(&self) -> DatasetSource
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more