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

com.amazonaws.services.redshift.model.DataShareAssociation Maven / Gradle / Ivy

Go to download

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

The 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.redshift.model;

import java.io.Serializable;
import javax.annotation.Generated;

/**
 * 

* The association of a datashare from a producer account with a data consumer. *

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

* The name of the consumer accounts that have an association with a producer datashare. *

*/ private String consumerIdentifier; /** *

* The status of the datashare that is associated. *

*/ private String status; /** *

* The Amazon Web Services Region of the consumer accounts that have an association with a producer datashare. *

*/ private String consumerRegion; /** *

* The creation date of the datashare that is associated. *

*/ private java.util.Date createdDate; /** *

* The status change data of the datashare that is associated. *

*/ private java.util.Date statusChangeDate; /** *

* Specifies whether write operations were allowed during data share authorization. *

*/ private Boolean producerAllowedWrites; /** *

* Specifies whether write operations were allowed during data share association. *

*/ private Boolean consumerAcceptedWrites; /** *

* The name of the consumer accounts that have an association with a producer datashare. *

* * @param consumerIdentifier * The name of the consumer accounts that have an association with a producer datashare. */ public void setConsumerIdentifier(String consumerIdentifier) { this.consumerIdentifier = consumerIdentifier; } /** *

* The name of the consumer accounts that have an association with a producer datashare. *

* * @return The name of the consumer accounts that have an association with a producer datashare. */ public String getConsumerIdentifier() { return this.consumerIdentifier; } /** *

* The name of the consumer accounts that have an association with a producer datashare. *

* * @param consumerIdentifier * The name of the consumer accounts that have an association with a producer datashare. * @return Returns a reference to this object so that method calls can be chained together. */ public DataShareAssociation withConsumerIdentifier(String consumerIdentifier) { setConsumerIdentifier(consumerIdentifier); return this; } /** *

* The status of the datashare that is associated. *

* * @param status * The status of the datashare that is associated. * @see DataShareStatus */ public void setStatus(String status) { this.status = status; } /** *

* The status of the datashare that is associated. *

* * @return The status of the datashare that is associated. * @see DataShareStatus */ public String getStatus() { return this.status; } /** *

* The status of the datashare that is associated. *

* * @param status * The status of the datashare that is associated. * @return Returns a reference to this object so that method calls can be chained together. * @see DataShareStatus */ public DataShareAssociation withStatus(String status) { setStatus(status); return this; } /** *

* The status of the datashare that is associated. *

* * @param status * The status of the datashare that is associated. * @return Returns a reference to this object so that method calls can be chained together. * @see DataShareStatus */ public DataShareAssociation withStatus(DataShareStatus status) { this.status = status.toString(); return this; } /** *

* The Amazon Web Services Region of the consumer accounts that have an association with a producer datashare. *

* * @param consumerRegion * The Amazon Web Services Region of the consumer accounts that have an association with a producer * datashare. */ public void setConsumerRegion(String consumerRegion) { this.consumerRegion = consumerRegion; } /** *

* The Amazon Web Services Region of the consumer accounts that have an association with a producer datashare. *

* * @return The Amazon Web Services Region of the consumer accounts that have an association with a producer * datashare. */ public String getConsumerRegion() { return this.consumerRegion; } /** *

* The Amazon Web Services Region of the consumer accounts that have an association with a producer datashare. *

* * @param consumerRegion * The Amazon Web Services Region of the consumer accounts that have an association with a producer * datashare. * @return Returns a reference to this object so that method calls can be chained together. */ public DataShareAssociation withConsumerRegion(String consumerRegion) { setConsumerRegion(consumerRegion); return this; } /** *

* The creation date of the datashare that is associated. *

* * @param createdDate * The creation date of the datashare that is associated. */ public void setCreatedDate(java.util.Date createdDate) { this.createdDate = createdDate; } /** *

* The creation date of the datashare that is associated. *

* * @return The creation date of the datashare that is associated. */ public java.util.Date getCreatedDate() { return this.createdDate; } /** *

* The creation date of the datashare that is associated. *

* * @param createdDate * The creation date of the datashare that is associated. * @return Returns a reference to this object so that method calls can be chained together. */ public DataShareAssociation withCreatedDate(java.util.Date createdDate) { setCreatedDate(createdDate); return this; } /** *

* The status change data of the datashare that is associated. *

* * @param statusChangeDate * The status change data of the datashare that is associated. */ public void setStatusChangeDate(java.util.Date statusChangeDate) { this.statusChangeDate = statusChangeDate; } /** *

* The status change data of the datashare that is associated. *

* * @return The status change data of the datashare that is associated. */ public java.util.Date getStatusChangeDate() { return this.statusChangeDate; } /** *

* The status change data of the datashare that is associated. *

* * @param statusChangeDate * The status change data of the datashare that is associated. * @return Returns a reference to this object so that method calls can be chained together. */ public DataShareAssociation withStatusChangeDate(java.util.Date statusChangeDate) { setStatusChangeDate(statusChangeDate); return this; } /** *

* Specifies whether write operations were allowed during data share authorization. *

* * @param producerAllowedWrites * Specifies whether write operations were allowed during data share authorization. */ public void setProducerAllowedWrites(Boolean producerAllowedWrites) { this.producerAllowedWrites = producerAllowedWrites; } /** *

* Specifies whether write operations were allowed during data share authorization. *

* * @return Specifies whether write operations were allowed during data share authorization. */ public Boolean getProducerAllowedWrites() { return this.producerAllowedWrites; } /** *

* Specifies whether write operations were allowed during data share authorization. *

* * @param producerAllowedWrites * Specifies whether write operations were allowed during data share authorization. * @return Returns a reference to this object so that method calls can be chained together. */ public DataShareAssociation withProducerAllowedWrites(Boolean producerAllowedWrites) { setProducerAllowedWrites(producerAllowedWrites); return this; } /** *

* Specifies whether write operations were allowed during data share authorization. *

* * @return Specifies whether write operations were allowed during data share authorization. */ public Boolean isProducerAllowedWrites() { return this.producerAllowedWrites; } /** *

* Specifies whether write operations were allowed during data share association. *

* * @param consumerAcceptedWrites * Specifies whether write operations were allowed during data share association. */ public void setConsumerAcceptedWrites(Boolean consumerAcceptedWrites) { this.consumerAcceptedWrites = consumerAcceptedWrites; } /** *

* Specifies whether write operations were allowed during data share association. *

* * @return Specifies whether write operations were allowed during data share association. */ public Boolean getConsumerAcceptedWrites() { return this.consumerAcceptedWrites; } /** *

* Specifies whether write operations were allowed during data share association. *

* * @param consumerAcceptedWrites * Specifies whether write operations were allowed during data share association. * @return Returns a reference to this object so that method calls can be chained together. */ public DataShareAssociation withConsumerAcceptedWrites(Boolean consumerAcceptedWrites) { setConsumerAcceptedWrites(consumerAcceptedWrites); return this; } /** *

* Specifies whether write operations were allowed during data share association. *

* * @return Specifies whether write operations were allowed during data share association. */ public Boolean isConsumerAcceptedWrites() { return this.consumerAcceptedWrites; } /** * 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 (getConsumerIdentifier() != null) sb.append("ConsumerIdentifier: ").append(getConsumerIdentifier()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getConsumerRegion() != null) sb.append("ConsumerRegion: ").append(getConsumerRegion()).append(","); if (getCreatedDate() != null) sb.append("CreatedDate: ").append(getCreatedDate()).append(","); if (getStatusChangeDate() != null) sb.append("StatusChangeDate: ").append(getStatusChangeDate()).append(","); if (getProducerAllowedWrites() != null) sb.append("ProducerAllowedWrites: ").append(getProducerAllowedWrites()).append(","); if (getConsumerAcceptedWrites() != null) sb.append("ConsumerAcceptedWrites: ").append(getConsumerAcceptedWrites()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DataShareAssociation == false) return false; DataShareAssociation other = (DataShareAssociation) obj; if (other.getConsumerIdentifier() == null ^ this.getConsumerIdentifier() == null) return false; if (other.getConsumerIdentifier() != null && other.getConsumerIdentifier().equals(this.getConsumerIdentifier()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; if (other.getConsumerRegion() == null ^ this.getConsumerRegion() == null) return false; if (other.getConsumerRegion() != null && other.getConsumerRegion().equals(this.getConsumerRegion()) == false) return false; if (other.getCreatedDate() == null ^ this.getCreatedDate() == null) return false; if (other.getCreatedDate() != null && other.getCreatedDate().equals(this.getCreatedDate()) == false) return false; if (other.getStatusChangeDate() == null ^ this.getStatusChangeDate() == null) return false; if (other.getStatusChangeDate() != null && other.getStatusChangeDate().equals(this.getStatusChangeDate()) == false) return false; if (other.getProducerAllowedWrites() == null ^ this.getProducerAllowedWrites() == null) return false; if (other.getProducerAllowedWrites() != null && other.getProducerAllowedWrites().equals(this.getProducerAllowedWrites()) == false) return false; if (other.getConsumerAcceptedWrites() == null ^ this.getConsumerAcceptedWrites() == null) return false; if (other.getConsumerAcceptedWrites() != null && other.getConsumerAcceptedWrites().equals(this.getConsumerAcceptedWrites()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getConsumerIdentifier() == null) ? 0 : getConsumerIdentifier().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getConsumerRegion() == null) ? 0 : getConsumerRegion().hashCode()); hashCode = prime * hashCode + ((getCreatedDate() == null) ? 0 : getCreatedDate().hashCode()); hashCode = prime * hashCode + ((getStatusChangeDate() == null) ? 0 : getStatusChangeDate().hashCode()); hashCode = prime * hashCode + ((getProducerAllowedWrites() == null) ? 0 : getProducerAllowedWrites().hashCode()); hashCode = prime * hashCode + ((getConsumerAcceptedWrites() == null) ? 0 : getConsumerAcceptedWrites().hashCode()); return hashCode; } @Override public DataShareAssociation clone() { try { return (DataShareAssociation) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy