pub struct DeleteRealtimeEndpointOutput {
pub ml_model_id: Option<String>,
pub realtime_endpoint_info: Option<RealtimeEndpointInfo>,
}
Expand description
Represents the output of an DeleteRealtimeEndpoint
operation.
The result contains the MLModelId
and the endpoint information for the MLModel
.
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.
realtime_endpoint_info: Option<RealtimeEndpointInfo>
The endpoint information of the MLModel
Trait Implementations§
Source§impl Clone for DeleteRealtimeEndpointOutput
impl Clone for DeleteRealtimeEndpointOutput
Source§fn clone(&self) -> DeleteRealtimeEndpointOutput
fn clone(&self) -> DeleteRealtimeEndpointOutput
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 DeleteRealtimeEndpointOutput
impl Debug for DeleteRealtimeEndpointOutput
Source§impl Default for DeleteRealtimeEndpointOutput
impl Default for DeleteRealtimeEndpointOutput
Source§fn default() -> DeleteRealtimeEndpointOutput
fn default() -> DeleteRealtimeEndpointOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteRealtimeEndpointOutput
impl<'de> Deserialize<'de> for DeleteRealtimeEndpointOutput
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 DeleteRealtimeEndpointOutput
impl PartialEq for DeleteRealtimeEndpointOutput
Source§fn eq(&self, other: &DeleteRealtimeEndpointOutput) -> bool
fn eq(&self, other: &DeleteRealtimeEndpointOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteRealtimeEndpointOutput
Auto Trait Implementations§
impl Freeze for DeleteRealtimeEndpointOutput
impl RefUnwindSafe for DeleteRealtimeEndpointOutput
impl Send for DeleteRealtimeEndpointOutput
impl Sync for DeleteRealtimeEndpointOutput
impl Unpin for DeleteRealtimeEndpointOutput
impl UnwindSafe for DeleteRealtimeEndpointOutput
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