DescribeLabelingJobResponse
public struct DescribeLabelingJobResponse : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The date and time that the labeling job was created.
Declaration
Swift
public let creationTime: TimeStamp
-
If the job failed, the reason that it failed.
Declaration
Swift
public let failureReason: String?
-
Configuration information required for human workers to complete a labeling task.
Declaration
Swift
public let humanTaskConfig: HumanTaskConfig
-
Input configuration information for the labeling job, such as the Amazon S3 location of the data objects and the location of the manifest file that describes the data objects.
Declaration
Swift
public let inputConfig: LabelingJobInputConfig
-
A unique identifier for work done as part of a labeling job.
Declaration
Swift
public let jobReferenceCode: String
-
The attribute used as the label in the output manifest file.
Declaration
Swift
public let labelAttributeName: String?
-
The S3 location of the JSON file that defines the categories used to label data objects. Please note the following label-category limits: Semantic segmentation labeling jobs using automated labeling: 20 labels Box bounding labeling jobs (all): 10 labels The file is a JSON structure in the following format: { “document-version”: “2018-11-28” “labels”: [ { “label”: “label 1” }, { “label”: “label 2” }, … { “label”: “label n” } ] }
Declaration
Swift
public let labelCategoryConfigS3Uri: String?
-
Provides a breakdown of the number of data objects labeled by humans, the number of objects labeled by machine, the number of objects than couldn’t be labeled, and the total number of objects labeled.
Declaration
Swift
public let labelCounters: LabelCounters
-
Configuration information for automated data labeling.
Declaration
Swift
public let labelingJobAlgorithmsConfig: LabelingJobAlgorithmsConfig?
-
The Amazon Resource Name (ARN) of the labeling job.
Declaration
Swift
public let labelingJobArn: String
-
The name assigned to the labeling job when it was created.
Declaration
Swift
public let labelingJobName: String
-
The location of the output produced by the labeling job.
Declaration
Swift
public let labelingJobOutput: LabelingJobOutput?
-
The processing status of the labeling job.
Declaration
Swift
public let labelingJobStatus: LabelingJobStatus
-
The date and time that the labeling job was last updated.
Declaration
Swift
public let lastModifiedTime: TimeStamp
-
The location of the job’s output data and the AWS Key Management Service key ID for the key used to encrypt the output data, if any.
Declaration
Swift
public let outputConfig: LabelingJobOutputConfig
-
The Amazon Resource Name (ARN) that Amazon SageMaker assumes to perform tasks on your behalf during data labeling.
Declaration
Swift
public let roleArn: String
-
A set of conditions for stopping a labeling job. If any of the conditions are met, the job is automatically stopped.
Declaration
Swift
public let stoppingConditions: LabelingJobStoppingConditions?
-
An array of key/value pairs. For more information, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide.
Declaration
Swift
public let tags: [Tag]?
-
init(creationTime:failureReason:humanTaskConfig:inputConfig:jobReferenceCode:labelAttributeName:labelCategoryConfigS3Uri:labelCounters:labelingJobAlgorithmsConfig:labelingJobArn:labelingJobName:labelingJobOutput:labelingJobStatus:lastModifiedTime:outputConfig:roleArn:stoppingConditions:tags:)
Undocumented
Declaration
Swift
public init(creationTime: TimeStamp, failureReason: String? = nil, humanTaskConfig: HumanTaskConfig, inputConfig: LabelingJobInputConfig, jobReferenceCode: String, labelAttributeName: String? = nil, labelCategoryConfigS3Uri: String? = nil, labelCounters: LabelCounters, labelingJobAlgorithmsConfig: LabelingJobAlgorithmsConfig? = nil, labelingJobArn: String, labelingJobName: String, labelingJobOutput: LabelingJobOutput? = nil, labelingJobStatus: LabelingJobStatus, lastModifiedTime: TimeStamp, outputConfig: LabelingJobOutputConfig, roleArn: String, stoppingConditions: LabelingJobStoppingConditions? = nil, tags: [Tag]? = nil)