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

com.amazonaws.services.lakeformation.model.GetWorkUnitResultsRequest Maven / Gradle / Ivy

Go to download

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

    /**
     * 

* The ID of the plan query operation for which to get results. *

*/ private String queryId; /** *

* The work unit ID for which to get results. Value generated by enumerating WorkUnitIdMin to * WorkUnitIdMax (inclusive) from the WorkUnitRange in the output of * GetWorkUnits. *

*/ private Long workUnitId; /** *

* A work token used to query the execution service. Token output from GetWorkUnits. *

*/ private String workUnitToken; /** *

* The ID of the plan query operation for which to get results. *

* * @param queryId * The ID of the plan query operation for which to get results. */ public void setQueryId(String queryId) { this.queryId = queryId; } /** *

* The ID of the plan query operation for which to get results. *

* * @return The ID of the plan query operation for which to get results. */ public String getQueryId() { return this.queryId; } /** *

* The ID of the plan query operation for which to get results. *

* * @param queryId * The ID of the plan query operation for which to get results. * @return Returns a reference to this object so that method calls can be chained together. */ public GetWorkUnitResultsRequest withQueryId(String queryId) { setQueryId(queryId); return this; } /** *

* The work unit ID for which to get results. Value generated by enumerating WorkUnitIdMin to * WorkUnitIdMax (inclusive) from the WorkUnitRange in the output of * GetWorkUnits. *

* * @param workUnitId * The work unit ID for which to get results. Value generated by enumerating WorkUnitIdMin to * WorkUnitIdMax (inclusive) from the WorkUnitRange in the output of * GetWorkUnits. */ public void setWorkUnitId(Long workUnitId) { this.workUnitId = workUnitId; } /** *

* The work unit ID for which to get results. Value generated by enumerating WorkUnitIdMin to * WorkUnitIdMax (inclusive) from the WorkUnitRange in the output of * GetWorkUnits. *

* * @return The work unit ID for which to get results. Value generated by enumerating WorkUnitIdMin to * WorkUnitIdMax (inclusive) from the WorkUnitRange in the output of * GetWorkUnits. */ public Long getWorkUnitId() { return this.workUnitId; } /** *

* The work unit ID for which to get results. Value generated by enumerating WorkUnitIdMin to * WorkUnitIdMax (inclusive) from the WorkUnitRange in the output of * GetWorkUnits. *

* * @param workUnitId * The work unit ID for which to get results. Value generated by enumerating WorkUnitIdMin to * WorkUnitIdMax (inclusive) from the WorkUnitRange in the output of * GetWorkUnits. * @return Returns a reference to this object so that method calls can be chained together. */ public GetWorkUnitResultsRequest withWorkUnitId(Long workUnitId) { setWorkUnitId(workUnitId); return this; } /** *

* A work token used to query the execution service. Token output from GetWorkUnits. *

* * @param workUnitToken * A work token used to query the execution service. Token output from GetWorkUnits. */ public void setWorkUnitToken(String workUnitToken) { this.workUnitToken = workUnitToken; } /** *

* A work token used to query the execution service. Token output from GetWorkUnits. *

* * @return A work token used to query the execution service. Token output from GetWorkUnits. */ public String getWorkUnitToken() { return this.workUnitToken; } /** *

* A work token used to query the execution service. Token output from GetWorkUnits. *

* * @param workUnitToken * A work token used to query the execution service. Token output from GetWorkUnits. * @return Returns a reference to this object so that method calls can be chained together. */ public GetWorkUnitResultsRequest withWorkUnitToken(String workUnitToken) { setWorkUnitToken(workUnitToken); 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 (getQueryId() != null) sb.append("QueryId: ").append(getQueryId()).append(","); if (getWorkUnitId() != null) sb.append("WorkUnitId: ").append(getWorkUnitId()).append(","); if (getWorkUnitToken() != null) sb.append("WorkUnitToken: ").append("***Sensitive Data Redacted***"); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetWorkUnitResultsRequest == false) return false; GetWorkUnitResultsRequest other = (GetWorkUnitResultsRequest) obj; if (other.getQueryId() == null ^ this.getQueryId() == null) return false; if (other.getQueryId() != null && other.getQueryId().equals(this.getQueryId()) == false) return false; if (other.getWorkUnitId() == null ^ this.getWorkUnitId() == null) return false; if (other.getWorkUnitId() != null && other.getWorkUnitId().equals(this.getWorkUnitId()) == false) return false; if (other.getWorkUnitToken() == null ^ this.getWorkUnitToken() == null) return false; if (other.getWorkUnitToken() != null && other.getWorkUnitToken().equals(this.getWorkUnitToken()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getQueryId() == null) ? 0 : getQueryId().hashCode()); hashCode = prime * hashCode + ((getWorkUnitId() == null) ? 0 : getWorkUnitId().hashCode()); hashCode = prime * hashCode + ((getWorkUnitToken() == null) ? 0 : getWorkUnitToken().hashCode()); return hashCode; } @Override public GetWorkUnitResultsRequest clone() { return (GetWorkUnitResultsRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy