/* * 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.sagemaker.model; import java.io.Serializable; import javax.annotation.Generated; /** * * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class DescribeModelCardExportJobResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable { /** *

* The name of the model card export job to describe. *

*/ private String modelCardExportJobName; /** *

* The Amazon Resource Name (ARN) of the model card export job. *

*/ private String modelCardExportJobArn; /** *

* The completion status of the model card export job. *

* */ private String status; /** *

* The name of the model card that the model export job exports. *

*/ private String modelCardName; /** *

* The version of the model card that the model export job exports. *

*/ private Integer modelCardVersion; /** *

* The export output details for the model card. *

*/ private ModelCardExportOutputConfig outputConfig; /** *

* The date and time that the model export job was created. *

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

* The date and time that the model export job was last modified. *

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

* The failure reason if the model export job fails. *

*/ private String failureReason; /** *

* The exported model card artifacts. *

*/ private ModelCardExportArtifacts exportArtifacts; /** *

* The name of the model card export job to describe. *

* * @param modelCardExportJobName * The name of the model card export job to describe. */ public void setModelCardExportJobName(String modelCardExportJobName) { this.modelCardExportJobName = modelCardExportJobName; } /** *

* The name of the model card export job to describe. *

* * @return The name of the model card export job to describe. */ public String getModelCardExportJobName() { return this.modelCardExportJobName; } /** *

* The name of the model card export job to describe. *

* * @param modelCardExportJobName * The name of the model card export job to describe. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeModelCardExportJobResult withModelCardExportJobName(String modelCardExportJobName) { setModelCardExportJobName(modelCardExportJobName); return this; } /** *

* The Amazon Resource Name (ARN) of the model card export job. *

* * @param modelCardExportJobArn * The Amazon Resource Name (ARN) of the model card export job. */ public void setModelCardExportJobArn(String modelCardExportJobArn) { this.modelCardExportJobArn = modelCardExportJobArn; } /** *

* The Amazon Resource Name (ARN) of the model card export job. *

* * @return The Amazon Resource Name (ARN) of the model card export job. */ public String getModelCardExportJobArn() { return this.modelCardExportJobArn; } /** *

* The Amazon Resource Name (ARN) of the model card export job. *

* * @param modelCardExportJobArn * The Amazon Resource Name (ARN) of the model card export job. * @return Returns a reference to this object so that method calls can be chained together. */ public DescribeModelCardExportJobResult withModelCardExportJobArn(String modelCardExportJobArn) { setModelCardExportJobArn(modelCardExportJobArn); return this; } /** *

* The completion status of the model card export job. *

* * * @param status * The completion status of the model card export job.

*