AWSMachineLearningBatchPrediction

Objective-C

@interface AWSMachineLearningBatchPrediction

Swift

class AWSMachineLearningBatchPrediction

Represents the output of a GetBatchPrediction operation.

The content consists of the detailed metadata, the status, and the data file information of a Batch Prediction.

  • 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 }
  • The ID assigned to the BatchPrediction at creation. This value should be identical to the value of the BatchPredictionID in the request.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable batchPredictionId;

    Swift

    var batchPredictionId: String? { get set }
  • Long integer type that is a 64-bit signed number.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable computeTime;

    Swift

    var computeTime: NSNumber? { get set }
  • The time that the BatchPrediction was created. The time is expressed in epoch time.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable createdAt;

    Swift

    var createdAt: Date? { get set }
  • The AWS user account that invoked the BatchPrediction. The account type can be either an AWS root account or an AWS Identity and Access Management (IAM) user account.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable createdByIamUser;

    Swift

    var createdByIamUser: String? { get set }
  • A timestamp represented in epoch time.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable finishedAt;

    Swift

    var finishedAt: Date? { get set }
  • The location of the data file or directory in Amazon Simple Storage Service (Amazon S3).

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable inputDataLocationS3;

    Swift

    var inputDataLocationS3: String? { get set }
  • Long integer type that is a 64-bit signed number.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable invalidRecordCount;

    Swift

    var invalidRecordCount: NSNumber? { get set }
  • The time of the most recent edit to the BatchPrediction. The time is expressed in epoch time.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable lastUpdatedAt;

    Swift

    var lastUpdatedAt: Date? { get set }
  • The ID of the MLModel that generated predictions for the BatchPrediction request.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable MLModelId;

    Swift

    var mlModelId: String? { get set }
  • A description of the most recent details about processing the batch prediction request.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable message;

    Swift

    var message: String? { get set }
  • A user-supplied name or description of the BatchPrediction.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable name;

    Swift

    var name: String? { get set }
  • The location of an Amazon S3 bucket or directory to receive the operation results. The following substrings are not allowed in the s3 key portion of the outputURI field: ‘:’, ‘//’, ‘/./’, ‘/../’.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable outputUri;

    Swift

    var outputUri: String? { get set }
  • A timestamp represented in epoch time.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable startedAt;

    Swift

    var startedAt: Date? { get set }
  • The status of the BatchPrediction. This element can have one of the following values:

    • PENDING - Amazon Machine Learning (Amazon ML) submitted a request to generate predictions for a batch of observations.
    • INPROGRESS - The process is underway.
    • FAILED - The request to perform a batch prediction did not run to completion. It is not usable.
    • COMPLETED - The batch prediction process completed successfully.
    • DELETED - The BatchPrediction is marked as deleted. It is not usable.

    Declaration

    Objective-C

    @property (nonatomic) AWSMachineLearningEntityStatus status;

    Swift

    var status: AWSMachineLearningEntityStatus { get set }
  • Long integer type that is a 64-bit signed number.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable totalRecordCount;

    Swift

    var totalRecordCount: NSNumber? { get set }