Struct aws_sdk_machinelearning::operation::create_realtime_endpoint::CreateRealtimeEndpointOutput   
source · #[non_exhaustive]pub struct CreateRealtimeEndpointOutput {
    pub ml_model_id: Option<String>,
    pub realtime_endpoint_info: Option<RealtimeEndpointInfo>,
    /* private fields */
}Expand description
Represents the output of an CreateRealtimeEndpoint operation.
The result contains the MLModelId and the endpoint information for the MLModel.
Note: The endpoint information includes the URI of the MLModel; that is, the location to send online prediction requests for the specified MLModel.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.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
Implementations§
source§impl CreateRealtimeEndpointOutput
 
impl CreateRealtimeEndpointOutput
sourcepub fn ml_model_id(&self) -> Option<&str>
 
pub fn ml_model_id(&self) -> Option<&str>
A user-supplied ID that uniquely identifies the MLModel. This value should be identical to the value of the MLModelId in the request.
sourcepub fn realtime_endpoint_info(&self) -> Option<&RealtimeEndpointInfo>
 
pub fn realtime_endpoint_info(&self) -> Option<&RealtimeEndpointInfo>
The endpoint information of the MLModel
source§impl CreateRealtimeEndpointOutput
 
impl CreateRealtimeEndpointOutput
sourcepub fn builder() -> CreateRealtimeEndpointOutputBuilder
 
pub fn builder() -> CreateRealtimeEndpointOutputBuilder
Creates a new builder-style object to manufacture CreateRealtimeEndpointOutput.
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 PartialEq for CreateRealtimeEndpointOutput
 
impl PartialEq for CreateRealtimeEndpointOutput
source§fn eq(&self, other: &CreateRealtimeEndpointOutput) -> bool
 
fn eq(&self, other: &CreateRealtimeEndpointOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for CreateRealtimeEndpointOutput
 
impl RequestId for CreateRealtimeEndpointOutput
source§fn request_id(&self) -> Option<&str>
 
fn request_id(&self) -> Option<&str>
Returns the request ID, or 
None if the service could not be reached.impl StructuralPartialEq for CreateRealtimeEndpointOutput
Auto Trait Implementations§
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
source§impl<T> Instrument for T
 
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.