AWSMachineLearningCreateBatchPredictionInput
Objective-C
@interface AWSMachineLearningCreateBatchPredictionInput
Swift
class AWSMachineLearningCreateBatchPredictionInput
-
The ID of the
DataSource
that points to the group of observations to predict.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable batchPredictionDataSourceId;
Swift
var batchPredictionDataSourceId: String? { get set }
-
A user-supplied ID that uniquely identifies the
BatchPrediction
.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable batchPredictionId;
Swift
var batchPredictionId: String? { get set }
-
A user-supplied name or description of the
BatchPrediction
.BatchPredictionName
can only use the UTF-8 character set.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable batchPredictionName;
Swift
var batchPredictionName: String? { get set }
-
The ID of the
MLModel
that will generate predictions for the group of observations.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable MLModelId;
Swift
var mlModelId: String? { get set }
-
The location of an Amazon Simple Storage Service (Amazon S3) bucket or directory to store the batch prediction results. The following substrings are not allowed in the
s3 key
portion of theoutputURI
field: ‘:’, ‘//’, ‘/./’, ‘/../’.Amazon ML needs permissions to store and retrieve the logs on your behalf. For information about how to set permissions, see the Amazon Machine Learning Developer Guide.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable outputUri;
Swift
var outputUri: String? { get set }