Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
- data RealtimeEndpointInfo = RealtimeEndpointInfo' {}
- newRealtimeEndpointInfo :: RealtimeEndpointInfo
- realtimeEndpointInfo_createdAt :: Lens' RealtimeEndpointInfo (Maybe UTCTime)
- realtimeEndpointInfo_endpointUrl :: Lens' RealtimeEndpointInfo (Maybe Text)
- realtimeEndpointInfo_endpointStatus :: Lens' RealtimeEndpointInfo (Maybe RealtimeEndpointStatus)
- realtimeEndpointInfo_peakRequestsPerSecond :: Lens' RealtimeEndpointInfo (Maybe Int)
Documentation
data RealtimeEndpointInfo Source #
Describes the real-time endpoint information for an MLModel
.
See: newRealtimeEndpointInfo
smart constructor.
RealtimeEndpointInfo' | |
|
Instances
newRealtimeEndpointInfo :: RealtimeEndpointInfo Source #
Create a value of RealtimeEndpointInfo
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:createdAt:RealtimeEndpointInfo'
, realtimeEndpointInfo_createdAt
- The time that the request to create the real-time endpoint for the
MLModel
was received. The time is expressed in epoch time.
$sel:endpointUrl:RealtimeEndpointInfo'
, realtimeEndpointInfo_endpointUrl
- 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.
$sel:endpointStatus:RealtimeEndpointInfo'
, realtimeEndpointInfo_endpointStatus
- 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.
$sel:peakRequestsPerSecond:RealtimeEndpointInfo'
, realtimeEndpointInfo_peakRequestsPerSecond
- The maximum processing rate for the real-time endpoint for MLModel
,
measured in incoming requests per second.
realtimeEndpointInfo_createdAt :: Lens' RealtimeEndpointInfo (Maybe UTCTime) Source #
The time that the request to create the real-time endpoint for the
MLModel
was received. The time is expressed in epoch time.
realtimeEndpointInfo_endpointUrl :: Lens' RealtimeEndpointInfo (Maybe Text) Source #
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.
realtimeEndpointInfo_endpointStatus :: Lens' RealtimeEndpointInfo (Maybe RealtimeEndpointStatus) Source #
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.
realtimeEndpointInfo_peakRequestsPerSecond :: Lens' RealtimeEndpointInfo (Maybe Int) Source #
The maximum processing rate for the real-time endpoint for MLModel
,
measured in incoming requests per second.