pub struct DeleteMLModelOutput {
pub ml_model_id: Option<String>,
}
Expand description
Represents the output of a DeleteMLModel
operation.
You can use the GetMLModel
operation and check the value of the Status
parameter to see whether an MLModel
is marked as DELETED
.
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 DeleteMLModelOutput
impl Clone for DeleteMLModelOutput
Source§fn clone(&self) -> DeleteMLModelOutput
fn clone(&self) -> DeleteMLModelOutput
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 DeleteMLModelOutput
impl Debug for DeleteMLModelOutput
Source§impl Default for DeleteMLModelOutput
impl Default for DeleteMLModelOutput
Source§fn default() -> DeleteMLModelOutput
fn default() -> DeleteMLModelOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteMLModelOutput
impl<'de> Deserialize<'de> for DeleteMLModelOutput
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 DeleteMLModelOutput
impl PartialEq for DeleteMLModelOutput
impl StructuralPartialEq for DeleteMLModelOutput
Auto Trait Implementations§
impl Freeze for DeleteMLModelOutput
impl RefUnwindSafe for DeleteMLModelOutput
impl Send for DeleteMLModelOutput
impl Sync for DeleteMLModelOutput
impl Unpin for DeleteMLModelOutput
impl UnwindSafe for DeleteMLModelOutput
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