com.amazonaws.services.iotanalytics.model.CreateDatastoreRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-iotanalytics Show documentation
/*
* Copyright 2019-2024 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.iotanalytics.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 CreateDatastoreRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The name of the data store.
*
*/
private String datastoreName;
/**
*
* Where data in a data store is stored.. You can choose serviceManagedS3
storage,
* customerManagedS3
storage, or iotSiteWiseMultiLayerStorage
storage. The default is
* serviceManagedS3
. You can't change the choice of Amazon S3 storage after your data store is created.
*
*/
private DatastoreStorage datastoreStorage;
/**
*
* How long, in days, message data is kept for the data store. When customerManagedS3
storage is
* selected, this parameter is ignored.
*
*/
private RetentionPeriod retentionPeriod;
/**
*
* Metadata which can be used to manage the data store.
*
*/
private java.util.List tags;
/**
*
* Contains the configuration information of file formats. IoT Analytics data stores support JSON and Parquet.
*
*
* The default file format is JSON. You can specify only one format.
*
*
* You can't change the file format after you create the data store.
*
*/
private FileFormatConfiguration fileFormatConfiguration;
/**
*
* Contains information about the partition dimensions in a data store.
*
*/
private DatastorePartitions datastorePartitions;
/**
*
* The name of the data store.
*
*
* @param datastoreName
* The name of the data store.
*/
public void setDatastoreName(String datastoreName) {
this.datastoreName = datastoreName;
}
/**
*
* The name of the data store.
*
*
* @return The name of the data store.
*/
public String getDatastoreName() {
return this.datastoreName;
}
/**
*
* The name of the data store.
*
*
* @param datastoreName
* The name of the data store.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDatastoreRequest withDatastoreName(String datastoreName) {
setDatastoreName(datastoreName);
return this;
}
/**
*
* Where data in a data store is stored.. You can choose serviceManagedS3
storage,
* customerManagedS3
storage, or iotSiteWiseMultiLayerStorage
storage. The default is
* serviceManagedS3
. You can't change the choice of Amazon S3 storage after your data store is created.
*
*
* @param datastoreStorage
* Where data in a data store is stored.. You can choose serviceManagedS3
storage,
* customerManagedS3
storage, or iotSiteWiseMultiLayerStorage
storage. The default
* is serviceManagedS3
. You can't change the choice of Amazon S3 storage after your data store
* is created.
*/
public void setDatastoreStorage(DatastoreStorage datastoreStorage) {
this.datastoreStorage = datastoreStorage;
}
/**
*
* Where data in a data store is stored.. You can choose serviceManagedS3
storage,
* customerManagedS3
storage, or iotSiteWiseMultiLayerStorage
storage. The default is
* serviceManagedS3
. You can't change the choice of Amazon S3 storage after your data store is created.
*
*
* @return Where data in a data store is stored.. You can choose serviceManagedS3
storage,
* customerManagedS3
storage, or iotSiteWiseMultiLayerStorage
storage. The default
* is serviceManagedS3
. You can't change the choice of Amazon S3 storage after your data store
* is created.
*/
public DatastoreStorage getDatastoreStorage() {
return this.datastoreStorage;
}
/**
*
* Where data in a data store is stored.. You can choose serviceManagedS3
storage,
* customerManagedS3
storage, or iotSiteWiseMultiLayerStorage
storage. The default is
* serviceManagedS3
. You can't change the choice of Amazon S3 storage after your data store is created.
*
*
* @param datastoreStorage
* Where data in a data store is stored.. You can choose serviceManagedS3
storage,
* customerManagedS3
storage, or iotSiteWiseMultiLayerStorage
storage. The default
* is serviceManagedS3
. You can't change the choice of Amazon S3 storage after your data store
* is created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDatastoreRequest withDatastoreStorage(DatastoreStorage datastoreStorage) {
setDatastoreStorage(datastoreStorage);
return this;
}
/**
*
* How long, in days, message data is kept for the data store. When customerManagedS3
storage is
* selected, this parameter is ignored.
*
*
* @param retentionPeriod
* How long, in days, message data is kept for the data store. When customerManagedS3
storage is
* selected, this parameter is ignored.
*/
public void setRetentionPeriod(RetentionPeriod retentionPeriod) {
this.retentionPeriod = retentionPeriod;
}
/**
*
* How long, in days, message data is kept for the data store. When customerManagedS3
storage is
* selected, this parameter is ignored.
*
*
* @return How long, in days, message data is kept for the data store. When customerManagedS3
storage
* is selected, this parameter is ignored.
*/
public RetentionPeriod getRetentionPeriod() {
return this.retentionPeriod;
}
/**
*
* How long, in days, message data is kept for the data store. When customerManagedS3
storage is
* selected, this parameter is ignored.
*
*
* @param retentionPeriod
* How long, in days, message data is kept for the data store. When customerManagedS3
storage is
* selected, this parameter is ignored.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDatastoreRequest withRetentionPeriod(RetentionPeriod retentionPeriod) {
setRetentionPeriod(retentionPeriod);
return this;
}
/**
*
* Metadata which can be used to manage the data store.
*
*
* @return Metadata which can be used to manage the data store.
*/
public java.util.List getTags() {
return tags;
}
/**
*
* Metadata which can be used to manage the data store.
*
*
* @param tags
* Metadata which can be used to manage the data store.
*/
public void setTags(java.util.Collection tags) {
if (tags == null) {
this.tags = null;
return;
}
this.tags = new java.util.ArrayList(tags);
}
/**
*
* Metadata which can be used to manage the data store.
*
*
* 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
* Metadata which can be used to manage the data store.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDatastoreRequest withTags(Tag... tags) {
if (this.tags == null) {
setTags(new java.util.ArrayList(tags.length));
}
for (Tag ele : tags) {
this.tags.add(ele);
}
return this;
}
/**
*
* Metadata which can be used to manage the data store.
*
*
* @param tags
* Metadata which can be used to manage the data store.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDatastoreRequest withTags(java.util.Collection tags) {
setTags(tags);
return this;
}
/**
*
* Contains the configuration information of file formats. IoT Analytics data stores support JSON and Parquet.
*
*
* The default file format is JSON. You can specify only one format.
*
*
* You can't change the file format after you create the data store.
*
*
* @param fileFormatConfiguration
* Contains the configuration information of file formats. IoT Analytics data stores support JSON and Parquet.
*
* The default file format is JSON. You can specify only one format.
*
*
* You can't change the file format after you create the data store.
*/
public void setFileFormatConfiguration(FileFormatConfiguration fileFormatConfiguration) {
this.fileFormatConfiguration = fileFormatConfiguration;
}
/**
*
* Contains the configuration information of file formats. IoT Analytics data stores support JSON and Parquet.
*
*
* The default file format is JSON. You can specify only one format.
*
*
* You can't change the file format after you create the data store.
*
*
* @return Contains the configuration information of file formats. IoT Analytics data stores support JSON and Parquet.
*
* The default file format is JSON. You can specify only one format.
*
*
* You can't change the file format after you create the data store.
*/
public FileFormatConfiguration getFileFormatConfiguration() {
return this.fileFormatConfiguration;
}
/**
*
* Contains the configuration information of file formats. IoT Analytics data stores support JSON and Parquet.
*
*
* The default file format is JSON. You can specify only one format.
*
*
* You can't change the file format after you create the data store.
*
*
* @param fileFormatConfiguration
* Contains the configuration information of file formats. IoT Analytics data stores support JSON and Parquet.
*
* The default file format is JSON. You can specify only one format.
*
*
* You can't change the file format after you create the data store.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDatastoreRequest withFileFormatConfiguration(FileFormatConfiguration fileFormatConfiguration) {
setFileFormatConfiguration(fileFormatConfiguration);
return this;
}
/**
*
* Contains information about the partition dimensions in a data store.
*
*
* @param datastorePartitions
* Contains information about the partition dimensions in a data store.
*/
public void setDatastorePartitions(DatastorePartitions datastorePartitions) {
this.datastorePartitions = datastorePartitions;
}
/**
*
* Contains information about the partition dimensions in a data store.
*
*
* @return Contains information about the partition dimensions in a data store.
*/
public DatastorePartitions getDatastorePartitions() {
return this.datastorePartitions;
}
/**
*
* Contains information about the partition dimensions in a data store.
*
*
* @param datastorePartitions
* Contains information about the partition dimensions in a data store.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateDatastoreRequest withDatastorePartitions(DatastorePartitions datastorePartitions) {
setDatastorePartitions(datastorePartitions);
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 (getDatastoreName() != null)
sb.append("DatastoreName: ").append(getDatastoreName()).append(",");
if (getDatastoreStorage() != null)
sb.append("DatastoreStorage: ").append(getDatastoreStorage()).append(",");
if (getRetentionPeriod() != null)
sb.append("RetentionPeriod: ").append(getRetentionPeriod()).append(",");
if (getTags() != null)
sb.append("Tags: ").append(getTags()).append(",");
if (getFileFormatConfiguration() != null)
sb.append("FileFormatConfiguration: ").append(getFileFormatConfiguration()).append(",");
if (getDatastorePartitions() != null)
sb.append("DatastorePartitions: ").append(getDatastorePartitions());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CreateDatastoreRequest == false)
return false;
CreateDatastoreRequest other = (CreateDatastoreRequest) obj;
if (other.getDatastoreName() == null ^ this.getDatastoreName() == null)
return false;
if (other.getDatastoreName() != null && other.getDatastoreName().equals(this.getDatastoreName()) == false)
return false;
if (other.getDatastoreStorage() == null ^ this.getDatastoreStorage() == null)
return false;
if (other.getDatastoreStorage() != null && other.getDatastoreStorage().equals(this.getDatastoreStorage()) == false)
return false;
if (other.getRetentionPeriod() == null ^ this.getRetentionPeriod() == null)
return false;
if (other.getRetentionPeriod() != null && other.getRetentionPeriod().equals(this.getRetentionPeriod()) == false)
return false;
if (other.getTags() == null ^ this.getTags() == null)
return false;
if (other.getTags() != null && other.getTags().equals(this.getTags()) == false)
return false;
if (other.getFileFormatConfiguration() == null ^ this.getFileFormatConfiguration() == null)
return false;
if (other.getFileFormatConfiguration() != null && other.getFileFormatConfiguration().equals(this.getFileFormatConfiguration()) == false)
return false;
if (other.getDatastorePartitions() == null ^ this.getDatastorePartitions() == null)
return false;
if (other.getDatastorePartitions() != null && other.getDatastorePartitions().equals(this.getDatastorePartitions()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDatastoreName() == null) ? 0 : getDatastoreName().hashCode());
hashCode = prime * hashCode + ((getDatastoreStorage() == null) ? 0 : getDatastoreStorage().hashCode());
hashCode = prime * hashCode + ((getRetentionPeriod() == null) ? 0 : getRetentionPeriod().hashCode());
hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode());
hashCode = prime * hashCode + ((getFileFormatConfiguration() == null) ? 0 : getFileFormatConfiguration().hashCode());
hashCode = prime * hashCode + ((getDatastorePartitions() == null) ? 0 : getDatastorePartitions().hashCode());
return hashCode;
}
@Override
public CreateDatastoreRequest clone() {
return (CreateDatastoreRequest) super.clone();
}
}