pub struct CreateBatchPredictionOutput {
pub batch_prediction_id: Option<String>,
}
Expand description
Represents the output of a CreateBatchPrediction
operation, and is an acknowledgement that Amazon ML received the request.
The CreateBatchPrediction
operation is asynchronous. You can poll for status updates by using the >GetBatchPrediction
operation and checking the Status
parameter of the result.
Fields§
§batch_prediction_id: Option<String>
A user-supplied ID that uniquely identifies the BatchPrediction
. This value is identical to the value of the BatchPredictionId
in the request.
Trait Implementations§
Source§impl Clone for CreateBatchPredictionOutput
impl Clone for CreateBatchPredictionOutput
Source§fn clone(&self) -> CreateBatchPredictionOutput
fn clone(&self) -> CreateBatchPredictionOutput
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 CreateBatchPredictionOutput
impl Debug for CreateBatchPredictionOutput
Source§impl Default for CreateBatchPredictionOutput
impl Default for CreateBatchPredictionOutput
Source§fn default() -> CreateBatchPredictionOutput
fn default() -> CreateBatchPredictionOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateBatchPredictionOutput
impl<'de> Deserialize<'de> for CreateBatchPredictionOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for CreateBatchPredictionOutput
Auto Trait Implementations§
impl Freeze for CreateBatchPredictionOutput
impl RefUnwindSafe for CreateBatchPredictionOutput
impl Send for CreateBatchPredictionOutput
impl Sync for CreateBatchPredictionOutput
impl Unpin for CreateBatchPredictionOutput
impl UnwindSafe for CreateBatchPredictionOutput
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