AWSMachineLearningGetBatchPredictionOutput

Objective-C

@interface AWSMachineLearningGetBatchPredictionOutput

Swift

class AWSMachineLearningGetBatchPredictionOutput

Represents the output of a GetBatchPrediction operation and describes a BatchPrediction.

  • The ID of the DataSource that was used to create the BatchPrediction.

    Declaration

    Objective-C

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

    Swift

    var batchPredictionDataSourceId: String? { get set }
  • An 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 }
  • The approximate CPU time in milliseconds that Amazon Machine Learning spent processing the BatchPrediction, normalized and scaled on computation resources. ComputeTime is only available if the BatchPrediction is in the COMPLETED state.

    Declaration

    Objective-C

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

    Swift

    var computeTime: NSNumber? { get set }
  • The time when 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 }
  • The epoch time when Amazon Machine Learning marked the BatchPrediction as COMPLETED or FAILED. FinishedAt is only available when the BatchPrediction is in the COMPLETED or FAILED state.

    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 }
  • The number of invalid records that Amazon Machine Learning saw while processing the BatchPrediction.

    Declaration

    Objective-C

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

    Swift

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

    Declaration

    Objective-C

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

    Swift

    var lastUpdatedAt: Date? { get set }
  • A link to the file that contains logs of the CreateBatchPrediction operation.

    Declaration

    Objective-C

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

    Swift

    var logUri: String? { 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.

    Declaration

    Objective-C

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

    Swift

    var outputUri: String? { get set }
  • The epoch time when Amazon Machine Learning marked the BatchPrediction as INPROGRESS. StartedAt isn’t available if the BatchPrediction is in the PENDING state.

    Declaration

    Objective-C

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

    Swift

    var startedAt: Date? { get set }
  • The status of the BatchPrediction, which can be one of the following values:

    • PENDING - Amazon Machine Learning (Amazon ML) submitted a request to generate batch predictions.
    • INPROGRESS - The batch predictions are in progress.
    • 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 }
  • The number of total records that Amazon Machine Learning saw while processing the BatchPrediction.

    Declaration

    Objective-C

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

    Swift

    var totalRecordCount: NSNumber? { get set }