/* * 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.cloudfront.model; import java.io.Serializable; import javax.annotation.Generated; /** *
* A list of real-time log configurations. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class RealtimeLogConfigs implements Serializable, Cloneable { /** ** The maximum number of real-time log configurations requested. *
*/ private Integer maxItems; /** ** Contains the list of real-time log configurations. *
*/ private com.amazonaws.internal.SdkInternalList* A flag that indicates whether there are more real-time log configurations than are contained in this list. *
*/ private Boolean isTruncated; /** ** This parameter indicates where this list of real-time log configurations begins. This list includes real-time log * configurations that occur after the marker. *
*/ private String marker; /** *
* If there are more items in the list than are in this response, this element is present. It contains the value
* that you should use in the Marker
field of a subsequent request to continue listing real-time log
* configurations where you left off.
*
* The maximum number of real-time log configurations requested. *
* * @param maxItems * The maximum number of real-time log configurations requested. */ public void setMaxItems(Integer maxItems) { this.maxItems = maxItems; } /** ** The maximum number of real-time log configurations requested. *
* * @return The maximum number of real-time log configurations requested. */ public Integer getMaxItems() { return this.maxItems; } /** ** The maximum number of real-time log configurations requested. *
* * @param maxItems * The maximum number of real-time log configurations requested. * @return Returns a reference to this object so that method calls can be chained together. */ public RealtimeLogConfigs withMaxItems(Integer maxItems) { setMaxItems(maxItems); return this; } /** ** Contains the list of real-time log configurations. *
* * @return Contains the list of real-time log configurations. */ public java.util.List* Contains the list of real-time log configurations. *
* * @param items * Contains the list of real-time log configurations. */ public void setItems(java.util.Collection* Contains the list of real-time log configurations. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setItems(java.util.Collection)} or {@link #withItems(java.util.Collection)} if you want to override the * existing values. *
* * @param items * Contains the list of real-time log configurations. * @return Returns a reference to this object so that method calls can be chained together. */ public RealtimeLogConfigs withItems(RealtimeLogConfig... items) { if (this.items == null) { setItems(new com.amazonaws.internal.SdkInternalList* Contains the list of real-time log configurations. *
* * @param items * Contains the list of real-time log configurations. * @return Returns a reference to this object so that method calls can be chained together. */ public RealtimeLogConfigs withItems(java.util.Collection* A flag that indicates whether there are more real-time log configurations than are contained in this list. *
* * @param isTruncated * A flag that indicates whether there are more real-time log configurations than are contained in this list. */ public void setIsTruncated(Boolean isTruncated) { this.isTruncated = isTruncated; } /** ** A flag that indicates whether there are more real-time log configurations than are contained in this list. *
* * @return A flag that indicates whether there are more real-time log configurations than are contained in this * list. */ public Boolean getIsTruncated() { return this.isTruncated; } /** ** A flag that indicates whether there are more real-time log configurations than are contained in this list. *
* * @param isTruncated * A flag that indicates whether there are more real-time log configurations than are contained in this list. * @return Returns a reference to this object so that method calls can be chained together. */ public RealtimeLogConfigs withIsTruncated(Boolean isTruncated) { setIsTruncated(isTruncated); return this; } /** ** A flag that indicates whether there are more real-time log configurations than are contained in this list. *
* * @return A flag that indicates whether there are more real-time log configurations than are contained in this * list. */ public Boolean isTruncated() { return this.isTruncated; } /** ** This parameter indicates where this list of real-time log configurations begins. This list includes real-time log * configurations that occur after the marker. *
* * @param marker * This parameter indicates where this list of real-time log configurations begins. This list includes * real-time log configurations that occur after the marker. */ public void setMarker(String marker) { this.marker = marker; } /** ** This parameter indicates where this list of real-time log configurations begins. This list includes real-time log * configurations that occur after the marker. *
* * @return This parameter indicates where this list of real-time log configurations begins. This list includes * real-time log configurations that occur after the marker. */ public String getMarker() { return this.marker; } /** ** This parameter indicates where this list of real-time log configurations begins. This list includes real-time log * configurations that occur after the marker. *
* * @param marker * This parameter indicates where this list of real-time log configurations begins. This list includes * real-time log configurations that occur after the marker. * @return Returns a reference to this object so that method calls can be chained together. */ public RealtimeLogConfigs withMarker(String marker) { setMarker(marker); return this; } /** *
* If there are more items in the list than are in this response, this element is present. It contains the value
* that you should use in the Marker
field of a subsequent request to continue listing real-time log
* configurations where you left off.
*
Marker
field of a subsequent request to continue listing
* real-time log configurations where you left off.
*/
public void setNextMarker(String nextMarker) {
this.nextMarker = nextMarker;
}
/**
*
* If there are more items in the list than are in this response, this element is present. It contains the value
* that you should use in the Marker
field of a subsequent request to continue listing real-time log
* configurations where you left off.
*
Marker
field of a subsequent request to continue listing
* real-time log configurations where you left off.
*/
public String getNextMarker() {
return this.nextMarker;
}
/**
*
* If there are more items in the list than are in this response, this element is present. It contains the value
* that you should use in the Marker
field of a subsequent request to continue listing real-time log
* configurations where you left off.
*
Marker
field of a subsequent request to continue listing
* real-time log configurations where you left off.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public RealtimeLogConfigs withNextMarker(String nextMarker) {
setNextMarker(nextMarker);
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 (getMaxItems() != null)
sb.append("MaxItems: ").append(getMaxItems()).append(",");
if (getItems() != null)
sb.append("Items: ").append(getItems()).append(",");
if (getIsTruncated() != null)
sb.append("IsTruncated: ").append(getIsTruncated()).append(",");
if (getMarker() != null)
sb.append("Marker: ").append(getMarker()).append(",");
if (getNextMarker() != null)
sb.append("NextMarker: ").append(getNextMarker());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof RealtimeLogConfigs == false)
return false;
RealtimeLogConfigs other = (RealtimeLogConfigs) obj;
if (other.getMaxItems() == null ^ this.getMaxItems() == null)
return false;
if (other.getMaxItems() != null && other.getMaxItems().equals(this.getMaxItems()) == false)
return false;
if (other.getItems() == null ^ this.getItems() == null)
return false;
if (other.getItems() != null && other.getItems().equals(this.getItems()) == false)
return false;
if (other.getIsTruncated() == null ^ this.getIsTruncated() == null)
return false;
if (other.getIsTruncated() != null && other.getIsTruncated().equals(this.getIsTruncated()) == false)
return false;
if (other.getMarker() == null ^ this.getMarker() == null)
return false;
if (other.getMarker() != null && other.getMarker().equals(this.getMarker()) == false)
return false;
if (other.getNextMarker() == null ^ this.getNextMarker() == null)
return false;
if (other.getNextMarker() != null && other.getNextMarker().equals(this.getNextMarker()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getMaxItems() == null) ? 0 : getMaxItems().hashCode());
hashCode = prime * hashCode + ((getItems() == null) ? 0 : getItems().hashCode());
hashCode = prime * hashCode + ((getIsTruncated() == null) ? 0 : getIsTruncated().hashCode());
hashCode = prime * hashCode + ((getMarker() == null) ? 0 : getMarker().hashCode());
hashCode = prime * hashCode + ((getNextMarker() == null) ? 0 : getNextMarker().hashCode());
return hashCode;
}
@Override
public RealtimeLogConfigs clone() {
try {
return (RealtimeLogConfigs) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}