/* * Copyright 2012-2017 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.logs.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** * <p> * Represents a matched event. * </p> * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/MetricFilterMatchRecord" target="_top">AWS API * Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class MetricFilterMatchRecord implements Serializable, Cloneable, StructuredPojo { /** * <p> * The event number. * </p> */ private Long eventNumber; /** * <p> * The raw event data. * </p> */ private String eventMessage; /** * <p> * The values extracted from the event data by the filter. * </p> */ private com.amazonaws.internal.SdkInternalMap<String, String> extractedValues; /** * <p> * The event number. * </p> * * @param eventNumber * The event number. */ public void setEventNumber(Long eventNumber) { this.eventNumber = eventNumber; } /** * <p> * The event number. * </p> * * @return The event number. */ public Long getEventNumber() { return this.eventNumber; } /** * <p> * The event number. * </p> * * @param eventNumber * The event number. * @return Returns a reference to this object so that method calls can be chained together. */ public MetricFilterMatchRecord withEventNumber(Long eventNumber) { setEventNumber(eventNumber); return this; } /** * <p> * The raw event data. * </p> * * @param eventMessage * The raw event data. */ public void setEventMessage(String eventMessage) { this.eventMessage = eventMessage; } /** * <p> * The raw event data. * </p> * * @return The raw event data. */ public String getEventMessage() { return this.eventMessage; } /** * <p> * The raw event data. * </p> * * @param eventMessage * The raw event data. * @return Returns a reference to this object so that method calls can be chained together. */ public MetricFilterMatchRecord withEventMessage(String eventMessage) { setEventMessage(eventMessage); return this; } /** * <p> * The values extracted from the event data by the filter. * </p> * * @return The values extracted from the event data by the filter. */ public java.util.Map<String, String> getExtractedValues() { if (extractedValues == null) { extractedValues = new com.amazonaws.internal.SdkInternalMap<String, String>(); } return extractedValues; } /** * <p> * The values extracted from the event data by the filter. * </p> * * @param extractedValues * The values extracted from the event data by the filter. */ public void setExtractedValues(java.util.Map<String, String> extractedValues) { this.extractedValues = extractedValues == null ? null : new com.amazonaws.internal.SdkInternalMap<String, String>(extractedValues); } /** * <p> * The values extracted from the event data by the filter. * </p> * * @param extractedValues * The values extracted from the event data by the filter. * @return Returns a reference to this object so that method calls can be chained together. */ public MetricFilterMatchRecord withExtractedValues(java.util.Map<String, String> extractedValues) { setExtractedValues(extractedValues); return this; } public MetricFilterMatchRecord addExtractedValuesEntry(String key, String value) { if (null == this.extractedValues) { this.extractedValues = new com.amazonaws.internal.SdkInternalMap<String, String>(); } if (this.extractedValues.containsKey(key)) throw new IllegalArgumentException("Duplicated keys (" + key.toString() + ") are provided."); this.extractedValues.put(key, value); return this; } /** * Removes all the entries added into ExtractedValues. * * @return Returns a reference to this object so that method calls can be chained together. */ public MetricFilterMatchRecord clearExtractedValuesEntries() { this.extractedValues = null; return this; } /** * Returns a string representation of this object; useful for testing and debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getEventNumber() != null) sb.append("EventNumber: ").append(getEventNumber()).append(","); if (getEventMessage() != null) sb.append("EventMessage: ").append(getEventMessage()).append(","); if (getExtractedValues() != null) sb.append("ExtractedValues: ").append(getExtractedValues()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof MetricFilterMatchRecord == false) return false; MetricFilterMatchRecord other = (MetricFilterMatchRecord) obj; if (other.getEventNumber() == null ^ this.getEventNumber() == null) return false; if (other.getEventNumber() != null && other.getEventNumber().equals(this.getEventNumber()) == false) return false; if (other.getEventMessage() == null ^ this.getEventMessage() == null) return false; if (other.getEventMessage() != null && other.getEventMessage().equals(this.getEventMessage()) == false) return false; if (other.getExtractedValues() == null ^ this.getExtractedValues() == null) return false; if (other.getExtractedValues() != null && other.getExtractedValues().equals(this.getExtractedValues()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getEventNumber() == null) ? 0 : getEventNumber().hashCode()); hashCode = prime * hashCode + ((getEventMessage() == null) ? 0 : getEventMessage().hashCode()); hashCode = prime * hashCode + ((getExtractedValues() == null) ? 0 : getExtractedValues().hashCode()); return hashCode; } @Override public MetricFilterMatchRecord clone() { try { return (MetricFilterMatchRecord) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.logs.model.transform.MetricFilterMatchRecordMarshaller.getInstance().marshall(this, protocolMarshaller); } }