All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.iotanalytics.model.DatastoreStorage Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS IoT Analytics module holds the client classes that are used for communicating with AWS IoT Analytics Service

There is a newer version: 1.12.780
Show newest version
/*
 * 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.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* 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. *

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

* Used to store data in an Amazon S3 bucket managed by IoT Analytics. You can't change the choice of Amazon S3 * storage after your data store is created. *

*/ private ServiceManagedDatastoreS3Storage serviceManagedS3; /** *

* S3-customer-managed; When you choose customer-managed storage, the retentionPeriod parameter is * ignored. You can't change the choice of Amazon S3 storage after your data store is created. *

*/ private CustomerManagedDatastoreS3Storage customerManagedS3; /** *

* Used to store data used by IoT SiteWise in an Amazon S3 bucket that you manage. You can't change the choice of * Amazon S3 storage after your data store is created. *

*/ private DatastoreIotSiteWiseMultiLayerStorage iotSiteWiseMultiLayerStorage; /** *

* Used to store data in an Amazon S3 bucket managed by IoT Analytics. You can't change the choice of Amazon S3 * storage after your data store is created. *

* * @param serviceManagedS3 * Used to store data in an Amazon S3 bucket managed by IoT Analytics. You can't change the choice of Amazon * S3 storage after your data store is created. */ public void setServiceManagedS3(ServiceManagedDatastoreS3Storage serviceManagedS3) { this.serviceManagedS3 = serviceManagedS3; } /** *

* Used to store data in an Amazon S3 bucket managed by IoT Analytics. You can't change the choice of Amazon S3 * storage after your data store is created. *

* * @return Used to store data in an Amazon S3 bucket managed by IoT Analytics. You can't change the choice of Amazon * S3 storage after your data store is created. */ public ServiceManagedDatastoreS3Storage getServiceManagedS3() { return this.serviceManagedS3; } /** *

* Used to store data in an Amazon S3 bucket managed by IoT Analytics. You can't change the choice of Amazon S3 * storage after your data store is created. *

* * @param serviceManagedS3 * Used to store data in an Amazon S3 bucket managed by IoT Analytics. 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 DatastoreStorage withServiceManagedS3(ServiceManagedDatastoreS3Storage serviceManagedS3) { setServiceManagedS3(serviceManagedS3); return this; } /** *

* S3-customer-managed; When you choose customer-managed storage, the retentionPeriod parameter is * ignored. You can't change the choice of Amazon S3 storage after your data store is created. *

* * @param customerManagedS3 * S3-customer-managed; When you choose customer-managed storage, the retentionPeriod parameter * is ignored. You can't change the choice of Amazon S3 storage after your data store is created. */ public void setCustomerManagedS3(CustomerManagedDatastoreS3Storage customerManagedS3) { this.customerManagedS3 = customerManagedS3; } /** *

* S3-customer-managed; When you choose customer-managed storage, the retentionPeriod parameter is * ignored. You can't change the choice of Amazon S3 storage after your data store is created. *

* * @return S3-customer-managed; When you choose customer-managed storage, the retentionPeriod parameter * is ignored. You can't change the choice of Amazon S3 storage after your data store is created. */ public CustomerManagedDatastoreS3Storage getCustomerManagedS3() { return this.customerManagedS3; } /** *

* S3-customer-managed; When you choose customer-managed storage, the retentionPeriod parameter is * ignored. You can't change the choice of Amazon S3 storage after your data store is created. *

* * @param customerManagedS3 * S3-customer-managed; When you choose customer-managed storage, the retentionPeriod parameter * is ignored. 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 DatastoreStorage withCustomerManagedS3(CustomerManagedDatastoreS3Storage customerManagedS3) { setCustomerManagedS3(customerManagedS3); return this; } /** *

* Used to store data used by IoT SiteWise in an Amazon S3 bucket that you manage. You can't change the choice of * Amazon S3 storage after your data store is created. *

* * @param iotSiteWiseMultiLayerStorage * Used to store data used by IoT SiteWise in an Amazon S3 bucket that you manage. You can't change the * choice of Amazon S3 storage after your data store is created. */ public void setIotSiteWiseMultiLayerStorage(DatastoreIotSiteWiseMultiLayerStorage iotSiteWiseMultiLayerStorage) { this.iotSiteWiseMultiLayerStorage = iotSiteWiseMultiLayerStorage; } /** *

* Used to store data used by IoT SiteWise in an Amazon S3 bucket that you manage. You can't change the choice of * Amazon S3 storage after your data store is created. *

* * @return Used to store data used by IoT SiteWise in an Amazon S3 bucket that you manage. You can't change the * choice of Amazon S3 storage after your data store is created. */ public DatastoreIotSiteWiseMultiLayerStorage getIotSiteWiseMultiLayerStorage() { return this.iotSiteWiseMultiLayerStorage; } /** *

* Used to store data used by IoT SiteWise in an Amazon S3 bucket that you manage. You can't change the choice of * Amazon S3 storage after your data store is created. *

* * @param iotSiteWiseMultiLayerStorage * Used to store data used by IoT SiteWise in an Amazon S3 bucket that you manage. 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 DatastoreStorage withIotSiteWiseMultiLayerStorage(DatastoreIotSiteWiseMultiLayerStorage iotSiteWiseMultiLayerStorage) { setIotSiteWiseMultiLayerStorage(iotSiteWiseMultiLayerStorage); 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 (getServiceManagedS3() != null) sb.append("ServiceManagedS3: ").append(getServiceManagedS3()).append(","); if (getCustomerManagedS3() != null) sb.append("CustomerManagedS3: ").append(getCustomerManagedS3()).append(","); if (getIotSiteWiseMultiLayerStorage() != null) sb.append("IotSiteWiseMultiLayerStorage: ").append(getIotSiteWiseMultiLayerStorage()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DatastoreStorage == false) return false; DatastoreStorage other = (DatastoreStorage) obj; if (other.getServiceManagedS3() == null ^ this.getServiceManagedS3() == null) return false; if (other.getServiceManagedS3() != null && other.getServiceManagedS3().equals(this.getServiceManagedS3()) == false) return false; if (other.getCustomerManagedS3() == null ^ this.getCustomerManagedS3() == null) return false; if (other.getCustomerManagedS3() != null && other.getCustomerManagedS3().equals(this.getCustomerManagedS3()) == false) return false; if (other.getIotSiteWiseMultiLayerStorage() == null ^ this.getIotSiteWiseMultiLayerStorage() == null) return false; if (other.getIotSiteWiseMultiLayerStorage() != null && other.getIotSiteWiseMultiLayerStorage().equals(this.getIotSiteWiseMultiLayerStorage()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getServiceManagedS3() == null) ? 0 : getServiceManagedS3().hashCode()); hashCode = prime * hashCode + ((getCustomerManagedS3() == null) ? 0 : getCustomerManagedS3().hashCode()); hashCode = prime * hashCode + ((getIotSiteWiseMultiLayerStorage() == null) ? 0 : getIotSiteWiseMultiLayerStorage().hashCode()); return hashCode; } @Override public DatastoreStorage clone() { try { return (DatastoreStorage) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.iotanalytics.model.transform.DatastoreStorageMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy