/* * Copyright 2018-2023 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.customerprofiles.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* Information about the Identity Resolution Job. *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class IdentityResolutionJob implements Serializable, Cloneable, StructuredPojo { /** *

* The unique name of the domain. *

*/ private String domainName; /** *

* The unique identifier of the Identity Resolution Job. *

*/ private String jobId; /** *

* The status of the Identity Resolution Job. *

* */ private String status; /** *

* The timestamp of when the job was started or will be started. *

*/ private java.util.Date jobStartTime; /** *

* The timestamp of when the job was completed. *

*/ private java.util.Date jobEndTime; /** *

* Statistics about an Identity Resolution Job. *

*/ private JobStats jobStats; /** *

* The S3 location where the Identity Resolution Job writes result files. *

*/ private ExportingLocation exportingLocation; /** *

* The error messages that are generated when the Identity Resolution Job runs. *

*/ private String message; /** *

* The unique name of the domain. *

* * @param domainName * The unique name of the domain. */ public void setDomainName(String domainName) { this.domainName = domainName; } /** *

* The unique name of the domain. *

* * @return The unique name of the domain. */ public String getDomainName() { return this.domainName; } /** *

* The unique name of the domain. *

* * @param domainName * The unique name of the domain. * @return Returns a reference to this object so that method calls can be chained together. */ public IdentityResolutionJob withDomainName(String domainName) { setDomainName(domainName); return this; } /** *

* The unique identifier of the Identity Resolution Job. *

* * @param jobId * The unique identifier of the Identity Resolution Job. */ public void setJobId(String jobId) { this.jobId = jobId; } /** *

* The unique identifier of the Identity Resolution Job. *

* * @return The unique identifier of the Identity Resolution Job. */ public String getJobId() { return this.jobId; } /** *

* The unique identifier of the Identity Resolution Job. *

* * @param jobId * The unique identifier of the Identity Resolution Job. * @return Returns a reference to this object so that method calls can be chained together. */ public IdentityResolutionJob withJobId(String jobId) { setJobId(jobId); return this; } /** *

* The status of the Identity Resolution Job. *

* * * @param status * The status of the Identity Resolution Job.

*