/* * Copyright 2018-2023 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.config.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** *
* The input for the GetResourceConfigHistory action. *
* * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class GetResourceConfigHistoryRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** ** The resource type. *
*/ private String resourceType; /** *
* The ID of the resource (for example., sg-xxxxxx
).
*
* The time stamp that indicates a later time. If not specified, current time is taken. *
*/ private java.util.Date laterTime; /** ** The time stamp that indicates an earlier time. If not specified, the action returns paginated results that * contain configuration items that start when the first configuration item was recorded. *
*/ private java.util.Date earlierTime; /** ** The chronological order for configuration items listed. By default, the results are listed in reverse * chronological order. *
*/ private String chronologicalOrder; /** ** The maximum number of configuration items returned on each page. The default is 10. You cannot specify a number * greater than 100. If you specify 0, Config uses the default. *
*/ private Integer limit; /** *
* The nextToken
string returned on a previous page that you use to get the next page of results in a
* paginated response.
*
* The resource type. *
* * @param resourceType * The resource type. * @see ResourceType */ public void setResourceType(String resourceType) { this.resourceType = resourceType; } /** ** The resource type. *
* * @return The resource type. * @see ResourceType */ public String getResourceType() { return this.resourceType; } /** ** The resource type. *
* * @param resourceType * The resource type. * @return Returns a reference to this object so that method calls can be chained together. * @see ResourceType */ public GetResourceConfigHistoryRequest withResourceType(String resourceType) { setResourceType(resourceType); return this; } /** ** The resource type. *
* * @param resourceType * The resource type. * @see ResourceType */ public void setResourceType(ResourceType resourceType) { withResourceType(resourceType); } /** ** The resource type. *
* * @param resourceType * The resource type. * @return Returns a reference to this object so that method calls can be chained together. * @see ResourceType */ public GetResourceConfigHistoryRequest withResourceType(ResourceType resourceType) { this.resourceType = resourceType.toString(); return this; } /** *
* The ID of the resource (for example., sg-xxxxxx
).
*
sg-xxxxxx
).
*/
public void setResourceId(String resourceId) {
this.resourceId = resourceId;
}
/**
*
* The ID of the resource (for example., sg-xxxxxx
).
*
sg-xxxxxx
).
*/
public String getResourceId() {
return this.resourceId;
}
/**
*
* The ID of the resource (for example., sg-xxxxxx
).
*
sg-xxxxxx
).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetResourceConfigHistoryRequest withResourceId(String resourceId) {
setResourceId(resourceId);
return this;
}
/**
* * The time stamp that indicates a later time. If not specified, current time is taken. *
* * @param laterTime * The time stamp that indicates a later time. If not specified, current time is taken. */ public void setLaterTime(java.util.Date laterTime) { this.laterTime = laterTime; } /** ** The time stamp that indicates a later time. If not specified, current time is taken. *
* * @return The time stamp that indicates a later time. If not specified, current time is taken. */ public java.util.Date getLaterTime() { return this.laterTime; } /** ** The time stamp that indicates a later time. If not specified, current time is taken. *
* * @param laterTime * The time stamp that indicates a later time. If not specified, current time is taken. * @return Returns a reference to this object so that method calls can be chained together. */ public GetResourceConfigHistoryRequest withLaterTime(java.util.Date laterTime) { setLaterTime(laterTime); return this; } /** ** The time stamp that indicates an earlier time. If not specified, the action returns paginated results that * contain configuration items that start when the first configuration item was recorded. *
* * @param earlierTime * The time stamp that indicates an earlier time. If not specified, the action returns paginated results that * contain configuration items that start when the first configuration item was recorded. */ public void setEarlierTime(java.util.Date earlierTime) { this.earlierTime = earlierTime; } /** ** The time stamp that indicates an earlier time. If not specified, the action returns paginated results that * contain configuration items that start when the first configuration item was recorded. *
* * @return The time stamp that indicates an earlier time. If not specified, the action returns paginated results * that contain configuration items that start when the first configuration item was recorded. */ public java.util.Date getEarlierTime() { return this.earlierTime; } /** ** The time stamp that indicates an earlier time. If not specified, the action returns paginated results that * contain configuration items that start when the first configuration item was recorded. *
* * @param earlierTime * The time stamp that indicates an earlier time. If not specified, the action returns paginated results that * contain configuration items that start when the first configuration item was recorded. * @return Returns a reference to this object so that method calls can be chained together. */ public GetResourceConfigHistoryRequest withEarlierTime(java.util.Date earlierTime) { setEarlierTime(earlierTime); return this; } /** ** The chronological order for configuration items listed. By default, the results are listed in reverse * chronological order. *
* * @param chronologicalOrder * The chronological order for configuration items listed. By default, the results are listed in reverse * chronological order. * @see ChronologicalOrder */ public void setChronologicalOrder(String chronologicalOrder) { this.chronologicalOrder = chronologicalOrder; } /** ** The chronological order for configuration items listed. By default, the results are listed in reverse * chronological order. *
* * @return The chronological order for configuration items listed. By default, the results are listed in reverse * chronological order. * @see ChronologicalOrder */ public String getChronologicalOrder() { return this.chronologicalOrder; } /** ** The chronological order for configuration items listed. By default, the results are listed in reverse * chronological order. *
* * @param chronologicalOrder * The chronological order for configuration items listed. By default, the results are listed in reverse * chronological order. * @return Returns a reference to this object so that method calls can be chained together. * @see ChronologicalOrder */ public GetResourceConfigHistoryRequest withChronologicalOrder(String chronologicalOrder) { setChronologicalOrder(chronologicalOrder); return this; } /** ** The chronological order for configuration items listed. By default, the results are listed in reverse * chronological order. *
* * @param chronologicalOrder * The chronological order for configuration items listed. By default, the results are listed in reverse * chronological order. * @see ChronologicalOrder */ public void setChronologicalOrder(ChronologicalOrder chronologicalOrder) { withChronologicalOrder(chronologicalOrder); } /** ** The chronological order for configuration items listed. By default, the results are listed in reverse * chronological order. *
* * @param chronologicalOrder * The chronological order for configuration items listed. By default, the results are listed in reverse * chronological order. * @return Returns a reference to this object so that method calls can be chained together. * @see ChronologicalOrder */ public GetResourceConfigHistoryRequest withChronologicalOrder(ChronologicalOrder chronologicalOrder) { this.chronologicalOrder = chronologicalOrder.toString(); return this; } /** ** The maximum number of configuration items returned on each page. The default is 10. You cannot specify a number * greater than 100. If you specify 0, Config uses the default. *
* * @param limit * The maximum number of configuration items returned on each page. The default is 10. You cannot specify a * number greater than 100. If you specify 0, Config uses the default. */ public void setLimit(Integer limit) { this.limit = limit; } /** ** The maximum number of configuration items returned on each page. The default is 10. You cannot specify a number * greater than 100. If you specify 0, Config uses the default. *
* * @return The maximum number of configuration items returned on each page. The default is 10. You cannot specify a * number greater than 100. If you specify 0, Config uses the default. */ public Integer getLimit() { return this.limit; } /** ** The maximum number of configuration items returned on each page. The default is 10. You cannot specify a number * greater than 100. If you specify 0, Config uses the default. *
* * @param limit * The maximum number of configuration items returned on each page. The default is 10. You cannot specify a * number greater than 100. If you specify 0, Config uses the default. * @return Returns a reference to this object so that method calls can be chained together. */ public GetResourceConfigHistoryRequest withLimit(Integer limit) { setLimit(limit); return this; } /** *
* The nextToken
string returned on a previous page that you use to get the next page of results in a
* paginated response.
*
nextToken
string returned on a previous page that you use to get the next page of results
* in a paginated response.
*/
public void setNextToken(String nextToken) {
this.nextToken = nextToken;
}
/**
*
* The nextToken
string returned on a previous page that you use to get the next page of results in a
* paginated response.
*
nextToken
string returned on a previous page that you use to get the next page of
* results in a paginated response.
*/
public String getNextToken() {
return this.nextToken;
}
/**
*
* The nextToken
string returned on a previous page that you use to get the next page of results in a
* paginated response.
*
nextToken
string returned on a previous page that you use to get the next page of results
* in a paginated response.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetResourceConfigHistoryRequest withNextToken(String nextToken) {
setNextToken(nextToken);
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 (getResourceType() != null)
sb.append("ResourceType: ").append(getResourceType()).append(",");
if (getResourceId() != null)
sb.append("ResourceId: ").append(getResourceId()).append(",");
if (getLaterTime() != null)
sb.append("LaterTime: ").append(getLaterTime()).append(",");
if (getEarlierTime() != null)
sb.append("EarlierTime: ").append(getEarlierTime()).append(",");
if (getChronologicalOrder() != null)
sb.append("ChronologicalOrder: ").append(getChronologicalOrder()).append(",");
if (getLimit() != null)
sb.append("Limit: ").append(getLimit()).append(",");
if (getNextToken() != null)
sb.append("NextToken: ").append(getNextToken());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof GetResourceConfigHistoryRequest == false)
return false;
GetResourceConfigHistoryRequest other = (GetResourceConfigHistoryRequest) obj;
if (other.getResourceType() == null ^ this.getResourceType() == null)
return false;
if (other.getResourceType() != null && other.getResourceType().equals(this.getResourceType()) == false)
return false;
if (other.getResourceId() == null ^ this.getResourceId() == null)
return false;
if (other.getResourceId() != null && other.getResourceId().equals(this.getResourceId()) == false)
return false;
if (other.getLaterTime() == null ^ this.getLaterTime() == null)
return false;
if (other.getLaterTime() != null && other.getLaterTime().equals(this.getLaterTime()) == false)
return false;
if (other.getEarlierTime() == null ^ this.getEarlierTime() == null)
return false;
if (other.getEarlierTime() != null && other.getEarlierTime().equals(this.getEarlierTime()) == false)
return false;
if (other.getChronologicalOrder() == null ^ this.getChronologicalOrder() == null)
return false;
if (other.getChronologicalOrder() != null && other.getChronologicalOrder().equals(this.getChronologicalOrder()) == false)
return false;
if (other.getLimit() == null ^ this.getLimit() == null)
return false;
if (other.getLimit() != null && other.getLimit().equals(this.getLimit()) == false)
return false;
if (other.getNextToken() == null ^ this.getNextToken() == null)
return false;
if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getResourceType() == null) ? 0 : getResourceType().hashCode());
hashCode = prime * hashCode + ((getResourceId() == null) ? 0 : getResourceId().hashCode());
hashCode = prime * hashCode + ((getLaterTime() == null) ? 0 : getLaterTime().hashCode());
hashCode = prime * hashCode + ((getEarlierTime() == null) ? 0 : getEarlierTime().hashCode());
hashCode = prime * hashCode + ((getChronologicalOrder() == null) ? 0 : getChronologicalOrder().hashCode());
hashCode = prime * hashCode + ((getLimit() == null) ? 0 : getLimit().hashCode());
hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode());
return hashCode;
}
@Override
public GetResourceConfigHistoryRequest clone() {
return (GetResourceConfigHistoryRequest) super.clone();
}
}