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

* The unique identifier for a Dataset. *

*/ private String datasetId; /** *

* The ARN identifier of the Dataset. *

*/ private String datasetArn; /** *

* Display title for a Dataset. *

*/ private String datasetTitle; /** *

* The format in which Dataset data is structured. *

* */ private String kind; /** *

* A description of the Dataset. *

*/ private String datasetDescription; /** *

* The timestamp at which the Dataset was created in FinSpace. The value is determined as epoch time in * milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000. *

*/ private Long createTime; /** *

* The last time that the Dataset was modified. The value is determined as epoch time in milliseconds. For example, * the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000. *

*/ private Long lastModifiedTime; /** *

* Definition for a schema on a tabular Dataset. *

*/ private SchemaUnion schemaDefinition; /** *

* The unique resource identifier for a Dataset. *

*/ private String alias; /** *

* Status of the Dataset creation. *

* */ private String status; /** *

* The unique identifier for a Dataset. *

* * @param datasetId * The unique identifier for a Dataset. */ public void setDatasetId(String datasetId) { this.datasetId = datasetId; } /** *

* The unique identifier for a Dataset. *

* * @return The unique identifier for a Dataset. */ public String getDatasetId() { return this.datasetId; } /** *

* The unique identifier for a Dataset. *

* * @param datasetId * The unique identifier for a Dataset. * @return Returns a reference to this object so that method calls can be chained together. */ public GetDatasetResult withDatasetId(String datasetId) { setDatasetId(datasetId); return this; } /** *

* The ARN identifier of the Dataset. *

* * @param datasetArn * The ARN identifier of the Dataset. */ public void setDatasetArn(String datasetArn) { this.datasetArn = datasetArn; } /** *

* The ARN identifier of the Dataset. *

* * @return The ARN identifier of the Dataset. */ public String getDatasetArn() { return this.datasetArn; } /** *

* The ARN identifier of the Dataset. *

* * @param datasetArn * The ARN identifier of the Dataset. * @return Returns a reference to this object so that method calls can be chained together. */ public GetDatasetResult withDatasetArn(String datasetArn) { setDatasetArn(datasetArn); return this; } /** *

* Display title for a Dataset. *

* * @param datasetTitle * Display title for a Dataset. */ public void setDatasetTitle(String datasetTitle) { this.datasetTitle = datasetTitle; } /** *

* Display title for a Dataset. *

* * @return Display title for a Dataset. */ public String getDatasetTitle() { return this.datasetTitle; } /** *

* Display title for a Dataset. *

* * @param datasetTitle * Display title for a Dataset. * @return Returns a reference to this object so that method calls can be chained together. */ public GetDatasetResult withDatasetTitle(String datasetTitle) { setDatasetTitle(datasetTitle); return this; } /** *

* The format in which Dataset data is structured. *

* * * @param kind * The format in which Dataset data is structured.

*