#[non_exhaustive]pub struct CreateDataSourceFromS3Input { /* private fields */ }Implementations
sourceimpl CreateDataSourceFromS3Input
impl CreateDataSourceFromS3Input
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateDataSourceFromS3, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateDataSourceFromS3, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateDataSourceFromS3>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateDataSourceFromS3Input.
sourceimpl CreateDataSourceFromS3Input
impl CreateDataSourceFromS3Input
sourcepub fn data_source_id(&self) -> Option<&str>
pub fn data_source_id(&self) -> Option<&str>
A user-supplied identifier that uniquely identifies the DataSource.
sourcepub fn data_source_name(&self) -> Option<&str>
pub fn data_source_name(&self) -> Option<&str>
A user-supplied name or description of the DataSource.
sourcepub fn data_spec(&self) -> Option<&S3DataSpec>
pub fn data_spec(&self) -> Option<&S3DataSpec>
The data specification of a DataSource:
-
DataLocationS3 - The Amazon S3 location of the observation data.
-
DataSchemaLocationS3 - The Amazon S3 location of the
DataSchema. -
DataSchema - A JSON string representing the schema. This is not required if
DataSchemaUriis specified. -
DataRearrangement - A JSON string that represents the splitting and rearrangement requirements for the
Datasource.Sample -
"{\"splitting\":{\"percentBegin\":10,\"percentEnd\":60}}"
sourcepub fn compute_statistics(&self) -> bool
pub fn compute_statistics(&self) -> bool
The compute statistics for a DataSource. The statistics are generated from the observation data referenced by a DataSource. Amazon ML uses the statistics internally during MLModel training. This parameter must be set to true if the DataSource needs to be used for MLModel training.
Trait Implementations
sourceimpl Clone for CreateDataSourceFromS3Input
impl Clone for CreateDataSourceFromS3Input
sourcefn clone(&self) -> CreateDataSourceFromS3Input
fn clone(&self) -> CreateDataSourceFromS3Input
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 more
sourceimpl Debug for CreateDataSourceFromS3Input
impl Debug for CreateDataSourceFromS3Input
sourceimpl PartialEq<CreateDataSourceFromS3Input> for CreateDataSourceFromS3Input
impl PartialEq<CreateDataSourceFromS3Input> for CreateDataSourceFromS3Input
sourcefn eq(&self, other: &CreateDataSourceFromS3Input) -> bool
fn eq(&self, other: &CreateDataSourceFromS3Input) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
impl StructuralPartialEq for CreateDataSourceFromS3Input
Auto Trait Implementations
impl RefUnwindSafe for CreateDataSourceFromS3Input
impl Send for CreateDataSourceFromS3Input
impl Sync for CreateDataSourceFromS3Input
impl Unpin for CreateDataSourceFromS3Input
impl UnwindSafe for CreateDataSourceFromS3Input
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more