pub struct CreateBatchPredictionInput {
pub batch_prediction_data_source_id: String,
pub batch_prediction_id: String,
pub batch_prediction_name: Option<String>,
pub ml_model_id: String,
pub output_uri: String,
}
Fields§
§batch_prediction_data_source_id: String
The ID of the DataSource
that points to the group of observations to predict.
batch_prediction_id: 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: String
The ID of the MLModel
that will generate predictions for the group of observations.
output_uri: 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.
Trait Implementations§
Source§impl Clone for CreateBatchPredictionInput
impl Clone for CreateBatchPredictionInput
Source§fn clone(&self) -> CreateBatchPredictionInput
fn clone(&self) -> CreateBatchPredictionInput
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CreateBatchPredictionInput
impl Debug for CreateBatchPredictionInput
Source§impl Default for CreateBatchPredictionInput
impl Default for CreateBatchPredictionInput
Source§fn default() -> CreateBatchPredictionInput
fn default() -> CreateBatchPredictionInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for CreateBatchPredictionInput
Auto Trait Implementations§
impl Freeze for CreateBatchPredictionInput
impl RefUnwindSafe for CreateBatchPredictionInput
impl Send for CreateBatchPredictionInput
impl Sync for CreateBatchPredictionInput
impl Unpin for CreateBatchPredictionInput
impl UnwindSafe for CreateBatchPredictionInput
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