All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.waf.model.SampledHTTPRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS WAF Service module holds the client classes that are used for communicating with AWS WAF Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2010-2016 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.waf.model;

import java.io.Serializable;

/**
 * 

* The response from a GetSampledRequests request includes a * SampledHTTPRequests complex type that appears as * SampledRequests in the response syntax. * SampledHTTPRequests contains one SampledHTTPRequest * object for each web request that is returned by * GetSampledRequests. *

*/ public class SampledHTTPRequest implements Serializable, Cloneable { /** *

* A complex type that contains detailed information about the request. *

*/ private HTTPRequest request; /** *

* A value that indicates how one result in the response relates * proportionally to other results in the response. A result that has a * weight of 2 represents roughly twice as many CloudFront web * requests as a result that has a weight of 1. *

*/ private Long weight; /** *

* The time at which AWS WAF received the request from your AWS resource, in * Unix time format (in seconds). *

*/ private java.util.Date timestamp; /** *

* The action for the Rule that the request matched: * ALLOW, BLOCK, or COUNT. *

*/ private String action; /** *

* A complex type that contains detailed information about the request. *

* * @param request * A complex type that contains detailed information about the * request. */ public void setRequest(HTTPRequest request) { this.request = request; } /** *

* A complex type that contains detailed information about the request. *

* * @return A complex type that contains detailed information about the * request. */ public HTTPRequest getRequest() { return this.request; } /** *

* A complex type that contains detailed information about the request. *

* * @param request * A complex type that contains detailed information about the * request. * @return Returns a reference to this object so that method calls can be * chained together. */ public SampledHTTPRequest withRequest(HTTPRequest request) { setRequest(request); return this; } /** *

* A value that indicates how one result in the response relates * proportionally to other results in the response. A result that has a * weight of 2 represents roughly twice as many CloudFront web * requests as a result that has a weight of 1. *

* * @param weight * A value that indicates how one result in the response relates * proportionally to other results in the response. A result that has * a weight of 2 represents roughly twice as many * CloudFront web requests as a result that has a weight of * 1. */ public void setWeight(Long weight) { this.weight = weight; } /** *

* A value that indicates how one result in the response relates * proportionally to other results in the response. A result that has a * weight of 2 represents roughly twice as many CloudFront web * requests as a result that has a weight of 1. *

* * @return A value that indicates how one result in the response relates * proportionally to other results in the response. A result that * has a weight of 2 represents roughly twice as many * CloudFront web requests as a result that has a weight of * 1. */ public Long getWeight() { return this.weight; } /** *

* A value that indicates how one result in the response relates * proportionally to other results in the response. A result that has a * weight of 2 represents roughly twice as many CloudFront web * requests as a result that has a weight of 1. *

* * @param weight * A value that indicates how one result in the response relates * proportionally to other results in the response. A result that has * a weight of 2 represents roughly twice as many * CloudFront web requests as a result that has a weight of * 1. * @return Returns a reference to this object so that method calls can be * chained together. */ public SampledHTTPRequest withWeight(Long weight) { setWeight(weight); return this; } /** *

* The time at which AWS WAF received the request from your AWS resource, in * Unix time format (in seconds). *

* * @param timestamp * The time at which AWS WAF received the request from your AWS * resource, in Unix time format (in seconds). */ public void setTimestamp(java.util.Date timestamp) { this.timestamp = timestamp; } /** *

* The time at which AWS WAF received the request from your AWS resource, in * Unix time format (in seconds). *

* * @return The time at which AWS WAF received the request from your AWS * resource, in Unix time format (in seconds). */ public java.util.Date getTimestamp() { return this.timestamp; } /** *

* The time at which AWS WAF received the request from your AWS resource, in * Unix time format (in seconds). *

* * @param timestamp * The time at which AWS WAF received the request from your AWS * resource, in Unix time format (in seconds). * @return Returns a reference to this object so that method calls can be * chained together. */ public SampledHTTPRequest withTimestamp(java.util.Date timestamp) { setTimestamp(timestamp); return this; } /** *

* The action for the Rule that the request matched: * ALLOW, BLOCK, or COUNT. *

* * @param action * The action for the Rule that the request matched: * ALLOW, BLOCK, or COUNT. */ public void setAction(String action) { this.action = action; } /** *

* The action for the Rule that the request matched: * ALLOW, BLOCK, or COUNT. *

* * @return The action for the Rule that the request matched: * ALLOW, BLOCK, or COUNT. */ public String getAction() { return this.action; } /** *

* The action for the Rule that the request matched: * ALLOW, BLOCK, or COUNT. *

* * @param action * The action for the Rule that the request matched: * ALLOW, BLOCK, or COUNT. * @return Returns a reference to this object so that method calls can be * chained together. */ public SampledHTTPRequest withAction(String action) { setAction(action); 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 (getRequest() != null) sb.append("Request: " + getRequest() + ","); if (getWeight() != null) sb.append("Weight: " + getWeight() + ","); if (getTimestamp() != null) sb.append("Timestamp: " + getTimestamp() + ","); if (getAction() != null) sb.append("Action: " + getAction()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof SampledHTTPRequest == false) return false; SampledHTTPRequest other = (SampledHTTPRequest) obj; if (other.getRequest() == null ^ this.getRequest() == null) return false; if (other.getRequest() != null && other.getRequest().equals(this.getRequest()) == false) return false; if (other.getWeight() == null ^ this.getWeight() == null) return false; if (other.getWeight() != null && other.getWeight().equals(this.getWeight()) == false) return false; if (other.getTimestamp() == null ^ this.getTimestamp() == null) return false; if (other.getTimestamp() != null && other.getTimestamp().equals(this.getTimestamp()) == false) return false; if (other.getAction() == null ^ this.getAction() == null) return false; if (other.getAction() != null && other.getAction().equals(this.getAction()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getRequest() == null) ? 0 : getRequest().hashCode()); hashCode = prime * hashCode + ((getWeight() == null) ? 0 : getWeight().hashCode()); hashCode = prime * hashCode + ((getTimestamp() == null) ? 0 : getTimestamp().hashCode()); hashCode = prime * hashCode + ((getAction() == null) ? 0 : getAction().hashCode()); return hashCode; } @Override public SampledHTTPRequest clone() { try { return (SampledHTTPRequest) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException( "Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy