AWSMachineLearningCreateRealtimeEndpointOutput
Objective-C
@interface AWSMachineLearningCreateRealtimeEndpointOutput
Swift
class AWSMachineLearningCreateRealtimeEndpointOutput
Represents the output of an CreateRealtimeEndpoint
operation.
The result contains the MLModelId
and the endpoint information for the MLModel
.
The endpoint information includes the URI of the MLModel
; that is, the location to send online prediction requests for the specified MLModel
.
-
A user-supplied ID that uniquely identifies the
MLModel
. This value should be identical to the value of theMLModelId
in the request.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable MLModelId;
Swift
var mlModelId: String? { get set }
-
The endpoint information of the
MLModel
Declaration
Objective-C
@property (nonatomic, strong) AWSMachineLearningRealtimeEndpointInfo *_Nullable realtimeEndpointInfo;
Swift
var realtimeEndpointInfo: AWSMachineLearningRealtimeEndpointInfo? { get set }