/* * 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; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* The structure for a Dataset. *

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

* An 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; /** *

* Description for a Dataset. *

*/ private String datasetDescription; /** *

* Contact information for a Dataset owner. *

*/ private DatasetOwnerInfo ownerInfo; /** *

* 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; /** *

* An identifier for a Dataset. *

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

* An identifier for a Dataset. *

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

* An identifier for a Dataset. *

* * @param datasetId * An identifier for a Dataset. * @return Returns a reference to this object so that method calls can be chained together. */ public Dataset 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 Dataset 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 Dataset 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.

*