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