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

* 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 getTags() { return tags; } /** *

* 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 tags) { if (tags == null) { this.tags = null; return; } this.tags = new java.util.ArrayList(tags); } /** *

* 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(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

* 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 tags) { setTags(tags); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getDatasetName() != null) sb.append("DatasetName: ").append(getDatasetName()).append(","); if (getDatasetSchema() != null) sb.append("DatasetSchema: ").append(getDatasetSchema()).append(","); if (getServerSideKmsKeyId() != null) sb.append("ServerSideKmsKeyId: ").append(getServerSideKmsKeyId()).append(","); if (getClientToken() != null) sb.append("ClientToken: ").append(getClientToken()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateDatasetRequest == false) return false; CreateDatasetRequest other = (CreateDatasetRequest) obj; if (other.getDatasetName() == null ^ this.getDatasetName() == null) return false; if (other.getDatasetName() != null && other.getDatasetName().equals(this.getDatasetName()) == false) return false; if (other.getDatasetSchema() == null ^ this.getDatasetSchema() == null) return false; if (other.getDatasetSchema() != null && other.getDatasetSchema().equals(this.getDatasetSchema()) == false) return false; if (other.getServerSideKmsKeyId() == null ^ this.getServerSideKmsKeyId() == null) return false; if (other.getServerSideKmsKeyId() != null && other.getServerSideKmsKeyId().equals(this.getServerSideKmsKeyId()) == false) return false; if (other.getClientToken() == null ^ this.getClientToken() == null) return false; if (other.getClientToken() != null && other.getClientToken().equals(this.getClientToken()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDatasetName() == null) ? 0 : getDatasetName().hashCode()); hashCode = prime * hashCode + ((getDatasetSchema() == null) ? 0 : getDatasetSchema().hashCode()); hashCode = prime * hashCode + ((getServerSideKmsKeyId() == null) ? 0 : getServerSideKmsKeyId().hashCode()); hashCode = prime * hashCode + ((getClientToken() == null) ? 0 : getClientToken().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); return hashCode; } @Override public CreateDatasetRequest clone() { return (CreateDatasetRequest) super.clone(); } }