pub struct DeleteEvaluationOutput {
pub evaluation_id: Option<String>,
}
Expand description
Represents the output of a DeleteEvaluation
operation. The output indicates that Amazon Machine Learning (Amazon ML) received the request.
You can use the GetEvaluation
operation and check the value of the Status
parameter to see whether an Evaluation
is marked as DELETED
.
Fields§
§evaluation_id: Option<String>
A user-supplied ID that uniquely identifies the Evaluation
. This value should be identical to the value of the EvaluationId
in the request.
Trait Implementations§
Source§impl Clone for DeleteEvaluationOutput
impl Clone for DeleteEvaluationOutput
Source§fn clone(&self) -> DeleteEvaluationOutput
fn clone(&self) -> DeleteEvaluationOutput
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 DeleteEvaluationOutput
impl Debug for DeleteEvaluationOutput
Source§impl Default for DeleteEvaluationOutput
impl Default for DeleteEvaluationOutput
Source§fn default() -> DeleteEvaluationOutput
fn default() -> DeleteEvaluationOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteEvaluationOutput
impl<'de> Deserialize<'de> for DeleteEvaluationOutput
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
Source§impl PartialEq for DeleteEvaluationOutput
impl PartialEq for DeleteEvaluationOutput
impl StructuralPartialEq for DeleteEvaluationOutput
Auto Trait Implementations§
impl Freeze for DeleteEvaluationOutput
impl RefUnwindSafe for DeleteEvaluationOutput
impl Send for DeleteEvaluationOutput
impl Sync for DeleteEvaluationOutput
impl Unpin for DeleteEvaluationOutput
impl UnwindSafe for DeleteEvaluationOutput
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