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

com.amazonaws.services.athena.model.ListNotebookMetadataRequest 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

There is a newer version: 1.12.778
Show 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 ListNotebookMetadataRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* Search filter string. *

*/ private FilterDefinition filters; /** *

* A token generated by the Athena service that specifies where to continue pagination if a previous request was * truncated. *

*/ private String nextToken; /** *

* Specifies the maximum number of results to return. *

*/ private Integer maxResults; /** *

* The name of the Spark enabled workgroup to retrieve notebook metadata for. *

*/ private String workGroup; /** *

* Search filter string. *

* * @param filters * Search filter string. */ public void setFilters(FilterDefinition filters) { this.filters = filters; } /** *

* Search filter string. *

* * @return Search filter string. */ public FilterDefinition getFilters() { return this.filters; } /** *

* Search filter string. *

* * @param filters * Search filter string. * @return Returns a reference to this object so that method calls can be chained together. */ public ListNotebookMetadataRequest withFilters(FilterDefinition filters) { setFilters(filters); return this; } /** *

* A token generated by the Athena service that specifies where to continue pagination if a previous request was * truncated. *

* * @param nextToken * A token generated by the Athena service that specifies where to continue pagination if a previous request * was truncated. */ 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. *

* * @return A token generated by the Athena service that specifies where to continue pagination if a previous request * was truncated. */ 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. *

* * @param nextToken * A token generated by the Athena service that specifies where to continue pagination if a previous request * was truncated. * @return Returns a reference to this object so that method calls can be chained together. */ public ListNotebookMetadataRequest 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 ListNotebookMetadataRequest withMaxResults(Integer maxResults) { setMaxResults(maxResults); return this; } /** *

* The name of the Spark enabled workgroup to retrieve notebook metadata for. *

* * @param workGroup * The name of the Spark enabled workgroup to retrieve notebook metadata for. */ public void setWorkGroup(String workGroup) { this.workGroup = workGroup; } /** *

* The name of the Spark enabled workgroup to retrieve notebook metadata for. *

* * @return The name of the Spark enabled workgroup to retrieve notebook metadata for. */ public String getWorkGroup() { return this.workGroup; } /** *

* The name of the Spark enabled workgroup to retrieve notebook metadata for. *

* * @param workGroup * The name of the Spark enabled workgroup to retrieve notebook metadata for. * @return Returns a reference to this object so that method calls can be chained together. */ public ListNotebookMetadataRequest 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 (getFilters() != null) sb.append("Filters: ").append(getFilters()).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 ListNotebookMetadataRequest == false) return false; ListNotebookMetadataRequest other = (ListNotebookMetadataRequest) obj; if (other.getFilters() == null ^ this.getFilters() == null) return false; if (other.getFilters() != null && other.getFilters().equals(this.getFilters()) == 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 + ((getFilters() == null) ? 0 : getFilters().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 ListNotebookMetadataRequest clone() { return (ListNotebookMetadataRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy