libZSservicesZSamazonka-mlZSamazonka-ml
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.MachineLearning.CreateRealtimeEndpoint

Description

Creates a real-time endpoint for the MLModel. The endpoint contains the URI of the MLModel; that is, the location to send real-time prediction requests for the specified MLModel.

Synopsis

Creating a Request

data CreateRealtimeEndpoint Source #

See: newCreateRealtimeEndpoint smart constructor.

Constructors

CreateRealtimeEndpoint' 

Fields

Instances

Instances details
Eq CreateRealtimeEndpoint Source # 
Instance details

Defined in Amazonka.MachineLearning.CreateRealtimeEndpoint

Read CreateRealtimeEndpoint Source # 
Instance details

Defined in Amazonka.MachineLearning.CreateRealtimeEndpoint

Show CreateRealtimeEndpoint Source # 
Instance details

Defined in Amazonka.MachineLearning.CreateRealtimeEndpoint

Generic CreateRealtimeEndpoint Source # 
Instance details

Defined in Amazonka.MachineLearning.CreateRealtimeEndpoint

Associated Types

type Rep CreateRealtimeEndpoint :: Type -> Type #

NFData CreateRealtimeEndpoint Source # 
Instance details

Defined in Amazonka.MachineLearning.CreateRealtimeEndpoint

Methods

rnf :: CreateRealtimeEndpoint -> () #

Hashable CreateRealtimeEndpoint Source # 
Instance details

Defined in Amazonka.MachineLearning.CreateRealtimeEndpoint

ToJSON CreateRealtimeEndpoint Source # 
Instance details

Defined in Amazonka.MachineLearning.CreateRealtimeEndpoint

AWSRequest CreateRealtimeEndpoint Source # 
Instance details

Defined in Amazonka.MachineLearning.CreateRealtimeEndpoint

Associated Types

type AWSResponse CreateRealtimeEndpoint #

ToHeaders CreateRealtimeEndpoint Source # 
Instance details

Defined in Amazonka.MachineLearning.CreateRealtimeEndpoint

ToPath CreateRealtimeEndpoint Source # 
Instance details

Defined in Amazonka.MachineLearning.CreateRealtimeEndpoint

ToQuery CreateRealtimeEndpoint Source # 
Instance details

Defined in Amazonka.MachineLearning.CreateRealtimeEndpoint

type Rep CreateRealtimeEndpoint Source # 
Instance details

Defined in Amazonka.MachineLearning.CreateRealtimeEndpoint

type Rep CreateRealtimeEndpoint = D1 ('MetaData "CreateRealtimeEndpoint" "Amazonka.MachineLearning.CreateRealtimeEndpoint" "libZSservicesZSamazonka-mlZSamazonka-ml" 'False) (C1 ('MetaCons "CreateRealtimeEndpoint'" 'PrefixI 'True) (S1 ('MetaSel ('Just "mLModelId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))
type AWSResponse CreateRealtimeEndpoint Source # 
Instance details

Defined in Amazonka.MachineLearning.CreateRealtimeEndpoint

newCreateRealtimeEndpoint Source #

Create a value of CreateRealtimeEndpoint 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:mLModelId:CreateRealtimeEndpoint', createRealtimeEndpoint_mLModelId - The ID assigned to the MLModel during creation.

Request Lenses

createRealtimeEndpoint_mLModelId :: Lens' CreateRealtimeEndpoint Text Source #

The ID assigned to the MLModel during creation.

Destructuring the Response

data CreateRealtimeEndpointResponse Source #

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.

See: newCreateRealtimeEndpointResponse smart constructor.

Constructors

CreateRealtimeEndpointResponse' 

Fields

Instances

Instances details
Eq CreateRealtimeEndpointResponse Source # 
Instance details

Defined in Amazonka.MachineLearning.CreateRealtimeEndpoint

Read CreateRealtimeEndpointResponse Source # 
Instance details

Defined in Amazonka.MachineLearning.CreateRealtimeEndpoint

Show CreateRealtimeEndpointResponse Source # 
Instance details

Defined in Amazonka.MachineLearning.CreateRealtimeEndpoint

Generic CreateRealtimeEndpointResponse Source # 
Instance details

Defined in Amazonka.MachineLearning.CreateRealtimeEndpoint

Associated Types

type Rep CreateRealtimeEndpointResponse :: Type -> Type #

NFData CreateRealtimeEndpointResponse Source # 
Instance details

Defined in Amazonka.MachineLearning.CreateRealtimeEndpoint

type Rep CreateRealtimeEndpointResponse Source # 
Instance details

Defined in Amazonka.MachineLearning.CreateRealtimeEndpoint

type Rep CreateRealtimeEndpointResponse = D1 ('MetaData "CreateRealtimeEndpointResponse" "Amazonka.MachineLearning.CreateRealtimeEndpoint" "libZSservicesZSamazonka-mlZSamazonka-ml" 'False) (C1 ('MetaCons "CreateRealtimeEndpointResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "realtimeEndpointInfo") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe RealtimeEndpointInfo)) :*: (S1 ('MetaSel ('Just "mLModelId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

newCreateRealtimeEndpointResponse Source #

Create a value of CreateRealtimeEndpointResponse 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:realtimeEndpointInfo:CreateRealtimeEndpointResponse', createRealtimeEndpointResponse_realtimeEndpointInfo - The endpoint information of the MLModel

$sel:mLModelId:CreateRealtimeEndpoint', createRealtimeEndpointResponse_mLModelId - A user-supplied ID that uniquely identifies the MLModel. This value should be identical to the value of the MLModelId in the request.

$sel:httpStatus:CreateRealtimeEndpointResponse', createRealtimeEndpointResponse_httpStatus - The response's http status code.

Response Lenses

createRealtimeEndpointResponse_mLModelId :: Lens' CreateRealtimeEndpointResponse (Maybe Text) Source #

A user-supplied ID that uniquely identifies the MLModel. This value should be identical to the value of the MLModelId in the request.