#[non_exhaustive]pub struct RealtimeEndpointInfoBuilder { /* private fields */ }
Expand description
A builder for RealtimeEndpointInfo
.
Implementations§
source§impl RealtimeEndpointInfoBuilder
impl RealtimeEndpointInfoBuilder
sourcepub fn peak_requests_per_second(self, input: i32) -> Self
pub fn peak_requests_per_second(self, input: i32) -> Self
The maximum processing rate for the real-time endpoint for MLModel
, measured in incoming requests per second.
sourcepub fn set_peak_requests_per_second(self, input: Option<i32>) -> Self
pub fn set_peak_requests_per_second(self, input: Option<i32>) -> Self
The maximum processing rate for the real-time endpoint for MLModel
, measured in incoming requests per second.
sourcepub fn get_peak_requests_per_second(&self) -> &Option<i32>
pub fn get_peak_requests_per_second(&self) -> &Option<i32>
The maximum processing rate for the real-time endpoint for MLModel
, measured in incoming requests per second.
sourcepub fn created_at(self, input: DateTime) -> Self
pub fn created_at(self, input: DateTime) -> Self
The time that the request to create the real-time endpoint for the MLModel
was received. The time is expressed in epoch time.
sourcepub fn set_created_at(self, input: Option<DateTime>) -> Self
pub fn set_created_at(self, input: Option<DateTime>) -> Self
The time that the request to create the real-time endpoint for the MLModel
was received. The time is expressed in epoch time.
sourcepub fn get_created_at(&self) -> &Option<DateTime>
pub fn get_created_at(&self) -> &Option<DateTime>
The time that the request to create the real-time endpoint for the MLModel
was received. The time is expressed in epoch time.
sourcepub fn endpoint_url(self, input: impl Into<String>) -> Self
pub fn endpoint_url(self, input: impl Into<String>) -> Self
The URI that specifies where to send real-time prediction requests for the MLModel
.
Note: The application must wait until the real-time endpoint is ready before using this URI.
sourcepub fn set_endpoint_url(self, input: Option<String>) -> Self
pub fn set_endpoint_url(self, input: Option<String>) -> Self
The URI that specifies where to send real-time prediction requests for the MLModel
.
Note: The application must wait until the real-time endpoint is ready before using this URI.
sourcepub fn get_endpoint_url(&self) -> &Option<String>
pub fn get_endpoint_url(&self) -> &Option<String>
The URI that specifies where to send real-time prediction requests for the MLModel
.
Note: The application must wait until the real-time endpoint is ready before using this URI.
sourcepub fn endpoint_status(self, input: RealtimeEndpointStatus) -> Self
pub fn endpoint_status(self, input: RealtimeEndpointStatus) -> Self
The current status of the real-time endpoint for the MLModel
. This element can have one of the following values:
-
NONE
- Endpoint does not exist or was previously deleted. -
READY
- Endpoint is ready to be used for real-time predictions. -
UPDATING
- Updating/creating the endpoint.
sourcepub fn set_endpoint_status(self, input: Option<RealtimeEndpointStatus>) -> Self
pub fn set_endpoint_status(self, input: Option<RealtimeEndpointStatus>) -> Self
The current status of the real-time endpoint for the MLModel
. This element can have one of the following values:
-
NONE
- Endpoint does not exist or was previously deleted. -
READY
- Endpoint is ready to be used for real-time predictions. -
UPDATING
- Updating/creating the endpoint.
sourcepub fn get_endpoint_status(&self) -> &Option<RealtimeEndpointStatus>
pub fn get_endpoint_status(&self) -> &Option<RealtimeEndpointStatus>
The current status of the real-time endpoint for the MLModel
. This element can have one of the following values:
-
NONE
- Endpoint does not exist or was previously deleted. -
READY
- Endpoint is ready to be used for real-time predictions. -
UPDATING
- Updating/creating the endpoint.
sourcepub fn build(self) -> RealtimeEndpointInfo
pub fn build(self) -> RealtimeEndpointInfo
Consumes the builder and constructs a RealtimeEndpointInfo
.
Trait Implementations§
source§impl Clone for RealtimeEndpointInfoBuilder
impl Clone for RealtimeEndpointInfoBuilder
source§fn clone(&self) -> RealtimeEndpointInfoBuilder
fn clone(&self) -> RealtimeEndpointInfoBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RealtimeEndpointInfoBuilder
impl Debug for RealtimeEndpointInfoBuilder
source§impl Default for RealtimeEndpointInfoBuilder
impl Default for RealtimeEndpointInfoBuilder
source§fn default() -> RealtimeEndpointInfoBuilder
fn default() -> RealtimeEndpointInfoBuilder
source§impl PartialEq for RealtimeEndpointInfoBuilder
impl PartialEq for RealtimeEndpointInfoBuilder
source§fn eq(&self, other: &RealtimeEndpointInfoBuilder) -> bool
fn eq(&self, other: &RealtimeEndpointInfoBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.