
com.amazonaws.services.sagemaker.model.ListUserProfilesRequest 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.sagemaker.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 ListUserProfilesRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* If the previous response was truncated, you will receive this token. Use it in your next request to receive the
* next set of results.
*
*/
private String nextToken;
/**
*
* Returns a list up to a specified limit.
*
*/
private Integer maxResults;
/**
*
* The sort order for the results. The default is Ascending.
*
*/
private String sortOrder;
/**
*
* The parameter by which to sort the results. The default is CreationTime.
*
*/
private String sortBy;
/**
*
* A parameter by which to filter the results.
*
*/
private String domainIdEquals;
/**
*
* A parameter by which to filter the results.
*
*/
private String userProfileNameContains;
/**
*
* If the previous response was truncated, you will receive this token. Use it in your next request to receive the
* next set of results.
*
*
* @param nextToken
* If the previous response was truncated, you will receive this token. Use it in your next request to
* receive the next set of results.
*/
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
/**
*
* If the previous response was truncated, you will receive this token. Use it in your next request to receive the
* next set of results.
*
*
* @return If the previous response was truncated, you will receive this token. Use it in your next request to
* receive the next set of results.
*/
public String getNextToken() {
return this.nextToken;
}
/**
*
* If the previous response was truncated, you will receive this token. Use it in your next request to receive the
* next set of results.
*
*
* @param nextToken
* If the previous response was truncated, you will receive this token. Use it in your next request to
* receive the next set of results.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListUserProfilesRequest withNextToken(String nextToken) {
setNextToken(nextToken);
return this;
}
/**
*
* Returns a list up to a specified limit.
*
*
* @param maxResults
* Returns a list up to a specified limit.
*/
public void setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
}
/**
*
* Returns a list up to a specified limit.
*
*
* @return Returns a list up to a specified limit.
*/
public Integer getMaxResults() {
return this.maxResults;
}
/**
*
* Returns a list up to a specified limit.
*
*
* @param maxResults
* Returns a list up to a specified limit.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListUserProfilesRequest withMaxResults(Integer maxResults) {
setMaxResults(maxResults);
return this;
}
/**
*
* The sort order for the results. The default is Ascending.
*
*
* @param sortOrder
* The sort order for the results. The default is Ascending.
* @see SortOrder
*/
public void setSortOrder(String sortOrder) {
this.sortOrder = sortOrder;
}
/**
*
* The sort order for the results. The default is Ascending.
*
*
* @return The sort order for the results. The default is Ascending.
* @see SortOrder
*/
public String getSortOrder() {
return this.sortOrder;
}
/**
*
* The sort order for the results. The default is Ascending.
*
*
* @param sortOrder
* The sort order for the results. The default is Ascending.
* @return Returns a reference to this object so that method calls can be chained together.
* @see SortOrder
*/
public ListUserProfilesRequest withSortOrder(String sortOrder) {
setSortOrder(sortOrder);
return this;
}
/**
*
* The sort order for the results. The default is Ascending.
*
*
* @param sortOrder
* The sort order for the results. The default is Ascending.
* @return Returns a reference to this object so that method calls can be chained together.
* @see SortOrder
*/
public ListUserProfilesRequest withSortOrder(SortOrder sortOrder) {
this.sortOrder = sortOrder.toString();
return this;
}
/**
*
* The parameter by which to sort the results. The default is CreationTime.
*
*
* @param sortBy
* The parameter by which to sort the results. The default is CreationTime.
* @see UserProfileSortKey
*/
public void setSortBy(String sortBy) {
this.sortBy = sortBy;
}
/**
*
* The parameter by which to sort the results. The default is CreationTime.
*
*
* @return The parameter by which to sort the results. The default is CreationTime.
* @see UserProfileSortKey
*/
public String getSortBy() {
return this.sortBy;
}
/**
*
* The parameter by which to sort the results. The default is CreationTime.
*
*
* @param sortBy
* The parameter by which to sort the results. The default is CreationTime.
* @return Returns a reference to this object so that method calls can be chained together.
* @see UserProfileSortKey
*/
public ListUserProfilesRequest withSortBy(String sortBy) {
setSortBy(sortBy);
return this;
}
/**
*
* The parameter by which to sort the results. The default is CreationTime.
*
*
* @param sortBy
* The parameter by which to sort the results. The default is CreationTime.
* @return Returns a reference to this object so that method calls can be chained together.
* @see UserProfileSortKey
*/
public ListUserProfilesRequest withSortBy(UserProfileSortKey sortBy) {
this.sortBy = sortBy.toString();
return this;
}
/**
*
* A parameter by which to filter the results.
*
*
* @param domainIdEquals
* A parameter by which to filter the results.
*/
public void setDomainIdEquals(String domainIdEquals) {
this.domainIdEquals = domainIdEquals;
}
/**
*
* A parameter by which to filter the results.
*
*
* @return A parameter by which to filter the results.
*/
public String getDomainIdEquals() {
return this.domainIdEquals;
}
/**
*
* A parameter by which to filter the results.
*
*
* @param domainIdEquals
* A parameter by which to filter the results.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListUserProfilesRequest withDomainIdEquals(String domainIdEquals) {
setDomainIdEquals(domainIdEquals);
return this;
}
/**
*
* A parameter by which to filter the results.
*
*
* @param userProfileNameContains
* A parameter by which to filter the results.
*/
public void setUserProfileNameContains(String userProfileNameContains) {
this.userProfileNameContains = userProfileNameContains;
}
/**
*
* A parameter by which to filter the results.
*
*
* @return A parameter by which to filter the results.
*/
public String getUserProfileNameContains() {
return this.userProfileNameContains;
}
/**
*
* A parameter by which to filter the results.
*
*
* @param userProfileNameContains
* A parameter by which to filter the results.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListUserProfilesRequest withUserProfileNameContains(String userProfileNameContains) {
setUserProfileNameContains(userProfileNameContains);
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 (getSortOrder() != null)
sb.append("SortOrder: ").append(getSortOrder()).append(",");
if (getSortBy() != null)
sb.append("SortBy: ").append(getSortBy()).append(",");
if (getDomainIdEquals() != null)
sb.append("DomainIdEquals: ").append(getDomainIdEquals()).append(",");
if (getUserProfileNameContains() != null)
sb.append("UserProfileNameContains: ").append(getUserProfileNameContains());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ListUserProfilesRequest == false)
return false;
ListUserProfilesRequest other = (ListUserProfilesRequest) 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.getSortOrder() == null ^ this.getSortOrder() == null)
return false;
if (other.getSortOrder() != null && other.getSortOrder().equals(this.getSortOrder()) == false)
return false;
if (other.getSortBy() == null ^ this.getSortBy() == null)
return false;
if (other.getSortBy() != null && other.getSortBy().equals(this.getSortBy()) == false)
return false;
if (other.getDomainIdEquals() == null ^ this.getDomainIdEquals() == null)
return false;
if (other.getDomainIdEquals() != null && other.getDomainIdEquals().equals(this.getDomainIdEquals()) == false)
return false;
if (other.getUserProfileNameContains() == null ^ this.getUserProfileNameContains() == null)
return false;
if (other.getUserProfileNameContains() != null && other.getUserProfileNameContains().equals(this.getUserProfileNameContains()) == 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 + ((getSortOrder() == null) ? 0 : getSortOrder().hashCode());
hashCode = prime * hashCode + ((getSortBy() == null) ? 0 : getSortBy().hashCode());
hashCode = prime * hashCode + ((getDomainIdEquals() == null) ? 0 : getDomainIdEquals().hashCode());
hashCode = prime * hashCode + ((getUserProfileNameContains() == null) ? 0 : getUserProfileNameContains().hashCode());
return hashCode;
}
@Override
public ListUserProfilesRequest clone() {
return (ListUserProfilesRequest) super.clone();
}
}