
com.amazonaws.services.sagemaker.model.DescribeLabelingJobResult Maven / Gradle / Ivy
/*
* Copyright 2015-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.sagemaker.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class DescribeLabelingJobResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* The processing status of the labeling job.
*
*/
private String labelingJobStatus;
/**
*
* 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.
*
*/
private LabelCounters labelCounters;
/**
*
* If the job failed, the reason that it failed.
*
*/
private String failureReason;
/**
*
* The date and time that the labeling job was created.
*
*/
private java.util.Date creationTime;
/**
*
* The date and time that the labeling job was last updated.
*
*/
private java.util.Date lastModifiedTime;
/**
*
* A unique identifier for work done as part of a labeling job.
*
*/
private String jobReferenceCode;
/**
*
* The name assigned to the labeling job when it was created.
*
*/
private String labelingJobName;
/**
*
* The Amazon Resource Name (ARN) of the labeling job.
*
*/
private String labelingJobArn;
/**
*
* The attribute used as the label in the output manifest file.
*
*/
private String labelAttributeName;
/**
*
* 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.
*
*/
private LabelingJobInputConfig inputConfig;
/**
*
* 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.
*
*/
private LabelingJobOutputConfig outputConfig;
/**
*
* The Amazon Resource Name (ARN) that Amazon SageMaker assumes to perform tasks on your behalf during data
* labeling.
*
*/
private String roleArn;
/**
*
* 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"
*
*
* }
*
*
* ]
*
*
* }
*
*/
private String labelCategoryConfigS3Uri;
/**
*
* A set of conditions for stopping a labeling job. If any of the conditions are met, the job is automatically
* stopped.
*
*/
private LabelingJobStoppingConditions stoppingConditions;
/**
*
* Configuration information for automated data labeling.
*
*/
private LabelingJobAlgorithmsConfig labelingJobAlgorithmsConfig;
/**
*
* Configuration information required for human workers to complete a labeling task.
*
*/
private HumanTaskConfig humanTaskConfig;
/**
*
* An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by
* purpose, owner, or environment. For more information, see Tagging AWS Resources.
*
*/
private java.util.List tags;
/**
*
* The location of the output produced by the labeling job.
*
*/
private LabelingJobOutput labelingJobOutput;
/**
*
* The processing status of the labeling job.
*
*
* @param labelingJobStatus
* The processing status of the labeling job.
* @see LabelingJobStatus
*/
public void setLabelingJobStatus(String labelingJobStatus) {
this.labelingJobStatus = labelingJobStatus;
}
/**
*
* The processing status of the labeling job.
*
*
* @return The processing status of the labeling job.
* @see LabelingJobStatus
*/
public String getLabelingJobStatus() {
return this.labelingJobStatus;
}
/**
*
* The processing status of the labeling job.
*
*
* @param labelingJobStatus
* The processing status of the labeling job.
* @return Returns a reference to this object so that method calls can be chained together.
* @see LabelingJobStatus
*/
public DescribeLabelingJobResult withLabelingJobStatus(String labelingJobStatus) {
setLabelingJobStatus(labelingJobStatus);
return this;
}
/**
*
* The processing status of the labeling job.
*
*
* @param labelingJobStatus
* The processing status of the labeling job.
* @return Returns a reference to this object so that method calls can be chained together.
* @see LabelingJobStatus
*/
public DescribeLabelingJobResult withLabelingJobStatus(LabelingJobStatus labelingJobStatus) {
this.labelingJobStatus = labelingJobStatus.toString();
return this;
}
/**
*
* 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.
*
*
* @param labelCounters
* 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.
*/
public void setLabelCounters(LabelCounters labelCounters) {
this.labelCounters = labelCounters;
}
/**
*
* 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.
*
*
* @return 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.
*/
public LabelCounters getLabelCounters() {
return this.labelCounters;
}
/**
*
* 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.
*
*
* @param labelCounters
* 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.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeLabelingJobResult withLabelCounters(LabelCounters labelCounters) {
setLabelCounters(labelCounters);
return this;
}
/**
*
* If the job failed, the reason that it failed.
*
*
* @param failureReason
* If the job failed, the reason that it failed.
*/
public void setFailureReason(String failureReason) {
this.failureReason = failureReason;
}
/**
*
* If the job failed, the reason that it failed.
*
*
* @return If the job failed, the reason that it failed.
*/
public String getFailureReason() {
return this.failureReason;
}
/**
*
* If the job failed, the reason that it failed.
*
*
* @param failureReason
* If the job failed, the reason that it failed.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeLabelingJobResult withFailureReason(String failureReason) {
setFailureReason(failureReason);
return this;
}
/**
*
* The date and time that the labeling job was created.
*
*
* @param creationTime
* The date and time that the labeling job was created.
*/
public void setCreationTime(java.util.Date creationTime) {
this.creationTime = creationTime;
}
/**
*
* The date and time that the labeling job was created.
*
*
* @return The date and time that the labeling job was created.
*/
public java.util.Date getCreationTime() {
return this.creationTime;
}
/**
*
* The date and time that the labeling job was created.
*
*
* @param creationTime
* The date and time that the labeling job was created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeLabelingJobResult withCreationTime(java.util.Date creationTime) {
setCreationTime(creationTime);
return this;
}
/**
*
* The date and time that the labeling job was last updated.
*
*
* @param lastModifiedTime
* The date and time that the labeling job was last updated.
*/
public void setLastModifiedTime(java.util.Date lastModifiedTime) {
this.lastModifiedTime = lastModifiedTime;
}
/**
*
* The date and time that the labeling job was last updated.
*
*
* @return The date and time that the labeling job was last updated.
*/
public java.util.Date getLastModifiedTime() {
return this.lastModifiedTime;
}
/**
*
* The date and time that the labeling job was last updated.
*
*
* @param lastModifiedTime
* The date and time that the labeling job was last updated.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeLabelingJobResult withLastModifiedTime(java.util.Date lastModifiedTime) {
setLastModifiedTime(lastModifiedTime);
return this;
}
/**
*
* A unique identifier for work done as part of a labeling job.
*
*
* @param jobReferenceCode
* A unique identifier for work done as part of a labeling job.
*/
public void setJobReferenceCode(String jobReferenceCode) {
this.jobReferenceCode = jobReferenceCode;
}
/**
*
* A unique identifier for work done as part of a labeling job.
*
*
* @return A unique identifier for work done as part of a labeling job.
*/
public String getJobReferenceCode() {
return this.jobReferenceCode;
}
/**
*
* A unique identifier for work done as part of a labeling job.
*
*
* @param jobReferenceCode
* A unique identifier for work done as part of a labeling job.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeLabelingJobResult withJobReferenceCode(String jobReferenceCode) {
setJobReferenceCode(jobReferenceCode);
return this;
}
/**
*
* The name assigned to the labeling job when it was created.
*
*
* @param labelingJobName
* The name assigned to the labeling job when it was created.
*/
public void setLabelingJobName(String labelingJobName) {
this.labelingJobName = labelingJobName;
}
/**
*
* The name assigned to the labeling job when it was created.
*
*
* @return The name assigned to the labeling job when it was created.
*/
public String getLabelingJobName() {
return this.labelingJobName;
}
/**
*
* The name assigned to the labeling job when it was created.
*
*
* @param labelingJobName
* The name assigned to the labeling job when it was created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeLabelingJobResult withLabelingJobName(String labelingJobName) {
setLabelingJobName(labelingJobName);
return this;
}
/**
*
* The Amazon Resource Name (ARN) of the labeling job.
*
*
* @param labelingJobArn
* The Amazon Resource Name (ARN) of the labeling job.
*/
public void setLabelingJobArn(String labelingJobArn) {
this.labelingJobArn = labelingJobArn;
}
/**
*
* The Amazon Resource Name (ARN) of the labeling job.
*
*
* @return The Amazon Resource Name (ARN) of the labeling job.
*/
public String getLabelingJobArn() {
return this.labelingJobArn;
}
/**
*
* The Amazon Resource Name (ARN) of the labeling job.
*
*
* @param labelingJobArn
* The Amazon Resource Name (ARN) of the labeling job.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeLabelingJobResult withLabelingJobArn(String labelingJobArn) {
setLabelingJobArn(labelingJobArn);
return this;
}
/**
*
* The attribute used as the label in the output manifest file.
*
*
* @param labelAttributeName
* The attribute used as the label in the output manifest file.
*/
public void setLabelAttributeName(String labelAttributeName) {
this.labelAttributeName = labelAttributeName;
}
/**
*
* The attribute used as the label in the output manifest file.
*
*
* @return The attribute used as the label in the output manifest file.
*/
public String getLabelAttributeName() {
return this.labelAttributeName;
}
/**
*
* The attribute used as the label in the output manifest file.
*
*
* @param labelAttributeName
* The attribute used as the label in the output manifest file.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeLabelingJobResult withLabelAttributeName(String labelAttributeName) {
setLabelAttributeName(labelAttributeName);
return this;
}
/**
*
* 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.
*
*
* @param inputConfig
* 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.
*/
public void setInputConfig(LabelingJobInputConfig inputConfig) {
this.inputConfig = inputConfig;
}
/**
*
* 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.
*
*
* @return 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.
*/
public LabelingJobInputConfig getInputConfig() {
return this.inputConfig;
}
/**
*
* 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.
*
*
* @param inputConfig
* 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.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeLabelingJobResult withInputConfig(LabelingJobInputConfig inputConfig) {
setInputConfig(inputConfig);
return this;
}
/**
*
* 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.
*
*
* @param outputConfig
* 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.
*/
public void setOutputConfig(LabelingJobOutputConfig outputConfig) {
this.outputConfig = outputConfig;
}
/**
*
* 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.
*
*
* @return 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.
*/
public LabelingJobOutputConfig getOutputConfig() {
return this.outputConfig;
}
/**
*
* 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.
*
*
* @param outputConfig
* 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.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeLabelingJobResult withOutputConfig(LabelingJobOutputConfig outputConfig) {
setOutputConfig(outputConfig);
return this;
}
/**
*
* The Amazon Resource Name (ARN) that Amazon SageMaker assumes to perform tasks on your behalf during data
* labeling.
*
*
* @param roleArn
* The Amazon Resource Name (ARN) that Amazon SageMaker assumes to perform tasks on your behalf during data
* labeling.
*/
public void setRoleArn(String roleArn) {
this.roleArn = roleArn;
}
/**
*
* The Amazon Resource Name (ARN) that Amazon SageMaker assumes to perform tasks on your behalf during data
* labeling.
*
*
* @return The Amazon Resource Name (ARN) that Amazon SageMaker assumes to perform tasks on your behalf during data
* labeling.
*/
public String getRoleArn() {
return this.roleArn;
}
/**
*
* The Amazon Resource Name (ARN) that Amazon SageMaker assumes to perform tasks on your behalf during data
* labeling.
*
*
* @param roleArn
* The Amazon Resource Name (ARN) that Amazon SageMaker assumes to perform tasks on your behalf during data
* labeling.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeLabelingJobResult withRoleArn(String roleArn) {
setRoleArn(roleArn);
return this;
}
/**
*
* 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"
*
*
* }
*
*
* ]
*
*
* }
*
*
* @param labelCategoryConfigS3Uri
* 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"
*
*
* }
*
*
* ]
*
*
* }
*/
public void setLabelCategoryConfigS3Uri(String labelCategoryConfigS3Uri) {
this.labelCategoryConfigS3Uri = labelCategoryConfigS3Uri;
}
/**
*
* 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"
*
*
* }
*
*
* ]
*
*
* }
*
*
* @return 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"
*
*
* }
*
*
* ]
*
*
* }
*/
public String getLabelCategoryConfigS3Uri() {
return this.labelCategoryConfigS3Uri;
}
/**
*
* 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"
*
*
* }
*
*
* ]
*
*
* }
*
*
* @param labelCategoryConfigS3Uri
* 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"
*
*
* }
*
*
* ]
*
*
* }
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeLabelingJobResult withLabelCategoryConfigS3Uri(String labelCategoryConfigS3Uri) {
setLabelCategoryConfigS3Uri(labelCategoryConfigS3Uri);
return this;
}
/**
*
* A set of conditions for stopping a labeling job. If any of the conditions are met, the job is automatically
* stopped.
*
*
* @param stoppingConditions
* A set of conditions for stopping a labeling job. If any of the conditions are met, the job is
* automatically stopped.
*/
public void setStoppingConditions(LabelingJobStoppingConditions stoppingConditions) {
this.stoppingConditions = stoppingConditions;
}
/**
*
* A set of conditions for stopping a labeling job. If any of the conditions are met, the job is automatically
* stopped.
*
*
* @return A set of conditions for stopping a labeling job. If any of the conditions are met, the job is
* automatically stopped.
*/
public LabelingJobStoppingConditions getStoppingConditions() {
return this.stoppingConditions;
}
/**
*
* A set of conditions for stopping a labeling job. If any of the conditions are met, the job is automatically
* stopped.
*
*
* @param stoppingConditions
* A set of conditions for stopping a labeling job. If any of the conditions are met, the job is
* automatically stopped.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeLabelingJobResult withStoppingConditions(LabelingJobStoppingConditions stoppingConditions) {
setStoppingConditions(stoppingConditions);
return this;
}
/**
*
* Configuration information for automated data labeling.
*
*
* @param labelingJobAlgorithmsConfig
* Configuration information for automated data labeling.
*/
public void setLabelingJobAlgorithmsConfig(LabelingJobAlgorithmsConfig labelingJobAlgorithmsConfig) {
this.labelingJobAlgorithmsConfig = labelingJobAlgorithmsConfig;
}
/**
*
* Configuration information for automated data labeling.
*
*
* @return Configuration information for automated data labeling.
*/
public LabelingJobAlgorithmsConfig getLabelingJobAlgorithmsConfig() {
return this.labelingJobAlgorithmsConfig;
}
/**
*
* Configuration information for automated data labeling.
*
*
* @param labelingJobAlgorithmsConfig
* Configuration information for automated data labeling.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeLabelingJobResult withLabelingJobAlgorithmsConfig(LabelingJobAlgorithmsConfig labelingJobAlgorithmsConfig) {
setLabelingJobAlgorithmsConfig(labelingJobAlgorithmsConfig);
return this;
}
/**
*
* Configuration information required for human workers to complete a labeling task.
*
*
* @param humanTaskConfig
* Configuration information required for human workers to complete a labeling task.
*/
public void setHumanTaskConfig(HumanTaskConfig humanTaskConfig) {
this.humanTaskConfig = humanTaskConfig;
}
/**
*
* Configuration information required for human workers to complete a labeling task.
*
*
* @return Configuration information required for human workers to complete a labeling task.
*/
public HumanTaskConfig getHumanTaskConfig() {
return this.humanTaskConfig;
}
/**
*
* Configuration information required for human workers to complete a labeling task.
*
*
* @param humanTaskConfig
* Configuration information required for human workers to complete a labeling task.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeLabelingJobResult withHumanTaskConfig(HumanTaskConfig humanTaskConfig) {
setHumanTaskConfig(humanTaskConfig);
return this;
}
/**
*
* An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by
* purpose, owner, or environment. For more information, see Tagging AWS Resources.
*
*
* @return An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for
* example, by purpose, owner, or environment. For more information, see Tagging AWS Resources.
*/
public java.util.List getTags() {
return tags;
}
/**
*
* An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by
* purpose, owner, or environment. For more information, see Tagging AWS Resources.
*
*
* @param tags
* An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for
* example, by purpose, owner, or environment. For more information, see Tagging AWS Resources.
*/
public void setTags(java.util.Collection tags) {
if (tags == null) {
this.tags = null;
return;
}
this.tags = new java.util.ArrayList(tags);
}
/**
*
* An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by
* purpose, owner, or environment. For more information, see Tagging AWS Resources.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param tags
* An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for
* example, by purpose, owner, or environment. For more information, see Tagging AWS Resources.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeLabelingJobResult withTags(Tag... tags) {
if (this.tags == null) {
setTags(new java.util.ArrayList(tags.length));
}
for (Tag ele : tags) {
this.tags.add(ele);
}
return this;
}
/**
*
* An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by
* purpose, owner, or environment. For more information, see Tagging AWS Resources.
*
*
* @param tags
* An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for
* example, by purpose, owner, or environment. For more information, see Tagging AWS Resources.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeLabelingJobResult withTags(java.util.Collection tags) {
setTags(tags);
return this;
}
/**
*
* The location of the output produced by the labeling job.
*
*
* @param labelingJobOutput
* The location of the output produced by the labeling job.
*/
public void setLabelingJobOutput(LabelingJobOutput labelingJobOutput) {
this.labelingJobOutput = labelingJobOutput;
}
/**
*
* The location of the output produced by the labeling job.
*
*
* @return The location of the output produced by the labeling job.
*/
public LabelingJobOutput getLabelingJobOutput() {
return this.labelingJobOutput;
}
/**
*
* The location of the output produced by the labeling job.
*
*
* @param labelingJobOutput
* The location of the output produced by the labeling job.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeLabelingJobResult withLabelingJobOutput(LabelingJobOutput labelingJobOutput) {
setLabelingJobOutput(labelingJobOutput);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getLabelingJobStatus() != null)
sb.append("LabelingJobStatus: ").append(getLabelingJobStatus()).append(",");
if (getLabelCounters() != null)
sb.append("LabelCounters: ").append(getLabelCounters()).append(",");
if (getFailureReason() != null)
sb.append("FailureReason: ").append(getFailureReason()).append(",");
if (getCreationTime() != null)
sb.append("CreationTime: ").append(getCreationTime()).append(",");
if (getLastModifiedTime() != null)
sb.append("LastModifiedTime: ").append(getLastModifiedTime()).append(",");
if (getJobReferenceCode() != null)
sb.append("JobReferenceCode: ").append(getJobReferenceCode()).append(",");
if (getLabelingJobName() != null)
sb.append("LabelingJobName: ").append(getLabelingJobName()).append(",");
if (getLabelingJobArn() != null)
sb.append("LabelingJobArn: ").append(getLabelingJobArn()).append(",");
if (getLabelAttributeName() != null)
sb.append("LabelAttributeName: ").append(getLabelAttributeName()).append(",");
if (getInputConfig() != null)
sb.append("InputConfig: ").append(getInputConfig()).append(",");
if (getOutputConfig() != null)
sb.append("OutputConfig: ").append(getOutputConfig()).append(",");
if (getRoleArn() != null)
sb.append("RoleArn: ").append(getRoleArn()).append(",");
if (getLabelCategoryConfigS3Uri() != null)
sb.append("LabelCategoryConfigS3Uri: ").append(getLabelCategoryConfigS3Uri()).append(",");
if (getStoppingConditions() != null)
sb.append("StoppingConditions: ").append(getStoppingConditions()).append(",");
if (getLabelingJobAlgorithmsConfig() != null)
sb.append("LabelingJobAlgorithmsConfig: ").append(getLabelingJobAlgorithmsConfig()).append(",");
if (getHumanTaskConfig() != null)
sb.append("HumanTaskConfig: ").append(getHumanTaskConfig()).append(",");
if (getTags() != null)
sb.append("Tags: ").append(getTags()).append(",");
if (getLabelingJobOutput() != null)
sb.append("LabelingJobOutput: ").append(getLabelingJobOutput());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof DescribeLabelingJobResult == false)
return false;
DescribeLabelingJobResult other = (DescribeLabelingJobResult) obj;
if (other.getLabelingJobStatus() == null ^ this.getLabelingJobStatus() == null)
return false;
if (other.getLabelingJobStatus() != null && other.getLabelingJobStatus().equals(this.getLabelingJobStatus()) == false)
return false;
if (other.getLabelCounters() == null ^ this.getLabelCounters() == null)
return false;
if (other.getLabelCounters() != null && other.getLabelCounters().equals(this.getLabelCounters()) == false)
return false;
if (other.getFailureReason() == null ^ this.getFailureReason() == null)
return false;
if (other.getFailureReason() != null && other.getFailureReason().equals(this.getFailureReason()) == false)
return false;
if (other.getCreationTime() == null ^ this.getCreationTime() == null)
return false;
if (other.getCreationTime() != null && other.getCreationTime().equals(this.getCreationTime()) == false)
return false;
if (other.getLastModifiedTime() == null ^ this.getLastModifiedTime() == null)
return false;
if (other.getLastModifiedTime() != null && other.getLastModifiedTime().equals(this.getLastModifiedTime()) == false)
return false;
if (other.getJobReferenceCode() == null ^ this.getJobReferenceCode() == null)
return false;
if (other.getJobReferenceCode() != null && other.getJobReferenceCode().equals(this.getJobReferenceCode()) == false)
return false;
if (other.getLabelingJobName() == null ^ this.getLabelingJobName() == null)
return false;
if (other.getLabelingJobName() != null && other.getLabelingJobName().equals(this.getLabelingJobName()) == false)
return false;
if (other.getLabelingJobArn() == null ^ this.getLabelingJobArn() == null)
return false;
if (other.getLabelingJobArn() != null && other.getLabelingJobArn().equals(this.getLabelingJobArn()) == false)
return false;
if (other.getLabelAttributeName() == null ^ this.getLabelAttributeName() == null)
return false;
if (other.getLabelAttributeName() != null && other.getLabelAttributeName().equals(this.getLabelAttributeName()) == false)
return false;
if (other.getInputConfig() == null ^ this.getInputConfig() == null)
return false;
if (other.getInputConfig() != null && other.getInputConfig().equals(this.getInputConfig()) == false)
return false;
if (other.getOutputConfig() == null ^ this.getOutputConfig() == null)
return false;
if (other.getOutputConfig() != null && other.getOutputConfig().equals(this.getOutputConfig()) == false)
return false;
if (other.getRoleArn() == null ^ this.getRoleArn() == null)
return false;
if (other.getRoleArn() != null && other.getRoleArn().equals(this.getRoleArn()) == false)
return false;
if (other.getLabelCategoryConfigS3Uri() == null ^ this.getLabelCategoryConfigS3Uri() == null)
return false;
if (other.getLabelCategoryConfigS3Uri() != null && other.getLabelCategoryConfigS3Uri().equals(this.getLabelCategoryConfigS3Uri()) == false)
return false;
if (other.getStoppingConditions() == null ^ this.getStoppingConditions() == null)
return false;
if (other.getStoppingConditions() != null && other.getStoppingConditions().equals(this.getStoppingConditions()) == false)
return false;
if (other.getLabelingJobAlgorithmsConfig() == null ^ this.getLabelingJobAlgorithmsConfig() == null)
return false;
if (other.getLabelingJobAlgorithmsConfig() != null && other.getLabelingJobAlgorithmsConfig().equals(this.getLabelingJobAlgorithmsConfig()) == false)
return false;
if (other.getHumanTaskConfig() == null ^ this.getHumanTaskConfig() == null)
return false;
if (other.getHumanTaskConfig() != null && other.getHumanTaskConfig().equals(this.getHumanTaskConfig()) == false)
return false;
if (other.getTags() == null ^ this.getTags() == null)
return false;
if (other.getTags() != null && other.getTags().equals(this.getTags()) == false)
return false;
if (other.getLabelingJobOutput() == null ^ this.getLabelingJobOutput() == null)
return false;
if (other.getLabelingJobOutput() != null && other.getLabelingJobOutput().equals(this.getLabelingJobOutput()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getLabelingJobStatus() == null) ? 0 : getLabelingJobStatus().hashCode());
hashCode = prime * hashCode + ((getLabelCounters() == null) ? 0 : getLabelCounters().hashCode());
hashCode = prime * hashCode + ((getFailureReason() == null) ? 0 : getFailureReason().hashCode());
hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode());
hashCode = prime * hashCode + ((getLastModifiedTime() == null) ? 0 : getLastModifiedTime().hashCode());
hashCode = prime * hashCode + ((getJobReferenceCode() == null) ? 0 : getJobReferenceCode().hashCode());
hashCode = prime * hashCode + ((getLabelingJobName() == null) ? 0 : getLabelingJobName().hashCode());
hashCode = prime * hashCode + ((getLabelingJobArn() == null) ? 0 : getLabelingJobArn().hashCode());
hashCode = prime * hashCode + ((getLabelAttributeName() == null) ? 0 : getLabelAttributeName().hashCode());
hashCode = prime * hashCode + ((getInputConfig() == null) ? 0 : getInputConfig().hashCode());
hashCode = prime * hashCode + ((getOutputConfig() == null) ? 0 : getOutputConfig().hashCode());
hashCode = prime * hashCode + ((getRoleArn() == null) ? 0 : getRoleArn().hashCode());
hashCode = prime * hashCode + ((getLabelCategoryConfigS3Uri() == null) ? 0 : getLabelCategoryConfigS3Uri().hashCode());
hashCode = prime * hashCode + ((getStoppingConditions() == null) ? 0 : getStoppingConditions().hashCode());
hashCode = prime * hashCode + ((getLabelingJobAlgorithmsConfig() == null) ? 0 : getLabelingJobAlgorithmsConfig().hashCode());
hashCode = prime * hashCode + ((getHumanTaskConfig() == null) ? 0 : getHumanTaskConfig().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
hashCode = prime * hashCode + ((getLabelingJobOutput() == null) ? 0 : getLabelingJobOutput().hashCode());
return hashCode;
}
@Override
public DescribeLabelingJobResult clone() {
try {
return (DescribeLabelingJobResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}