Struct aws_sdk_rekognition::types::Asset
source · #[non_exhaustive]pub struct Asset {
pub ground_truth_manifest: Option<GroundTruthManifest>,
}Expand description
Assets are the images that you use to train and evaluate a model version. Assets can also contain validation information that you use to debug a failed model training.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.ground_truth_manifest: Option<GroundTruthManifest>The S3 bucket that contains an Amazon Sagemaker Ground Truth format manifest file.
Implementations§
source§impl Asset
impl Asset
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.
Trait Implementations§
source§impl PartialEq for Asset
impl PartialEq for Asset
impl StructuralPartialEq for Asset
Auto Trait Implementations§
impl RefUnwindSafe for Asset
impl Send for Asset
impl Sync for Asset
impl Unpin for Asset
impl UnwindSafe for Asset
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.