pub struct CreateEvaluationOutput {
pub evaluation_id: Option<String>,
}
Expand description
Represents the output of a CreateEvaluation
operation, and is an acknowledgement that Amazon ML received the request.
CreateEvaluation
operation is asynchronous. You can poll for status updates by using the GetEvcaluation
operation and checking the Status
parameter.
Fields§
§evaluation_id: Option<String>
The 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 CreateEvaluationOutput
impl Clone for CreateEvaluationOutput
Source§fn clone(&self) -> CreateEvaluationOutput
fn clone(&self) -> CreateEvaluationOutput
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 CreateEvaluationOutput
impl Debug for CreateEvaluationOutput
Source§impl Default for CreateEvaluationOutput
impl Default for CreateEvaluationOutput
Source§fn default() -> CreateEvaluationOutput
fn default() -> CreateEvaluationOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateEvaluationOutput
impl<'de> Deserialize<'de> for CreateEvaluationOutput
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 CreateEvaluationOutput
impl PartialEq for CreateEvaluationOutput
impl StructuralPartialEq for CreateEvaluationOutput
Auto Trait Implementations§
impl Freeze for CreateEvaluationOutput
impl RefUnwindSafe for CreateEvaluationOutput
impl Send for CreateEvaluationOutput
impl Sync for CreateEvaluationOutput
impl Unpin for CreateEvaluationOutput
impl UnwindSafe for CreateEvaluationOutput
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