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

com.amazonaws.services.athena.model.ListTableMetadataRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon Athena module holds the client classes that are used for communicating with Amazon Athena 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.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 ListTableMetadataRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* The name of the data catalog for which table metadata should be returned. *

*/ private String catalogName; /** *

* The name of the database for which table metadata should be returned. *

*/ private String databaseName; /** *

* A regex filter that pattern-matches table names. If no expression is supplied, metadata for all tables are * listed. *

*/ private String expression; /** *

* A token generated by the Athena service that specifies where to continue pagination if a previous request was * truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page * call. *

*/ private String nextToken; /** *

* Specifies the maximum number of results to return. *

*/ private Integer maxResults; /** *

* 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 for which table metadata should be returned. *

* * @param catalogName * The name of the data catalog for which table metadata should be returned. */ public void setCatalogName(String catalogName) { this.catalogName = catalogName; } /** *

* The name of the data catalog for which table metadata should be returned. *

* * @return The name of the data catalog for which table metadata should be returned. */ public String getCatalogName() { return this.catalogName; } /** *

* The name of the data catalog for which table metadata should be returned. *

* * @param catalogName * The name of the data catalog for which table metadata should be returned. * @return Returns a reference to this object so that method calls can be chained together. */ public ListTableMetadataRequest withCatalogName(String catalogName) { setCatalogName(catalogName); return this; } /** *

* The name of the database for which table metadata should be returned. *

* * @param databaseName * The name of the database for which table metadata should be returned. */ public void setDatabaseName(String databaseName) { this.databaseName = databaseName; } /** *

* The name of the database for which table metadata should be returned. *

* * @return The name of the database for which table metadata should be returned. */ public String getDatabaseName() { return this.databaseName; } /** *

* The name of the database for which table metadata should be returned. *

* * @param databaseName * The name of the database for which table metadata should be returned. * @return Returns a reference to this object so that method calls can be chained together. */ public ListTableMetadataRequest withDatabaseName(String databaseName) { setDatabaseName(databaseName); return this; } /** *

* A regex filter that pattern-matches table names. If no expression is supplied, metadata for all tables are * listed. *

* * @param expression * A regex filter that pattern-matches table names. If no expression is supplied, metadata for all tables are * listed. */ public void setExpression(String expression) { this.expression = expression; } /** *

* A regex filter that pattern-matches table names. If no expression is supplied, metadata for all tables are * listed. *

* * @return A regex filter that pattern-matches table names. If no expression is supplied, metadata for all tables * are listed. */ public String getExpression() { return this.expression; } /** *

* A regex filter that pattern-matches table names. If no expression is supplied, metadata for all tables are * listed. *

* * @param expression * A regex filter that pattern-matches table names. If no expression is supplied, metadata for all tables are * listed. * @return Returns a reference to this object so that method calls can be chained together. */ public ListTableMetadataRequest withExpression(String expression) { setExpression(expression); return this; } /** *

* A token generated by the Athena service that specifies where to continue pagination if a previous request was * truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page * call. *

* * @param nextToken * A token generated by the Athena service that specifies where to continue pagination if a previous request * was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the * previous page call. */ public void setNextToken(String nextToken) { this.nextToken = nextToken; } /** *

* A token generated by the Athena service that specifies where to continue pagination if a previous request was * truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page * call. *

* * @return A token generated by the Athena service that specifies where to continue pagination if a previous request * was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the * previous page call. */ public String getNextToken() { return this.nextToken; } /** *

* A token generated by the Athena service that specifies where to continue pagination if a previous request was * truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page * call. *

* * @param nextToken * A token generated by the Athena service that specifies where to continue pagination if a previous request * was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the * previous page call. * @return Returns a reference to this object so that method calls can be chained together. */ public ListTableMetadataRequest withNextToken(String nextToken) { setNextToken(nextToken); return this; } /** *

* Specifies the maximum number of results to return. *

* * @param maxResults * Specifies the maximum number of results to return. */ public void setMaxResults(Integer maxResults) { this.maxResults = maxResults; } /** *

* Specifies the maximum number of results to return. *

* * @return Specifies the maximum number of results to return. */ public Integer getMaxResults() { return this.maxResults; } /** *

* Specifies the maximum number of results to return. *

* * @param maxResults * Specifies the maximum number of results to return. * @return Returns a reference to this object so that method calls can be chained together. */ public ListTableMetadataRequest withMaxResults(Integer maxResults) { setMaxResults(maxResults); 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 ListTableMetadataRequest 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 (getExpression() != null) sb.append("Expression: ").append(getExpression()).append(","); if (getNextToken() != null) sb.append("NextToken: ").append(getNextToken()).append(","); if (getMaxResults() != null) sb.append("MaxResults: ").append(getMaxResults()).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 ListTableMetadataRequest == false) return false; ListTableMetadataRequest other = (ListTableMetadataRequest) 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.getExpression() == null ^ this.getExpression() == null) return false; if (other.getExpression() != null && other.getExpression().equals(this.getExpression()) == false) return false; if (other.getNextToken() == null ^ this.getNextToken() == null) return false; if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false) return false; if (other.getMaxResults() == null ^ this.getMaxResults() == null) return false; if (other.getMaxResults() != null && other.getMaxResults().equals(this.getMaxResults()) == 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 + ((getExpression() == null) ? 0 : getExpression().hashCode()); hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode()); hashCode = prime * hashCode + ((getMaxResults() == null) ? 0 : getMaxResults().hashCode()); hashCode = prime * hashCode + ((getWorkGroup() == null) ? 0 : getWorkGroup().hashCode()); return hashCode; } @Override public ListTableMetadataRequest clone() { return (ListTableMetadataRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy