/* * 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.lookoutequipment.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class CreateDatasetRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* The name of the dataset being created. *
*/ private String datasetName; /** ** A JSON description of the data that is in each time series dataset, including names, column names, and data * types. *
*/ private DatasetSchema datasetSchema; /** ** Provides the identifier of the KMS key used to encrypt dataset data by Amazon Lookout for Equipment. *
*/ private String serverSideKmsKeyId; /** ** A unique identifier for the request. If you do not set the client request token, Amazon Lookout for Equipment * generates one. *
*/ private String clientToken; /** ** Any tags associated with the ingested data described in the dataset. *
*/ private java.util.List* The name of the dataset being created. *
* * @param datasetName * The name of the dataset being created. */ public void setDatasetName(String datasetName) { this.datasetName = datasetName; } /** ** The name of the dataset being created. *
* * @return The name of the dataset being created. */ public String getDatasetName() { return this.datasetName; } /** ** The name of the dataset being created. *
* * @param datasetName * The name of the dataset being created. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDatasetRequest withDatasetName(String datasetName) { setDatasetName(datasetName); return this; } /** ** A JSON description of the data that is in each time series dataset, including names, column names, and data * types. *
* * @param datasetSchema * A JSON description of the data that is in each time series dataset, including names, column names, and * data types. */ public void setDatasetSchema(DatasetSchema datasetSchema) { this.datasetSchema = datasetSchema; } /** ** A JSON description of the data that is in each time series dataset, including names, column names, and data * types. *
* * @return A JSON description of the data that is in each time series dataset, including names, column names, and * data types. */ public DatasetSchema getDatasetSchema() { return this.datasetSchema; } /** ** A JSON description of the data that is in each time series dataset, including names, column names, and data * types. *
* * @param datasetSchema * A JSON description of the data that is in each time series dataset, including names, column names, and * data types. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDatasetRequest withDatasetSchema(DatasetSchema datasetSchema) { setDatasetSchema(datasetSchema); return this; } /** ** Provides the identifier of the KMS key used to encrypt dataset data by Amazon Lookout for Equipment. *
* * @param serverSideKmsKeyId * Provides the identifier of the KMS key used to encrypt dataset data by Amazon Lookout for Equipment. */ public void setServerSideKmsKeyId(String serverSideKmsKeyId) { this.serverSideKmsKeyId = serverSideKmsKeyId; } /** ** Provides the identifier of the KMS key used to encrypt dataset data by Amazon Lookout for Equipment. *
* * @return Provides the identifier of the KMS key used to encrypt dataset data by Amazon Lookout for Equipment. */ public String getServerSideKmsKeyId() { return this.serverSideKmsKeyId; } /** ** Provides the identifier of the KMS key used to encrypt dataset data by Amazon Lookout for Equipment. *
* * @param serverSideKmsKeyId * Provides the identifier of the KMS key used to encrypt dataset data by Amazon Lookout for Equipment. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDatasetRequest withServerSideKmsKeyId(String serverSideKmsKeyId) { setServerSideKmsKeyId(serverSideKmsKeyId); return this; } /** ** A unique identifier for the request. If you do not set the client request token, Amazon Lookout for Equipment * generates one. *
* * @param clientToken * A unique identifier for the request. If you do not set the client request token, Amazon Lookout for * Equipment generates one. */ public void setClientToken(String clientToken) { this.clientToken = clientToken; } /** ** A unique identifier for the request. If you do not set the client request token, Amazon Lookout for Equipment * generates one. *
* * @return A unique identifier for the request. If you do not set the client request token, Amazon Lookout for * Equipment generates one. */ public String getClientToken() { return this.clientToken; } /** ** A unique identifier for the request. If you do not set the client request token, Amazon Lookout for Equipment * generates one. *
* * @param clientToken * A unique identifier for the request. If you do not set the client request token, Amazon Lookout for * Equipment generates one. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDatasetRequest withClientToken(String clientToken) { setClientToken(clientToken); return this; } /** ** Any tags associated with the ingested data described in the dataset. *
* * @return Any tags associated with the ingested data described in the dataset. */ public java.util.List* Any tags associated with the ingested data described in the dataset. *
* * @param tags * Any tags associated with the ingested data described in the dataset. */ public void setTags(java.util.Collection* Any tags associated with the ingested data described in the dataset. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *
* * @param tags * Any tags associated with the ingested data described in the dataset. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDatasetRequest withTags(Tag... tags) { if (this.tags == null) { setTags(new java.util.ArrayList* Any tags associated with the ingested data described in the dataset. *
* * @param tags * Any tags associated with the ingested data described in the dataset. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateDatasetRequest withTags(java.util.Collection