pub struct DeleteBatchPredictionOutput {
pub batch_prediction_id: Option<String>,
}
Expand description
Represents the output of a DeleteBatchPrediction
operation.
You can use the GetBatchPrediction
operation and check the value of the Status
parameter to see whether a BatchPrediction
is marked as DELETED
.
Fields§
§batch_prediction_id: Option<String>
A user-supplied ID that uniquely identifies the BatchPrediction
. This value should be identical to the value of the BatchPredictionID
in the request.
Trait Implementations§
Source§impl Clone for DeleteBatchPredictionOutput
impl Clone for DeleteBatchPredictionOutput
Source§fn clone(&self) -> DeleteBatchPredictionOutput
fn clone(&self) -> DeleteBatchPredictionOutput
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 DeleteBatchPredictionOutput
impl Debug for DeleteBatchPredictionOutput
Source§impl Default for DeleteBatchPredictionOutput
impl Default for DeleteBatchPredictionOutput
Source§fn default() -> DeleteBatchPredictionOutput
fn default() -> DeleteBatchPredictionOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteBatchPredictionOutput
impl<'de> Deserialize<'de> for DeleteBatchPredictionOutput
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 DeleteBatchPredictionOutput
Auto Trait Implementations§
impl Freeze for DeleteBatchPredictionOutput
impl RefUnwindSafe for DeleteBatchPredictionOutput
impl Send for DeleteBatchPredictionOutput
impl Sync for DeleteBatchPredictionOutput
impl Unpin for DeleteBatchPredictionOutput
impl UnwindSafe for DeleteBatchPredictionOutput
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