com.amazonaws.services.quicksight.model.RelationalTable Maven / Gradle / Ivy
Show all versions of aws-java-sdk-quicksight 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.quicksight.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* A physical table type for relational data sources.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class RelationalTable implements Serializable, Cloneable, StructuredPojo {
/**
*
* The Amazon Resource Name (ARN) for the data source.
*
*/
private String dataSourceArn;
/**
*
* The catalog associated with a table.
*
*/
private String catalog;
/**
*
* The schema name. This name applies to certain relational database engines.
*
*/
private String schema;
/**
*
* The name of the relational table.
*
*/
private String name;
/**
*
* The column schema of the table.
*
*/
private java.util.List inputColumns;
/**
*
* The Amazon Resource Name (ARN) for the data source.
*
*
* @param dataSourceArn
* The Amazon Resource Name (ARN) for the data source.
*/
public void setDataSourceArn(String dataSourceArn) {
this.dataSourceArn = dataSourceArn;
}
/**
*
* The Amazon Resource Name (ARN) for the data source.
*
*
* @return The Amazon Resource Name (ARN) for the data source.
*/
public String getDataSourceArn() {
return this.dataSourceArn;
}
/**
*
* The Amazon Resource Name (ARN) for the data source.
*
*
* @param dataSourceArn
* The Amazon Resource Name (ARN) for the data source.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RelationalTable withDataSourceArn(String dataSourceArn) {
setDataSourceArn(dataSourceArn);
return this;
}
/**
*
* The catalog associated with a table.
*
*
* @param catalog
* The catalog associated with a table.
*/
public void setCatalog(String catalog) {
this.catalog = catalog;
}
/**
*
* The catalog associated with a table.
*
*
* @return The catalog associated with a table.
*/
public String getCatalog() {
return this.catalog;
}
/**
*
* The catalog associated with a table.
*
*
* @param catalog
* The catalog associated with a table.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RelationalTable withCatalog(String catalog) {
setCatalog(catalog);
return this;
}
/**
*
* The schema name. This name applies to certain relational database engines.
*
*
* @param schema
* The schema name. This name applies to certain relational database engines.
*/
public void setSchema(String schema) {
this.schema = schema;
}
/**
*
* The schema name. This name applies to certain relational database engines.
*
*
* @return The schema name. This name applies to certain relational database engines.
*/
public String getSchema() {
return this.schema;
}
/**
*
* The schema name. This name applies to certain relational database engines.
*
*
* @param schema
* The schema name. This name applies to certain relational database engines.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RelationalTable withSchema(String schema) {
setSchema(schema);
return this;
}
/**
*
* The name of the relational table.
*
*
* @param name
* The name of the relational table.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* The name of the relational table.
*
*
* @return The name of the relational table.
*/
public String getName() {
return this.name;
}
/**
*
* The name of the relational table.
*
*
* @param name
* The name of the relational table.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RelationalTable withName(String name) {
setName(name);
return this;
}
/**
*
* The column schema of the table.
*
*
* @return The column schema of the table.
*/
public java.util.List getInputColumns() {
return inputColumns;
}
/**
*
* The column schema of the table.
*
*
* @param inputColumns
* The column schema of the table.
*/
public void setInputColumns(java.util.Collection inputColumns) {
if (inputColumns == null) {
this.inputColumns = null;
return;
}
this.inputColumns = new java.util.ArrayList(inputColumns);
}
/**
*
* The column schema of the table.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setInputColumns(java.util.Collection)} or {@link #withInputColumns(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param inputColumns
* The column schema of the table.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RelationalTable withInputColumns(InputColumn... inputColumns) {
if (this.inputColumns == null) {
setInputColumns(new java.util.ArrayList(inputColumns.length));
}
for (InputColumn ele : inputColumns) {
this.inputColumns.add(ele);
}
return this;
}
/**
*
* The column schema of the table.
*
*
* @param inputColumns
* The column schema of the table.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RelationalTable withInputColumns(java.util.Collection inputColumns) {
setInputColumns(inputColumns);
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 (getDataSourceArn() != null)
sb.append("DataSourceArn: ").append(getDataSourceArn()).append(",");
if (getCatalog() != null)
sb.append("Catalog: ").append(getCatalog()).append(",");
if (getSchema() != null)
sb.append("Schema: ").append(getSchema()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getInputColumns() != null)
sb.append("InputColumns: ").append(getInputColumns());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof RelationalTable == false)
return false;
RelationalTable other = (RelationalTable) obj;
if (other.getDataSourceArn() == null ^ this.getDataSourceArn() == null)
return false;
if (other.getDataSourceArn() != null && other.getDataSourceArn().equals(this.getDataSourceArn()) == false)
return false;
if (other.getCatalog() == null ^ this.getCatalog() == null)
return false;
if (other.getCatalog() != null && other.getCatalog().equals(this.getCatalog()) == false)
return false;
if (other.getSchema() == null ^ this.getSchema() == null)
return false;
if (other.getSchema() != null && other.getSchema().equals(this.getSchema()) == false)
return false;
if (other.getName() == null ^ this.getName() == null)
return false;
if (other.getName() != null && other.getName().equals(this.getName()) == false)
return false;
if (other.getInputColumns() == null ^ this.getInputColumns() == null)
return false;
if (other.getInputColumns() != null && other.getInputColumns().equals(this.getInputColumns()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getDataSourceArn() == null) ? 0 : getDataSourceArn().hashCode());
hashCode = prime * hashCode + ((getCatalog() == null) ? 0 : getCatalog().hashCode());
hashCode = prime * hashCode + ((getSchema() == null) ? 0 : getSchema().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getInputColumns() == null) ? 0 : getInputColumns().hashCode());
return hashCode;
}
@Override
public RelationalTable clone() {
try {
return (RelationalTable) 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.quicksight.model.transform.RelationalTableMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}