AWSMachineLearningCreateEvaluationInput
Objective-C
@interface AWSMachineLearningCreateEvaluationInput
Swift
class AWSMachineLearningCreateEvaluationInput
-
The ID of the
DataSource
for the evaluation. The schema of theDataSource
must match the schema used to create theMLModel
.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable evaluationDataSourceId;
Swift
var evaluationDataSourceId: String? { get set }
-
A user-supplied ID that uniquely identifies the
Evaluation
.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable evaluationId;
Swift
var evaluationId: String? { get set }
-
A user-supplied name or description of the
Evaluation
.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable evaluationName;
Swift
var evaluationName: String? { get set }
-
The ID of the
MLModel
to evaluate.The schema used in creating the
MLModel
must match the schema of theDataSource
used in theEvaluation
.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable MLModelId;
Swift
var mlModelId: String? { get set }