CreateWebACLRequest
Code IndexAdd Codota to your IDE (free)

Best code snippets using com.amazonaws.services.waf.model.CreateWebACLRequest(Showing top 15 results out of 315)

origin: aws/aws-sdk-java

/**
 * <p>
 * The value returned by the most recent call to <a>GetChangeToken</a>.
 * </p>
 * 
 * @param changeToken
 *        The value returned by the most recent call to <a>GetChangeToken</a>.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public CreateWebACLRequest withChangeToken(String changeToken) {
  setChangeToken(changeToken);
  return this;
}
origin: aws/aws-sdk-java

@Override
public int hashCode() {
  final int prime = 31;
  int hashCode = 1;
  hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
  hashCode = prime * hashCode + ((getMetricName() == null) ? 0 : getMetricName().hashCode());
  hashCode = prime * hashCode + ((getDefaultAction() == null) ? 0 : getDefaultAction().hashCode());
  hashCode = prime * hashCode + ((getChangeToken() == null) ? 0 : getChangeToken().hashCode());
  return hashCode;
}
origin: aws/aws-sdk-java

/**
 * Marshall the given parameter object.
 */
public void marshall(CreateWebACLRequest createWebACLRequest, ProtocolMarshaller protocolMarshaller) {
  if (createWebACLRequest == null) {
    throw new SdkClientException("Invalid argument passed to marshall(...)");
  }
  try {
    protocolMarshaller.marshall(createWebACLRequest.getName(), NAME_BINDING);
    protocolMarshaller.marshall(createWebACLRequest.getMetricName(), METRICNAME_BINDING);
    protocolMarshaller.marshall(createWebACLRequest.getDefaultAction(), DEFAULTACTION_BINDING);
    protocolMarshaller.marshall(createWebACLRequest.getChangeToken(), CHANGETOKEN_BINDING);
  } catch (Exception e) {
    throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e);
  }
}
origin: aws/aws-sdk-java

/**
 * <p>
 * The action that you want AWS WAF to take when a request doesn't match the criteria specified in any of the
 * <code>Rule</code> objects that are associated with the <code>WebACL</code>.
 * </p>
 * 
 * @param defaultAction
 *        The action that you want AWS WAF to take when a request doesn't match the criteria specified in any of the
 *        <code>Rule</code> objects that are associated with the <code>WebACL</code>.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public CreateWebACLRequest withDefaultAction(WafAction defaultAction) {
  setDefaultAction(defaultAction);
  return this;
}
origin: aws/aws-sdk-java

/**
 * <p>
 * A friendly name or description of the <a>WebACL</a>. You can't change <code>Name</code> after you create the
 * <code>WebACL</code>.
 * </p>
 * 
 * @param name
 *        A friendly name or description of the <a>WebACL</a>. You can't change <code>Name</code> after you create
 *        the <code>WebACL</code>.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public CreateWebACLRequest withName(String name) {
  setName(name);
  return this;
}
origin: aws/aws-sdk-java

/**
 * <p>
 * A friendly name or description for the metrics for this <code>WebACL</code>. The name can contain only
 * alphanumeric characters (A-Z, a-z, 0-9); the name can't contain whitespace. You can't change
 * <code>MetricName</code> after you create the <code>WebACL</code>.
 * </p>
 * 
 * @param metricName
 *        A friendly name or description for the metrics for this <code>WebACL</code>. The name can contain only
 *        alphanumeric characters (A-Z, a-z, 0-9); the name can't contain whitespace. You can't change
 *        <code>MetricName</code> after you create the <code>WebACL</code>.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public CreateWebACLRequest withMetricName(String metricName) {
  setMetricName(metricName);
  return this;
}
origin: aws/aws-sdk-java

/**
 * 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 (getName() != null)
    sb.append("Name: ").append(getName()).append(",");
  if (getMetricName() != null)
    sb.append("MetricName: ").append(getMetricName()).append(",");
  if (getDefaultAction() != null)
    sb.append("DefaultAction: ").append(getDefaultAction()).append(",");
  if (getChangeToken() != null)
    sb.append("ChangeToken: ").append(getChangeToken());
  sb.append("}");
  return sb.toString();
}
origin: aws/aws-sdk-java

@Override
public boolean equals(Object obj) {
  if (this == obj)
    return true;
  if (obj == null)
    return false;
  if (obj instanceof CreateWebACLRequest == false)
    return false;
  CreateWebACLRequest other = (CreateWebACLRequest) obj;
  if (other.getName() == null ^ this.getName() == null)
    return false;
  if (other.getName() != null && other.getName().equals(this.getName()) == false)
    return false;
  if (other.getMetricName() == null ^ this.getMetricName() == null)
    return false;
  if (other.getMetricName() != null && other.getMetricName().equals(this.getMetricName()) == false)
    return false;
  if (other.getDefaultAction() == null ^ this.getDefaultAction() == null)
    return false;
  if (other.getDefaultAction() != null && other.getDefaultAction().equals(this.getDefaultAction()) == false)
    return false;
  if (other.getChangeToken() == null ^ this.getChangeToken() == null)
    return false;
  if (other.getChangeToken() != null && other.getChangeToken().equals(this.getChangeToken()) == false)
    return false;
  return true;
}
origin: aws/aws-sdk-java

/**
 * Marshall the given parameter object.
 */
public void marshall(CreateWebACLRequest createWebACLRequest, ProtocolMarshaller protocolMarshaller) {
  if (createWebACLRequest == null) {
    throw new SdkClientException("Invalid argument passed to marshall(...)");
  }
  try {
    protocolMarshaller.marshall(createWebACLRequest.getName(), NAME_BINDING);
    protocolMarshaller.marshall(createWebACLRequest.getMetricName(), METRICNAME_BINDING);
    protocolMarshaller.marshall(createWebACLRequest.getDefaultAction(), DEFAULTACTION_BINDING);
    protocolMarshaller.marshall(createWebACLRequest.getChangeToken(), CHANGETOKEN_BINDING);
  } catch (Exception e) {
    throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e);
  }
}
origin: com.amazonaws/aws-java-sdk-bundle

@Override
public int hashCode() {
  final int prime = 31;
  int hashCode = 1;
  hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
  hashCode = prime * hashCode + ((getMetricName() == null) ? 0 : getMetricName().hashCode());
  hashCode = prime * hashCode + ((getDefaultAction() == null) ? 0 : getDefaultAction().hashCode());
  hashCode = prime * hashCode + ((getChangeToken() == null) ? 0 : getChangeToken().hashCode());
  return hashCode;
}
origin: com.amazonaws/aws-java-sdk-osgi

@Override
public int hashCode() {
  final int prime = 31;
  int hashCode = 1;
  hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
  hashCode = prime * hashCode + ((getMetricName() == null) ? 0 : getMetricName().hashCode());
  hashCode = prime * hashCode + ((getDefaultAction() == null) ? 0 : getDefaultAction().hashCode());
  hashCode = prime * hashCode + ((getChangeToken() == null) ? 0 : getChangeToken().hashCode());
  return hashCode;
}
origin: com.amazonaws/aws-java-sdk-osgi

/**
 * <p>
 * The value returned by the most recent call to <a>GetChangeToken</a>.
 * </p>
 * 
 * @param changeToken
 *        The value returned by the most recent call to <a>GetChangeToken</a>.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public CreateWebACLRequest withChangeToken(String changeToken) {
  setChangeToken(changeToken);
  return this;
}
origin: com.amazonaws/aws-java-sdk-bundle

/**
 * <p>
 * The value returned by the most recent call to <a>GetChangeToken</a>.
 * </p>
 * 
 * @param changeToken
 *        The value returned by the most recent call to <a>GetChangeToken</a>.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public CreateWebACLRequest withChangeToken(String changeToken) {
  setChangeToken(changeToken);
  return this;
}
origin: com.amazonaws/aws-java-sdk-bundle

/**
 * <p>
 * A friendly name or description of the <a>WebACL</a>. You can't change <code>Name</code> after you create the
 * <code>WebACL</code>.
 * </p>
 * 
 * @param name
 *        A friendly name or description of the <a>WebACL</a>. You can't change <code>Name</code> after you create
 *        the <code>WebACL</code>.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public CreateWebACLRequest withName(String name) {
  setName(name);
  return this;
}
origin: com.amazonaws/aws-java-sdk-osgi

/**
 * <p>
 * A friendly name or description of the <a>WebACL</a>. You can't change <code>Name</code> after you create the
 * <code>WebACL</code>.
 * </p>
 * 
 * @param name
 *        A friendly name or description of the <a>WebACL</a>. You can't change <code>Name</code> after you create
 *        the <code>WebACL</code>.
 * @return Returns a reference to this object so that method calls can be chained together.
 */
public CreateWebACLRequest withName(String name) {
  setName(name);
  return this;
}
com.amazonaws.services.waf.modelCreateWebACLRequest

Most used methods

  • getChangeToken
    The value returned by the most recent call to GetChangeToken.
  • getDefaultAction
    The action that you want AWS WAF to take when a request doesn't match the criteria specified in any
  • getMetricName
    A friendly name or description for the metrics for this WebACL. The name can contain only alphanume
  • getName
    A friendly name or description of the WebACL. You can't change Name after you create theWebACL.
  • setChangeToken
    The value returned by the most recent call to GetChangeToken.
  • setDefaultAction
    The action that you want AWS WAF to take when a request doesn't match the criteria specified in any
  • setMetricName
    A friendly name or description for the metrics for this WebACL. The name can contain only alphanume
  • setName
    A friendly name or description of the WebACL. You can't change Name after you create theWebACL.

Popular classes and methods

  • notifyDataSetChanged (ArrayAdapter)
  • putExtra (Intent)
  • requestLocationUpdates (LocationManager)
  • Container (java.awt)
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • BoxLayout (javax.swing)
  • JFrame (javax.swing)
  • Option (scala)

For IntelliJ IDEA,
Android Studio or Eclipse

  • Codota IntelliJ IDEA pluginCodota Android Studio pluginCode IndexSign in
  • EnterpriseFAQAboutContact Us
  • Terms of usePrivacy policyCodeboxFind Usages
Add Codota to your IDE (free)