pub struct Builder { /* private fields */ }
Expand description
A builder for RealtimeEndpointInfo
.
Implementations§
source§impl Builder
impl Builder
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 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 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 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 build(self) -> RealtimeEndpointInfo
pub fn build(self) -> RealtimeEndpointInfo
Consumes the builder and constructs a RealtimeEndpointInfo
.