#[non_exhaustive]pub struct CreateDataSourceFromS3Input { /* private fields */ }
Implementations§
source§impl CreateDataSourceFromS3Input
impl CreateDataSourceFromS3Input
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateDataSourceFromS3, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateDataSourceFromS3, AwsResponseRetryClassifier>, 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
.
source§impl 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
DataSchemaUri
is 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§
source§impl Clone for CreateDataSourceFromS3Input
impl Clone for CreateDataSourceFromS3Input
source§fn clone(&self) -> CreateDataSourceFromS3Input
fn clone(&self) -> CreateDataSourceFromS3Input
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateDataSourceFromS3Input
impl Debug for CreateDataSourceFromS3Input
source§impl PartialEq<CreateDataSourceFromS3Input> for CreateDataSourceFromS3Input
impl PartialEq<CreateDataSourceFromS3Input> for CreateDataSourceFromS3Input
source§fn eq(&self, other: &CreateDataSourceFromS3Input) -> bool
fn eq(&self, other: &CreateDataSourceFromS3Input) -> bool
self
and other
values to be equal, and is used
by ==
.