* The name of the job. The name must be unique within an Amazon Web Services Region in the Amazon Web Services * account. *
*/ private String jobName; /** ** The job description that you provided when you initiated the job. *
*/ private String jobDescription; /** ** The job type that you provided when you initiated the job. *
*/ private String jobType; /** ** The Amazon Resource Name (ARN) of the job. *
*/ private String jobArn; /** ** The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access Management (IAM) role you provided * when you initiated the job. *
*/ private String roleArn; /** ** The status of the job. *
*/ private String status; /** ** A timestamp that shows when the job was created. *
*/ private java.util.Date creationTime; /** ** A timestamp that shows when the job completed. *
*/ private java.util.Date completionTime; /** ** A timestamp that shows when the job was last modified. *
*/ private java.util.Date lastModifiedTime; /** ** If the job fails, provides information why the job failed. *
*/ private String failureReason; /** ** Returns information about the versioned model package Amazon Resource Name (ARN), the traffic pattern, and * endpoint configurations you provided when you initiated the job. *
*/ private RecommendationJobInputConfig inputConfig; /** ** The stopping conditions that you provided when you initiated the job. *
*/ private RecommendationJobStoppingConditions stoppingConditions; /** ** The recommendations made by Inference Recommender. *
*/ private java.util.List* The performance results from running an Inference Recommender job on an existing endpoint. *
*/ private java.util.List* The name of the job. The name must be unique within an Amazon Web Services Region in the Amazon Web Services * account. *
* * @param jobName * The name of the job. The name must be unique within an Amazon Web Services Region in the Amazon Web * Services account. */ public void setJobName(String jobName) { this.jobName = jobName; } /** ** The name of the job. The name must be unique within an Amazon Web Services Region in the Amazon Web Services * account. *
* * @return The name of the job. The name must be unique within an Amazon Web Services Region in the Amazon Web * Services account. */ public String getJobName() { return this.jobName; } /** ** The name of the job. The name must be unique within an Amazon Web Services Region in the Amazon Web Services * account. *
* * @param jobName * The name of the job. The name must be unique within an Amazon Web Services Region in the Amazon Web * Services account. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeInferenceRecommendationsJobResult withJobName(String jobName) { setJobName(jobName); return this; } /** ** The job description that you provided when you initiated the job. *
* * @param jobDescription * The job description that you provided when you initiated the job. */ public void setJobDescription(String jobDescription) { this.jobDescription = jobDescription; } /** ** The job description that you provided when you initiated the job. *
* * @return The job description that you provided when you initiated the job. */ public String getJobDescription() { return this.jobDescription; } /** ** The job description that you provided when you initiated the job. *
* * @param jobDescription * The job description that you provided when you initiated the job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeInferenceRecommendationsJobResult withJobDescription(String jobDescription) { setJobDescription(jobDescription); return this; } /** ** The job type that you provided when you initiated the job. *
* * @param jobType * The job type that you provided when you initiated the job. * @see RecommendationJobType */ public void setJobType(String jobType) { this.jobType = jobType; } /** ** The job type that you provided when you initiated the job. *
* * @return The job type that you provided when you initiated the job. * @see RecommendationJobType */ public String getJobType() { return this.jobType; } /** ** The job type that you provided when you initiated the job. *
* * @param jobType * The job type that you provided when you initiated the job. * @return Returns a reference to this object so that method calls can be chained together. * @see RecommendationJobType */ public DescribeInferenceRecommendationsJobResult withJobType(String jobType) { setJobType(jobType); return this; } /** ** The job type that you provided when you initiated the job. *
* * @param jobType * The job type that you provided when you initiated the job. * @return Returns a reference to this object so that method calls can be chained together. * @see RecommendationJobType */ public DescribeInferenceRecommendationsJobResult withJobType(RecommendationJobType jobType) { this.jobType = jobType.toString(); return this; } /** ** The Amazon Resource Name (ARN) of the job. *
* * @param jobArn * The Amazon Resource Name (ARN) of the job. */ public void setJobArn(String jobArn) { this.jobArn = jobArn; } /** ** The Amazon Resource Name (ARN) of the job. *
* * @return The Amazon Resource Name (ARN) of the job. */ public String getJobArn() { return this.jobArn; } /** ** The Amazon Resource Name (ARN) of the job. *
* * @param jobArn * The Amazon Resource Name (ARN) of the job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeInferenceRecommendationsJobResult withJobArn(String jobArn) { setJobArn(jobArn); return this; } /** ** The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access Management (IAM) role you provided * when you initiated the job. *
* * @param roleArn * The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access Management (IAM) role you * provided when you initiated the job. */ public void setRoleArn(String roleArn) { this.roleArn = roleArn; } /** ** The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access Management (IAM) role you provided * when you initiated the job. *
* * @return The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access Management (IAM) role you * provided when you initiated the job. */ public String getRoleArn() { return this.roleArn; } /** ** The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access Management (IAM) role you provided * when you initiated the job. *
* * @param roleArn * The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access Management (IAM) role you * provided when you initiated the job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeInferenceRecommendationsJobResult withRoleArn(String roleArn) { setRoleArn(roleArn); return this; } /** ** The status of the job. *
* * @param status * The status of the job. * @see RecommendationJobStatus */ public void setStatus(String status) { this.status = status; } /** ** The status of the job. *
* * @return The status of the job. * @see RecommendationJobStatus */ public String getStatus() { return this.status; } /** ** The status of the job. *
* * @param status * The status of the job. * @return Returns a reference to this object so that method calls can be chained together. * @see RecommendationJobStatus */ public DescribeInferenceRecommendationsJobResult withStatus(String status) { setStatus(status); return this; } /** ** The status of the job. *
* * @param status * The status of the job. * @return Returns a reference to this object so that method calls can be chained together. * @see RecommendationJobStatus */ public DescribeInferenceRecommendationsJobResult withStatus(RecommendationJobStatus status) { this.status = status.toString(); return this; } /** ** A timestamp that shows when the job was created. *
* * @param creationTime * A timestamp that shows when the job was created. */ public void setCreationTime(java.util.Date creationTime) { this.creationTime = creationTime; } /** ** A timestamp that shows when the job was created. *
* * @return A timestamp that shows when the job was created. */ public java.util.Date getCreationTime() { return this.creationTime; } /** ** A timestamp that shows when the job was created. *
* * @param creationTime * A timestamp that shows when the job was created. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeInferenceRecommendationsJobResult withCreationTime(java.util.Date creationTime) { setCreationTime(creationTime); return this; } /** ** A timestamp that shows when the job completed. *
* * @param completionTime * A timestamp that shows when the job completed. */ public void setCompletionTime(java.util.Date completionTime) { this.completionTime = completionTime; } /** ** A timestamp that shows when the job completed. *
* * @return A timestamp that shows when the job completed. */ public java.util.Date getCompletionTime() { return this.completionTime; } /** ** A timestamp that shows when the job completed. *
* * @param completionTime * A timestamp that shows when the job completed. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeInferenceRecommendationsJobResult withCompletionTime(java.util.Date completionTime) { setCompletionTime(completionTime); return this; } /** ** A timestamp that shows when the job was last modified. *
* * @param lastModifiedTime * A timestamp that shows when the job was last modified. */ public void setLastModifiedTime(java.util.Date lastModifiedTime) { this.lastModifiedTime = lastModifiedTime; } /** ** A timestamp that shows when the job was last modified. *
* * @return A timestamp that shows when the job was last modified. */ public java.util.Date getLastModifiedTime() { return this.lastModifiedTime; } /** ** A timestamp that shows when the job was last modified. *
* * @param lastModifiedTime * A timestamp that shows when the job was last modified. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeInferenceRecommendationsJobResult withLastModifiedTime(java.util.Date lastModifiedTime) { setLastModifiedTime(lastModifiedTime); return this; } /** ** If the job fails, provides information why the job failed. *
* * @param failureReason * If the job fails, provides information why the job failed. */ public void setFailureReason(String failureReason) { this.failureReason = failureReason; } /** ** If the job fails, provides information why the job failed. *
* * @return If the job fails, provides information why the job failed. */ public String getFailureReason() { return this.failureReason; } /** ** If the job fails, provides information why the job failed. *
* * @param failureReason * If the job fails, provides information why the job failed. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeInferenceRecommendationsJobResult withFailureReason(String failureReason) { setFailureReason(failureReason); return this; } /** ** Returns information about the versioned model package Amazon Resource Name (ARN), the traffic pattern, and * endpoint configurations you provided when you initiated the job. *
* * @param inputConfig * Returns information about the versioned model package Amazon Resource Name (ARN), the traffic pattern, and * endpoint configurations you provided when you initiated the job. */ public void setInputConfig(RecommendationJobInputConfig inputConfig) { this.inputConfig = inputConfig; } /** ** Returns information about the versioned model package Amazon Resource Name (ARN), the traffic pattern, and * endpoint configurations you provided when you initiated the job. *
* * @return Returns information about the versioned model package Amazon Resource Name (ARN), the traffic pattern, * and endpoint configurations you provided when you initiated the job. */ public RecommendationJobInputConfig getInputConfig() { return this.inputConfig; } /** ** Returns information about the versioned model package Amazon Resource Name (ARN), the traffic pattern, and * endpoint configurations you provided when you initiated the job. *
* * @param inputConfig * Returns information about the versioned model package Amazon Resource Name (ARN), the traffic pattern, and * endpoint configurations you provided when you initiated the job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeInferenceRecommendationsJobResult withInputConfig(RecommendationJobInputConfig inputConfig) { setInputConfig(inputConfig); return this; } /** ** The stopping conditions that you provided when you initiated the job. *
* * @param stoppingConditions * The stopping conditions that you provided when you initiated the job. */ public void setStoppingConditions(RecommendationJobStoppingConditions stoppingConditions) { this.stoppingConditions = stoppingConditions; } /** ** The stopping conditions that you provided when you initiated the job. *
* * @return The stopping conditions that you provided when you initiated the job. */ public RecommendationJobStoppingConditions getStoppingConditions() { return this.stoppingConditions; } /** ** The stopping conditions that you provided when you initiated the job. *
* * @param stoppingConditions * The stopping conditions that you provided when you initiated the job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeInferenceRecommendationsJobResult withStoppingConditions(RecommendationJobStoppingConditions stoppingConditions) { setStoppingConditions(stoppingConditions); return this; } /** ** The recommendations made by Inference Recommender. *
* * @return The recommendations made by Inference Recommender. */ public java.util.List* The recommendations made by Inference Recommender. *
* * @param inferenceRecommendations * The recommendations made by Inference Recommender. */ public void setInferenceRecommendations(java.util.Collection* The recommendations made by Inference Recommender. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setInferenceRecommendations(java.util.Collection)} or * {@link #withInferenceRecommendations(java.util.Collection)} if you want to override the existing values. *
* * @param inferenceRecommendations * The recommendations made by Inference Recommender. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeInferenceRecommendationsJobResult withInferenceRecommendations(InferenceRecommendation... inferenceRecommendations) { if (this.inferenceRecommendations == null) { setInferenceRecommendations(new java.util.ArrayList* The recommendations made by Inference Recommender. *
* * @param inferenceRecommendations * The recommendations made by Inference Recommender. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeInferenceRecommendationsJobResult withInferenceRecommendations(java.util.Collection* The performance results from running an Inference Recommender job on an existing endpoint. *
* * @return The performance results from running an Inference Recommender job on an existing endpoint. */ public java.util.List* The performance results from running an Inference Recommender job on an existing endpoint. *
* * @param endpointPerformances * The performance results from running an Inference Recommender job on an existing endpoint. */ public void setEndpointPerformances(java.util.Collection* The performance results from running an Inference Recommender job on an existing endpoint. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setEndpointPerformances(java.util.Collection)} or {@link #withEndpointPerformances(java.util.Collection)} * if you want to override the existing values. *
* * @param endpointPerformances * The performance results from running an Inference Recommender job on an existing endpoint. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeInferenceRecommendationsJobResult withEndpointPerformances(EndpointPerformance... endpointPerformances) { if (this.endpointPerformances == null) { setEndpointPerformances(new java.util.ArrayList* The performance results from running an Inference Recommender job on an existing endpoint. *
* * @param endpointPerformances * The performance results from running an Inference Recommender job on an existing endpoint. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeInferenceRecommendationsJobResult withEndpointPerformances(java.util.Collection