AWSTranslateJobDetails

Objective-C

@interface AWSTranslateJobDetails

Swift

class AWSTranslateJobDetails

The number of documents successfully and unsuccessfully processed during a translation job.

  • The number of documents that could not be processed during a translation job.

    Declaration

    Objective-C

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

    Swift

    var documentsWithErrorsCount: NSNumber? { get set }
  • The number of documents used as input in a translation job.

    Declaration

    Objective-C

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

    Swift

    var inputDocumentsCount: NSNumber? { get set }
  • The number of documents successfully processed during a translation job.

    Declaration

    Objective-C

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

    Swift

    var translatedDocumentsCount: NSNumber? { get set }