com.amazonaws.services.athena.model.GetDatabaseRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-athena 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.athena.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 GetDatabaseRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The name of the data catalog that contains the database to return.
*
*/
private String catalogName;
/**
*
* The name of the database to return.
*
*/
private String databaseName;
/**
*
* The name of the workgroup for which the metadata is being fetched. Required if requesting an IAM Identity Center
* enabled Glue Data Catalog.
*
*/
private String workGroup;
/**
*
* The name of the data catalog that contains the database to return.
*
*
* @param catalogName
* The name of the data catalog that contains the database to return.
*/
public void setCatalogName(String catalogName) {
this.catalogName = catalogName;
}
/**
*
* The name of the data catalog that contains the database to return.
*
*
* @return The name of the data catalog that contains the database to return.
*/
public String getCatalogName() {
return this.catalogName;
}
/**
*
* The name of the data catalog that contains the database to return.
*
*
* @param catalogName
* The name of the data catalog that contains the database to return.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetDatabaseRequest withCatalogName(String catalogName) {
setCatalogName(catalogName);
return this;
}
/**
*
* The name of the database to return.
*
*
* @param databaseName
* The name of the database to return.
*/
public void setDatabaseName(String databaseName) {
this.databaseName = databaseName;
}
/**
*
* The name of the database to return.
*
*
* @return The name of the database to return.
*/
public String getDatabaseName() {
return this.databaseName;
}
/**
*
* The name of the database to return.
*
*
* @param databaseName
* The name of the database to return.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetDatabaseRequest withDatabaseName(String databaseName) {
setDatabaseName(databaseName);
return this;
}
/**
*
* The name of the workgroup for which the metadata is being fetched. Required if requesting an IAM Identity Center
* enabled Glue Data Catalog.
*
*
* @param workGroup
* The name of the workgroup for which the metadata is being fetched. Required if requesting an IAM Identity
* Center enabled Glue Data Catalog.
*/
public void setWorkGroup(String workGroup) {
this.workGroup = workGroup;
}
/**
*
* The name of the workgroup for which the metadata is being fetched. Required if requesting an IAM Identity Center
* enabled Glue Data Catalog.
*
*
* @return The name of the workgroup for which the metadata is being fetched. Required if requesting an IAM Identity
* Center enabled Glue Data Catalog.
*/
public String getWorkGroup() {
return this.workGroup;
}
/**
*
* The name of the workgroup for which the metadata is being fetched. Required if requesting an IAM Identity Center
* enabled Glue Data Catalog.
*
*
* @param workGroup
* The name of the workgroup for which the metadata is being fetched. Required if requesting an IAM Identity
* Center enabled Glue Data Catalog.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetDatabaseRequest withWorkGroup(String workGroup) {
setWorkGroup(workGroup);
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 (getCatalogName() != null)
sb.append("CatalogName: ").append(getCatalogName()).append(",");
if (getDatabaseName() != null)
sb.append("DatabaseName: ").append(getDatabaseName()).append(",");
if (getWorkGroup() != null)
sb.append("WorkGroup: ").append(getWorkGroup());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof GetDatabaseRequest == false)
return false;
GetDatabaseRequest other = (GetDatabaseRequest) obj;
if (other.getCatalogName() == null ^ this.getCatalogName() == null)
return false;
if (other.getCatalogName() != null && other.getCatalogName().equals(this.getCatalogName()) == false)
return false;
if (other.getDatabaseName() == null ^ this.getDatabaseName() == null)
return false;
if (other.getDatabaseName() != null && other.getDatabaseName().equals(this.getDatabaseName()) == false)
return false;
if (other.getWorkGroup() == null ^ this.getWorkGroup() == null)
return false;
if (other.getWorkGroup() != null && other.getWorkGroup().equals(this.getWorkGroup()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getCatalogName() == null) ? 0 : getCatalogName().hashCode());
hashCode = prime * hashCode + ((getDatabaseName() == null) ? 0 : getDatabaseName().hashCode());
hashCode = prime * hashCode + ((getWorkGroup() == null) ? 0 : getWorkGroup().hashCode());
return hashCode;
}
@Override
public GetDatabaseRequest clone() {
return (GetDatabaseRequest) super.clone();
}
}