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

com.amazonaws.services.redshift.model.PartnerIntegrationInfo 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;

/**
 * 

* Describes a partner integration. *

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

* The name of the database that receives data from a partner. *

*/ private String databaseName; /** *

* The name of the partner. *

*/ private String partnerName; /** *

* The partner integration status. *

*/ private String status; /** *

* The status message provided by the partner. *

*/ private String statusMessage; /** *

* The date (UTC) that the partner integration was created. *

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

* The date (UTC) that the partner integration status was last updated by the partner. *

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

* The name of the database that receives data from a partner. *

* * @param databaseName * The name of the database that receives data from a partner. */ public void setDatabaseName(String databaseName) { this.databaseName = databaseName; } /** *

* The name of the database that receives data from a partner. *

* * @return The name of the database that receives data from a partner. */ public String getDatabaseName() { return this.databaseName; } /** *

* The name of the database that receives data from a partner. *

* * @param databaseName * The name of the database that receives data from a partner. * @return Returns a reference to this object so that method calls can be chained together. */ public PartnerIntegrationInfo withDatabaseName(String databaseName) { setDatabaseName(databaseName); return this; } /** *

* The name of the partner. *

* * @param partnerName * The name of the partner. */ public void setPartnerName(String partnerName) { this.partnerName = partnerName; } /** *

* The name of the partner. *

* * @return The name of the partner. */ public String getPartnerName() { return this.partnerName; } /** *

* The name of the partner. *

* * @param partnerName * The name of the partner. * @return Returns a reference to this object so that method calls can be chained together. */ public PartnerIntegrationInfo withPartnerName(String partnerName) { setPartnerName(partnerName); return this; } /** *

* The partner integration status. *

* * @param status * The partner integration status. * @see PartnerIntegrationStatus */ public void setStatus(String status) { this.status = status; } /** *

* The partner integration status. *

* * @return The partner integration status. * @see PartnerIntegrationStatus */ public String getStatus() { return this.status; } /** *

* The partner integration status. *

* * @param status * The partner integration status. * @return Returns a reference to this object so that method calls can be chained together. * @see PartnerIntegrationStatus */ public PartnerIntegrationInfo withStatus(String status) { setStatus(status); return this; } /** *

* The partner integration status. *

* * @param status * The partner integration status. * @return Returns a reference to this object so that method calls can be chained together. * @see PartnerIntegrationStatus */ public PartnerIntegrationInfo withStatus(PartnerIntegrationStatus status) { this.status = status.toString(); return this; } /** *

* The status message provided by the partner. *

* * @param statusMessage * The status message provided by the partner. */ public void setStatusMessage(String statusMessage) { this.statusMessage = statusMessage; } /** *

* The status message provided by the partner. *

* * @return The status message provided by the partner. */ public String getStatusMessage() { return this.statusMessage; } /** *

* The status message provided by the partner. *

* * @param statusMessage * The status message provided by the partner. * @return Returns a reference to this object so that method calls can be chained together. */ public PartnerIntegrationInfo withStatusMessage(String statusMessage) { setStatusMessage(statusMessage); return this; } /** *

* The date (UTC) that the partner integration was created. *

* * @param createdAt * The date (UTC) that the partner integration was created. */ public void setCreatedAt(java.util.Date createdAt) { this.createdAt = createdAt; } /** *

* The date (UTC) that the partner integration was created. *

* * @return The date (UTC) that the partner integration was created. */ public java.util.Date getCreatedAt() { return this.createdAt; } /** *

* The date (UTC) that the partner integration was created. *

* * @param createdAt * The date (UTC) that the partner integration was created. * @return Returns a reference to this object so that method calls can be chained together. */ public PartnerIntegrationInfo withCreatedAt(java.util.Date createdAt) { setCreatedAt(createdAt); return this; } /** *

* The date (UTC) that the partner integration status was last updated by the partner. *

* * @param updatedAt * The date (UTC) that the partner integration status was last updated by the partner. */ public void setUpdatedAt(java.util.Date updatedAt) { this.updatedAt = updatedAt; } /** *

* The date (UTC) that the partner integration status was last updated by the partner. *

* * @return The date (UTC) that the partner integration status was last updated by the partner. */ public java.util.Date getUpdatedAt() { return this.updatedAt; } /** *

* The date (UTC) that the partner integration status was last updated by the partner. *

* * @param updatedAt * The date (UTC) that the partner integration status was last updated by the partner. * @return Returns a reference to this object so that method calls can be chained together. */ public PartnerIntegrationInfo withUpdatedAt(java.util.Date updatedAt) { setUpdatedAt(updatedAt); 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 (getDatabaseName() != null) sb.append("DatabaseName: ").append(getDatabaseName()).append(","); if (getPartnerName() != null) sb.append("PartnerName: ").append(getPartnerName()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()).append(","); if (getStatusMessage() != null) sb.append("StatusMessage: ").append(getStatusMessage()).append(","); if (getCreatedAt() != null) sb.append("CreatedAt: ").append(getCreatedAt()).append(","); if (getUpdatedAt() != null) sb.append("UpdatedAt: ").append(getUpdatedAt()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof PartnerIntegrationInfo == false) return false; PartnerIntegrationInfo other = (PartnerIntegrationInfo) obj; if (other.getDatabaseName() == null ^ this.getDatabaseName() == null) return false; if (other.getDatabaseName() != null && other.getDatabaseName().equals(this.getDatabaseName()) == false) return false; if (other.getPartnerName() == null ^ this.getPartnerName() == null) return false; if (other.getPartnerName() != null && other.getPartnerName().equals(this.getPartnerName()) == 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.getStatusMessage() == null ^ this.getStatusMessage() == null) return false; if (other.getStatusMessage() != null && other.getStatusMessage().equals(this.getStatusMessage()) == false) return false; if (other.getCreatedAt() == null ^ this.getCreatedAt() == null) return false; if (other.getCreatedAt() != null && other.getCreatedAt().equals(this.getCreatedAt()) == false) return false; if (other.getUpdatedAt() == null ^ this.getUpdatedAt() == null) return false; if (other.getUpdatedAt() != null && other.getUpdatedAt().equals(this.getUpdatedAt()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDatabaseName() == null) ? 0 : getDatabaseName().hashCode()); hashCode = prime * hashCode + ((getPartnerName() == null) ? 0 : getPartnerName().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); hashCode = prime * hashCode + ((getStatusMessage() == null) ? 0 : getStatusMessage().hashCode()); hashCode = prime * hashCode + ((getCreatedAt() == null) ? 0 : getCreatedAt().hashCode()); hashCode = prime * hashCode + ((getUpdatedAt() == null) ? 0 : getUpdatedAt().hashCode()); return hashCode; } @Override public PartnerIntegrationInfo clone() { try { return (PartnerIntegrationInfo) 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