com.amazonaws.services.codegurusecurity.model.GetFindingsRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-codegurusecurity 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.codegurusecurity.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 GetFindingsRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The maximum number of results to return in the response. Use this parameter when paginating results. If
* additional results exist beyond the number you specify, the nextToken
element is returned in the
* response. Use nextToken
in a subsequent request to retrieve additional results. If not specified,
* returns 1000 results.
*
*/
private Integer maxResults;
/**
*
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null
* for the first request. For subsequent calls, use the nextToken
value returned from the previous
* request to continue listing results after the first page.
*
*/
private String nextToken;
/**
*
* The name of the scan you want to retrieve findings from.
*
*/
private String scanName;
/**
*
* The status of the findings you want to get. Pass either Open
, Closed
, or
* All
.
*
*/
private String status;
/**
*
* The maximum number of results to return in the response. Use this parameter when paginating results. If
* additional results exist beyond the number you specify, the nextToken
element is returned in the
* response. Use nextToken
in a subsequent request to retrieve additional results. If not specified,
* returns 1000 results.
*
*
* @param maxResults
* The maximum number of results to return in the response. Use this parameter when paginating results. If
* additional results exist beyond the number you specify, the nextToken
element is returned in
* the response. Use nextToken
in a subsequent request to retrieve additional results. If not
* specified, returns 1000 results.
*/
public void setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
}
/**
*
* The maximum number of results to return in the response. Use this parameter when paginating results. If
* additional results exist beyond the number you specify, the nextToken
element is returned in the
* response. Use nextToken
in a subsequent request to retrieve additional results. If not specified,
* returns 1000 results.
*
*
* @return The maximum number of results to return in the response. Use this parameter when paginating results. If
* additional results exist beyond the number you specify, the nextToken
element is returned in
* the response. Use nextToken
in a subsequent request to retrieve additional results. If not
* specified, returns 1000 results.
*/
public Integer getMaxResults() {
return this.maxResults;
}
/**
*
* The maximum number of results to return in the response. Use this parameter when paginating results. If
* additional results exist beyond the number you specify, the nextToken
element is returned in the
* response. Use nextToken
in a subsequent request to retrieve additional results. If not specified,
* returns 1000 results.
*
*
* @param maxResults
* The maximum number of results to return in the response. Use this parameter when paginating results. If
* additional results exist beyond the number you specify, the nextToken
element is returned in
* the response. Use nextToken
in a subsequent request to retrieve additional results. If not
* specified, returns 1000 results.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetFindingsRequest withMaxResults(Integer maxResults) {
setMaxResults(maxResults);
return this;
}
/**
*
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null
* for the first request. For subsequent calls, use the nextToken
value returned from the previous
* request to continue listing results after the first page.
*
*
* @param nextToken
* A token to use for paginating results that are returned in the response. Set the value of this parameter
* to null for the first request. For subsequent calls, use the nextToken
value returned from
* the previous request to continue listing results after the first page.
*/
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
/**
*
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null
* for the first request. For subsequent calls, use the nextToken
value returned from the previous
* request to continue listing results after the first page.
*
*
* @return A token to use for paginating results that are returned in the response. Set the value of this parameter
* to null for the first request. For subsequent calls, use the nextToken
value returned from
* the previous request to continue listing results after the first page.
*/
public String getNextToken() {
return this.nextToken;
}
/**
*
* A token to use for paginating results that are returned in the response. Set the value of this parameter to null
* for the first request. For subsequent calls, use the nextToken
value returned from the previous
* request to continue listing results after the first page.
*
*
* @param nextToken
* A token to use for paginating results that are returned in the response. Set the value of this parameter
* to null for the first request. For subsequent calls, use the nextToken
value returned from
* the previous request to continue listing results after the first page.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetFindingsRequest withNextToken(String nextToken) {
setNextToken(nextToken);
return this;
}
/**
*
* The name of the scan you want to retrieve findings from.
*
*
* @param scanName
* The name of the scan you want to retrieve findings from.
*/
public void setScanName(String scanName) {
this.scanName = scanName;
}
/**
*
* The name of the scan you want to retrieve findings from.
*
*
* @return The name of the scan you want to retrieve findings from.
*/
public String getScanName() {
return this.scanName;
}
/**
*
* The name of the scan you want to retrieve findings from.
*
*
* @param scanName
* The name of the scan you want to retrieve findings from.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetFindingsRequest withScanName(String scanName) {
setScanName(scanName);
return this;
}
/**
*
* The status of the findings you want to get. Pass either Open
, Closed
, or
* All
.
*
*
* @param status
* The status of the findings you want to get. Pass either Open
, Closed
, or
* All
.
* @see Status
*/
public void setStatus(String status) {
this.status = status;
}
/**
*
* The status of the findings you want to get. Pass either Open
, Closed
, or
* All
.
*
*
* @return The status of the findings you want to get. Pass either Open
, Closed
, or
* All
.
* @see Status
*/
public String getStatus() {
return this.status;
}
/**
*
* The status of the findings you want to get. Pass either Open
, Closed
, or
* All
.
*
*
* @param status
* The status of the findings you want to get. Pass either Open
, Closed
, or
* All
.
* @return Returns a reference to this object so that method calls can be chained together.
* @see Status
*/
public GetFindingsRequest withStatus(String status) {
setStatus(status);
return this;
}
/**
*
* The status of the findings you want to get. Pass either Open
, Closed
, or
* All
.
*
*
* @param status
* The status of the findings you want to get. Pass either Open
, Closed
, or
* All
.
* @return Returns a reference to this object so that method calls can be chained together.
* @see Status
*/
public GetFindingsRequest withStatus(Status status) {
this.status = status.toString();
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 (getMaxResults() != null)
sb.append("MaxResults: ").append(getMaxResults()).append(",");
if (getNextToken() != null)
sb.append("NextToken: ").append(getNextToken()).append(",");
if (getScanName() != null)
sb.append("ScanName: ").append(getScanName()).append(",");
if (getStatus() != null)
sb.append("Status: ").append(getStatus());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof GetFindingsRequest == false)
return false;
GetFindingsRequest other = (GetFindingsRequest) obj;
if (other.getMaxResults() == null ^ this.getMaxResults() == null)
return false;
if (other.getMaxResults() != null && other.getMaxResults().equals(this.getMaxResults()) == 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.getScanName() == null ^ this.getScanName() == null)
return false;
if (other.getScanName() != null && other.getScanName().equals(this.getScanName()) == false)
return false;
if (other.getStatus() == null ^ this.getStatus() == null)
return false;
if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getMaxResults() == null) ? 0 : getMaxResults().hashCode());
hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode());
hashCode = prime * hashCode + ((getScanName() == null) ? 0 : getScanName().hashCode());
hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode());
return hashCode;
}
@Override
public GetFindingsRequest clone() {
return (GetFindingsRequest) super.clone();
}
}