Struct aws_sdk_machinelearning::input::CreateBatchPredictionInput [−][src]
#[non_exhaustive]pub struct CreateBatchPredictionInput {
pub batch_prediction_id: Option<String>,
pub batch_prediction_name: Option<String>,
pub ml_model_id: Option<String>,
pub batch_prediction_data_source_id: Option<String>,
pub output_uri: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.batch_prediction_id: Option<String>
A user-supplied ID that uniquely identifies the
BatchPrediction
.
batch_prediction_name: Option<String>
A user-supplied name or description of the BatchPrediction
. BatchPredictionName
can only use the UTF-8 character set.
ml_model_id: Option<String>
The ID of the MLModel
that will generate predictions for the group of observations.
batch_prediction_data_source_id: Option<String>
The ID of the DataSource
that points to the group of observations to predict.
output_uri: Option<String>
The location of an Amazon Simple Storage Service (Amazon S3) bucket or directory to store the batch prediction results. The following substrings are not allowed in the s3 key
portion of the outputURI
field: ':', '//', '/./', '/../'.
Amazon ML needs permissions to store and retrieve the logs on your behalf. For information about how to set permissions, see the Amazon Machine Learning Developer Guide.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateBatchPrediction, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateBatchPrediction, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateBatchPrediction
>
Creates a new builder-style object to manufacture CreateBatchPredictionInput
A user-supplied ID that uniquely identifies the
BatchPrediction
.
A user-supplied name or description of the BatchPrediction
. BatchPredictionName
can only use the UTF-8 character set.
The ID of the MLModel
that will generate predictions for the group of observations.
The ID of the DataSource
that points to the group of observations to predict.
The location of an Amazon Simple Storage Service (Amazon S3) bucket or directory to store the batch prediction results. The following substrings are not allowed in the s3 key
portion of the outputURI
field: ':', '//', '/./', '/../'.
Amazon ML needs permissions to store and retrieve the logs on your behalf. For information about how to set permissions, see the Amazon Machine Learning Developer Guide.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateBatchPredictionInput
impl Send for CreateBatchPredictionInput
impl Sync for CreateBatchPredictionInput
impl Unpin for CreateBatchPredictionInput
impl UnwindSafe for CreateBatchPredictionInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more