#[non_exhaustive]pub struct LabelingJobS3DataSourceBuilder { /* private fields */ }
Expand description
A builder for LabelingJobS3DataSource
.
Implementations§
source§impl LabelingJobS3DataSourceBuilder
impl LabelingJobS3DataSourceBuilder
sourcepub fn manifest_s3_uri(self, input: impl Into<String>) -> Self
pub fn manifest_s3_uri(self, input: impl Into<String>) -> Self
The Amazon S3 location of the manifest file that describes the input data objects.
The input manifest file referenced in ManifestS3Uri
must contain one of the following keys: source-ref
or source
. The value of the keys are interpreted as follows:
-
source-ref
: The source of the object is the Amazon S3 object specified in the value. Use this value when the object is a binary object, such as an image. -
source
: The source of the object is the value. Use this value when the object is a text value.
If you are a new user of Ground Truth, it is recommended you review Use an Input Manifest File in the Amazon SageMaker Developer Guide to learn how to create an input manifest file.
This field is required.sourcepub fn set_manifest_s3_uri(self, input: Option<String>) -> Self
pub fn set_manifest_s3_uri(self, input: Option<String>) -> Self
The Amazon S3 location of the manifest file that describes the input data objects.
The input manifest file referenced in ManifestS3Uri
must contain one of the following keys: source-ref
or source
. The value of the keys are interpreted as follows:
-
source-ref
: The source of the object is the Amazon S3 object specified in the value. Use this value when the object is a binary object, such as an image. -
source
: The source of the object is the value. Use this value when the object is a text value.
If you are a new user of Ground Truth, it is recommended you review Use an Input Manifest File in the Amazon SageMaker Developer Guide to learn how to create an input manifest file.
sourcepub fn get_manifest_s3_uri(&self) -> &Option<String>
pub fn get_manifest_s3_uri(&self) -> &Option<String>
The Amazon S3 location of the manifest file that describes the input data objects.
The input manifest file referenced in ManifestS3Uri
must contain one of the following keys: source-ref
or source
. The value of the keys are interpreted as follows:
-
source-ref
: The source of the object is the Amazon S3 object specified in the value. Use this value when the object is a binary object, such as an image. -
source
: The source of the object is the value. Use this value when the object is a text value.
If you are a new user of Ground Truth, it is recommended you review Use an Input Manifest File in the Amazon SageMaker Developer Guide to learn how to create an input manifest file.
sourcepub fn build(self) -> LabelingJobS3DataSource
pub fn build(self) -> LabelingJobS3DataSource
Consumes the builder and constructs a LabelingJobS3DataSource
.
Trait Implementations§
source§impl Clone for LabelingJobS3DataSourceBuilder
impl Clone for LabelingJobS3DataSourceBuilder
source§fn clone(&self) -> LabelingJobS3DataSourceBuilder
fn clone(&self) -> LabelingJobS3DataSourceBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for LabelingJobS3DataSourceBuilder
impl Default for LabelingJobS3DataSourceBuilder
source§fn default() -> LabelingJobS3DataSourceBuilder
fn default() -> LabelingJobS3DataSourceBuilder
source§impl PartialEq for LabelingJobS3DataSourceBuilder
impl PartialEq for LabelingJobS3DataSourceBuilder
source§fn eq(&self, other: &LabelingJobS3DataSourceBuilder) -> bool
fn eq(&self, other: &LabelingJobS3DataSourceBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LabelingJobS3DataSourceBuilder
Auto Trait Implementations§
impl Freeze for LabelingJobS3DataSourceBuilder
impl RefUnwindSafe for LabelingJobS3DataSourceBuilder
impl Send for LabelingJobS3DataSourceBuilder
impl Sync for LabelingJobS3DataSourceBuilder
impl Unpin for LabelingJobS3DataSourceBuilder
impl UnwindSafe for LabelingJobS3DataSourceBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more