
com.amazonaws.services.backup.model.ListBackupJobsRequest Maven / Gradle / Ivy
/*
* Copyright 2015-2020 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.backup.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 ListBackupJobsRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The next item following a partial list of returned items. For example, if a request is made to return
* maxResults
number of items, NextToken
allows you to return more items in your list
* starting at the location pointed to by the next token.
*
*/
private String nextToken;
/**
*
* The maximum number of items to be returned.
*
*/
private Integer maxResults;
/**
*
* Returns only backup jobs that match the specified resource Amazon Resource Name (ARN).
*
*/
private String byResourceArn;
/**
*
* Returns only backup jobs that are in the specified state.
*
*/
private String byState;
/**
*
* Returns only backup jobs that will be stored in the specified backup vault. Backup vaults are identified by names
* that are unique to the account used to create them and the AWS Region where they are created. They consist of
* lowercase letters, numbers, and hyphens.
*
*/
private String byBackupVaultName;
/**
*
* Returns only backup jobs that were created before the specified date.
*
*/
private java.util.Date byCreatedBefore;
/**
*
* Returns only backup jobs that were created after the specified date.
*
*/
private java.util.Date byCreatedAfter;
/**
*
* Returns only backup jobs for the specified resources:
*
*
* -
*
* DynamoDB
for Amazon DynamoDB
*
*
* -
*
* EBS
for Amazon Elastic Block Store
*
*
* -
*
* EFS
for Amazon Elastic File System
*
*
* -
*
* RDS
for Amazon Relational Database Service
*
*
* -
*
* Storage Gateway
for AWS Storage Gateway
*
*
*
*/
private String byResourceType;
/**
*
* The next item following a partial list of returned items. For example, if a request is made to return
* maxResults
number of items, NextToken
allows you to return more items in your list
* starting at the location pointed to by the next token.
*
*
* @param nextToken
* The next item following a partial list of returned items. For example, if a request is made to return
* maxResults
number of items, NextToken
allows you to return more items in your
* list starting at the location pointed to by the next token.
*/
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
/**
*
* The next item following a partial list of returned items. For example, if a request is made to return
* maxResults
number of items, NextToken
allows you to return more items in your list
* starting at the location pointed to by the next token.
*
*
* @return The next item following a partial list of returned items. For example, if a request is made to return
* maxResults
number of items, NextToken
allows you to return more items in your
* list starting at the location pointed to by the next token.
*/
public String getNextToken() {
return this.nextToken;
}
/**
*
* The next item following a partial list of returned items. For example, if a request is made to return
* maxResults
number of items, NextToken
allows you to return more items in your list
* starting at the location pointed to by the next token.
*
*
* @param nextToken
* The next item following a partial list of returned items. For example, if a request is made to return
* maxResults
number of items, NextToken
allows you to return more items in your
* list starting at the location pointed to by the next token.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListBackupJobsRequest withNextToken(String nextToken) {
setNextToken(nextToken);
return this;
}
/**
*
* The maximum number of items to be returned.
*
*
* @param maxResults
* The maximum number of items to be returned.
*/
public void setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
}
/**
*
* The maximum number of items to be returned.
*
*
* @return The maximum number of items to be returned.
*/
public Integer getMaxResults() {
return this.maxResults;
}
/**
*
* The maximum number of items to be returned.
*
*
* @param maxResults
* The maximum number of items to be returned.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListBackupJobsRequest withMaxResults(Integer maxResults) {
setMaxResults(maxResults);
return this;
}
/**
*
* Returns only backup jobs that match the specified resource Amazon Resource Name (ARN).
*
*
* @param byResourceArn
* Returns only backup jobs that match the specified resource Amazon Resource Name (ARN).
*/
public void setByResourceArn(String byResourceArn) {
this.byResourceArn = byResourceArn;
}
/**
*
* Returns only backup jobs that match the specified resource Amazon Resource Name (ARN).
*
*
* @return Returns only backup jobs that match the specified resource Amazon Resource Name (ARN).
*/
public String getByResourceArn() {
return this.byResourceArn;
}
/**
*
* Returns only backup jobs that match the specified resource Amazon Resource Name (ARN).
*
*
* @param byResourceArn
* Returns only backup jobs that match the specified resource Amazon Resource Name (ARN).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListBackupJobsRequest withByResourceArn(String byResourceArn) {
setByResourceArn(byResourceArn);
return this;
}
/**
*
* Returns only backup jobs that are in the specified state.
*
*
* @param byState
* Returns only backup jobs that are in the specified state.
* @see BackupJobState
*/
public void setByState(String byState) {
this.byState = byState;
}
/**
*
* Returns only backup jobs that are in the specified state.
*
*
* @return Returns only backup jobs that are in the specified state.
* @see BackupJobState
*/
public String getByState() {
return this.byState;
}
/**
*
* Returns only backup jobs that are in the specified state.
*
*
* @param byState
* Returns only backup jobs that are in the specified state.
* @return Returns a reference to this object so that method calls can be chained together.
* @see BackupJobState
*/
public ListBackupJobsRequest withByState(String byState) {
setByState(byState);
return this;
}
/**
*
* Returns only backup jobs that are in the specified state.
*
*
* @param byState
* Returns only backup jobs that are in the specified state.
* @return Returns a reference to this object so that method calls can be chained together.
* @see BackupJobState
*/
public ListBackupJobsRequest withByState(BackupJobState byState) {
this.byState = byState.toString();
return this;
}
/**
*
* Returns only backup jobs that will be stored in the specified backup vault. Backup vaults are identified by names
* that are unique to the account used to create them and the AWS Region where they are created. They consist of
* lowercase letters, numbers, and hyphens.
*
*
* @param byBackupVaultName
* Returns only backup jobs that will be stored in the specified backup vault. Backup vaults are identified
* by names that are unique to the account used to create them and the AWS Region where they are created.
* They consist of lowercase letters, numbers, and hyphens.
*/
public void setByBackupVaultName(String byBackupVaultName) {
this.byBackupVaultName = byBackupVaultName;
}
/**
*
* Returns only backup jobs that will be stored in the specified backup vault. Backup vaults are identified by names
* that are unique to the account used to create them and the AWS Region where they are created. They consist of
* lowercase letters, numbers, and hyphens.
*
*
* @return Returns only backup jobs that will be stored in the specified backup vault. Backup vaults are identified
* by names that are unique to the account used to create them and the AWS Region where they are created.
* They consist of lowercase letters, numbers, and hyphens.
*/
public String getByBackupVaultName() {
return this.byBackupVaultName;
}
/**
*
* Returns only backup jobs that will be stored in the specified backup vault. Backup vaults are identified by names
* that are unique to the account used to create them and the AWS Region where they are created. They consist of
* lowercase letters, numbers, and hyphens.
*
*
* @param byBackupVaultName
* Returns only backup jobs that will be stored in the specified backup vault. Backup vaults are identified
* by names that are unique to the account used to create them and the AWS Region where they are created.
* They consist of lowercase letters, numbers, and hyphens.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListBackupJobsRequest withByBackupVaultName(String byBackupVaultName) {
setByBackupVaultName(byBackupVaultName);
return this;
}
/**
*
* Returns only backup jobs that were created before the specified date.
*
*
* @param byCreatedBefore
* Returns only backup jobs that were created before the specified date.
*/
public void setByCreatedBefore(java.util.Date byCreatedBefore) {
this.byCreatedBefore = byCreatedBefore;
}
/**
*
* Returns only backup jobs that were created before the specified date.
*
*
* @return Returns only backup jobs that were created before the specified date.
*/
public java.util.Date getByCreatedBefore() {
return this.byCreatedBefore;
}
/**
*
* Returns only backup jobs that were created before the specified date.
*
*
* @param byCreatedBefore
* Returns only backup jobs that were created before the specified date.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListBackupJobsRequest withByCreatedBefore(java.util.Date byCreatedBefore) {
setByCreatedBefore(byCreatedBefore);
return this;
}
/**
*
* Returns only backup jobs that were created after the specified date.
*
*
* @param byCreatedAfter
* Returns only backup jobs that were created after the specified date.
*/
public void setByCreatedAfter(java.util.Date byCreatedAfter) {
this.byCreatedAfter = byCreatedAfter;
}
/**
*
* Returns only backup jobs that were created after the specified date.
*
*
* @return Returns only backup jobs that were created after the specified date.
*/
public java.util.Date getByCreatedAfter() {
return this.byCreatedAfter;
}
/**
*
* Returns only backup jobs that were created after the specified date.
*
*
* @param byCreatedAfter
* Returns only backup jobs that were created after the specified date.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListBackupJobsRequest withByCreatedAfter(java.util.Date byCreatedAfter) {
setByCreatedAfter(byCreatedAfter);
return this;
}
/**
*
* Returns only backup jobs for the specified resources:
*
*
* -
*
* DynamoDB
for Amazon DynamoDB
*
*
* -
*
* EBS
for Amazon Elastic Block Store
*
*
* -
*
* EFS
for Amazon Elastic File System
*
*
* -
*
* RDS
for Amazon Relational Database Service
*
*
* -
*
* Storage Gateway
for AWS Storage Gateway
*
*
*
*
* @param byResourceType
* Returns only backup jobs for the specified resources:
*
* -
*
* DynamoDB
for Amazon DynamoDB
*
*
* -
*
* EBS
for Amazon Elastic Block Store
*
*
* -
*
* EFS
for Amazon Elastic File System
*
*
* -
*
* RDS
for Amazon Relational Database Service
*
*
* -
*
* Storage Gateway
for AWS Storage Gateway
*
*
*/
public void setByResourceType(String byResourceType) {
this.byResourceType = byResourceType;
}
/**
*
* Returns only backup jobs for the specified resources:
*
*
* -
*
* DynamoDB
for Amazon DynamoDB
*
*
* -
*
* EBS
for Amazon Elastic Block Store
*
*
* -
*
* EFS
for Amazon Elastic File System
*
*
* -
*
* RDS
for Amazon Relational Database Service
*
*
* -
*
* Storage Gateway
for AWS Storage Gateway
*
*
*
*
* @return Returns only backup jobs for the specified resources:
*
* -
*
* DynamoDB
for Amazon DynamoDB
*
*
* -
*
* EBS
for Amazon Elastic Block Store
*
*
* -
*
* EFS
for Amazon Elastic File System
*
*
* -
*
* RDS
for Amazon Relational Database Service
*
*
* -
*
* Storage Gateway
for AWS Storage Gateway
*
*
*/
public String getByResourceType() {
return this.byResourceType;
}
/**
*
* Returns only backup jobs for the specified resources:
*
*
* -
*
* DynamoDB
for Amazon DynamoDB
*
*
* -
*
* EBS
for Amazon Elastic Block Store
*
*
* -
*
* EFS
for Amazon Elastic File System
*
*
* -
*
* RDS
for Amazon Relational Database Service
*
*
* -
*
* Storage Gateway
for AWS Storage Gateway
*
*
*
*
* @param byResourceType
* Returns only backup jobs for the specified resources:
*
* -
*
* DynamoDB
for Amazon DynamoDB
*
*
* -
*
* EBS
for Amazon Elastic Block Store
*
*
* -
*
* EFS
for Amazon Elastic File System
*
*
* -
*
* RDS
for Amazon Relational Database Service
*
*
* -
*
* Storage Gateway
for AWS Storage Gateway
*
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListBackupJobsRequest withByResourceType(String byResourceType) {
setByResourceType(byResourceType);
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 (getNextToken() != null)
sb.append("NextToken: ").append(getNextToken()).append(",");
if (getMaxResults() != null)
sb.append("MaxResults: ").append(getMaxResults()).append(",");
if (getByResourceArn() != null)
sb.append("ByResourceArn: ").append(getByResourceArn()).append(",");
if (getByState() != null)
sb.append("ByState: ").append(getByState()).append(",");
if (getByBackupVaultName() != null)
sb.append("ByBackupVaultName: ").append(getByBackupVaultName()).append(",");
if (getByCreatedBefore() != null)
sb.append("ByCreatedBefore: ").append(getByCreatedBefore()).append(",");
if (getByCreatedAfter() != null)
sb.append("ByCreatedAfter: ").append(getByCreatedAfter()).append(",");
if (getByResourceType() != null)
sb.append("ByResourceType: ").append(getByResourceType());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ListBackupJobsRequest == false)
return false;
ListBackupJobsRequest other = (ListBackupJobsRequest) obj;
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.getByResourceArn() == null ^ this.getByResourceArn() == null)
return false;
if (other.getByResourceArn() != null && other.getByResourceArn().equals(this.getByResourceArn()) == false)
return false;
if (other.getByState() == null ^ this.getByState() == null)
return false;
if (other.getByState() != null && other.getByState().equals(this.getByState()) == false)
return false;
if (other.getByBackupVaultName() == null ^ this.getByBackupVaultName() == null)
return false;
if (other.getByBackupVaultName() != null && other.getByBackupVaultName().equals(this.getByBackupVaultName()) == false)
return false;
if (other.getByCreatedBefore() == null ^ this.getByCreatedBefore() == null)
return false;
if (other.getByCreatedBefore() != null && other.getByCreatedBefore().equals(this.getByCreatedBefore()) == false)
return false;
if (other.getByCreatedAfter() == null ^ this.getByCreatedAfter() == null)
return false;
if (other.getByCreatedAfter() != null && other.getByCreatedAfter().equals(this.getByCreatedAfter()) == false)
return false;
if (other.getByResourceType() == null ^ this.getByResourceType() == null)
return false;
if (other.getByResourceType() != null && other.getByResourceType().equals(this.getByResourceType()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode());
hashCode = prime * hashCode + ((getMaxResults() == null) ? 0 : getMaxResults().hashCode());
hashCode = prime * hashCode + ((getByResourceArn() == null) ? 0 : getByResourceArn().hashCode());
hashCode = prime * hashCode + ((getByState() == null) ? 0 : getByState().hashCode());
hashCode = prime * hashCode + ((getByBackupVaultName() == null) ? 0 : getByBackupVaultName().hashCode());
hashCode = prime * hashCode + ((getByCreatedBefore() == null) ? 0 : getByCreatedBefore().hashCode());
hashCode = prime * hashCode + ((getByCreatedAfter() == null) ? 0 : getByCreatedAfter().hashCode());
hashCode = prime * hashCode + ((getByResourceType() == null) ? 0 : getByResourceType().hashCode());
return hashCode;
}
@Override
public ListBackupJobsRequest clone() {
return (ListBackupJobsRequest) super.clone();
}
}