pub struct Builder { /* private fields */ }
Expand description
A builder for CreateBatchPredictionInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn batch_prediction_id(self, input: impl Into<String>) -> Self
pub fn batch_prediction_id(self, input: impl Into<String>) -> Self
A user-supplied ID that uniquely identifies the BatchPrediction
.
sourcepub fn set_batch_prediction_id(self, input: Option<String>) -> Self
pub fn set_batch_prediction_id(self, input: Option<String>) -> Self
A user-supplied ID that uniquely identifies the BatchPrediction
.
sourcepub fn batch_prediction_name(self, input: impl Into<String>) -> Self
pub fn batch_prediction_name(self, input: impl Into<String>) -> Self
A user-supplied name or description of the BatchPrediction
. BatchPredictionName
can only use the UTF-8 character set.
sourcepub fn set_batch_prediction_name(self, input: Option<String>) -> Self
pub fn set_batch_prediction_name(self, input: Option<String>) -> Self
A user-supplied name or description of the BatchPrediction
. BatchPredictionName
can only use the UTF-8 character set.
sourcepub fn ml_model_id(self, input: impl Into<String>) -> Self
pub fn ml_model_id(self, input: impl Into<String>) -> Self
The ID of the MLModel
that will generate predictions for the group of observations.
sourcepub fn set_ml_model_id(self, input: Option<String>) -> Self
pub fn set_ml_model_id(self, input: Option<String>) -> Self
The ID of the MLModel
that will generate predictions for the group of observations.
sourcepub fn batch_prediction_data_source_id(self, input: impl Into<String>) -> Self
pub fn batch_prediction_data_source_id(self, input: impl Into<String>) -> Self
The ID of the DataSource
that points to the group of observations to predict.
sourcepub fn set_batch_prediction_data_source_id(self, input: Option<String>) -> Self
pub fn set_batch_prediction_data_source_id(self, input: Option<String>) -> Self
The ID of the DataSource
that points to the group of observations to predict.
sourcepub fn output_uri(self, input: impl Into<String>) -> Self
pub fn output_uri(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_output_uri(self, input: Option<String>) -> Self
pub fn set_output_uri(self, input: Option<String>) -> Self
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.
sourcepub fn build(self) -> Result<CreateBatchPredictionInput, BuildError>
pub fn build(self) -> Result<CreateBatchPredictionInput, BuildError>
Consumes the builder and constructs a CreateBatchPredictionInput
.