pub struct CreateMLModelOutput {
pub ml_model_id: Option<String>,
}
Expand description
Represents the output of a CreateMLModel
operation, and is an acknowledgement that Amazon ML received the request.
The CreateMLModel
operation is asynchronous. You can poll for status updates by using the GetMLModel
operation and checking the Status
parameter.
Fields§
§ml_model_id: Option<String>
A user-supplied ID that uniquely identifies the MLModel
. This value should be identical to the value of the MLModelId
in the request.
Trait Implementations§
Source§impl Clone for CreateMLModelOutput
impl Clone for CreateMLModelOutput
Source§fn clone(&self) -> CreateMLModelOutput
fn clone(&self) -> CreateMLModelOutput
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 CreateMLModelOutput
impl Debug for CreateMLModelOutput
Source§impl Default for CreateMLModelOutput
impl Default for CreateMLModelOutput
Source§fn default() -> CreateMLModelOutput
fn default() -> CreateMLModelOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateMLModelOutput
impl<'de> Deserialize<'de> for CreateMLModelOutput
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 CreateMLModelOutput
impl PartialEq for CreateMLModelOutput
impl StructuralPartialEq for CreateMLModelOutput
Auto Trait Implementations§
impl Freeze for CreateMLModelOutput
impl RefUnwindSafe for CreateMLModelOutput
impl Send for CreateMLModelOutput
impl Sync for CreateMLModelOutput
impl Unpin for CreateMLModelOutput
impl UnwindSafe for CreateMLModelOutput
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