com.pulumi.aws.wafv2.outputs.WebAclRuleStatementRateBasedStatementScopeDownStatementIpSetReferenceStatementIpSetForwardedIpConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.wafv2.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class WebAclRuleStatementRateBasedStatementScopeDownStatementIpSetReferenceStatementIpSetForwardedIpConfig {
/**
* @return Match status to assign to the web request if the request doesn't have a valid IP address in the specified position. Valid values include: `MATCH` or `NO_MATCH`.
*
*/
private String fallbackBehavior;
/**
* @return Name of the HTTP header to use for the IP address.
*
*/
private String headerName;
/**
* @return Position in the header to search for the IP address. Valid values include: `FIRST`, `LAST`, or `ANY`. If `ANY` is specified and the header contains more than 10 IP addresses, AWS WAFv2 inspects the last 10.
*
*/
private String position;
private WebAclRuleStatementRateBasedStatementScopeDownStatementIpSetReferenceStatementIpSetForwardedIpConfig() {}
/**
* @return Match status to assign to the web request if the request doesn't have a valid IP address in the specified position. Valid values include: `MATCH` or `NO_MATCH`.
*
*/
public String fallbackBehavior() {
return this.fallbackBehavior;
}
/**
* @return Name of the HTTP header to use for the IP address.
*
*/
public String headerName() {
return this.headerName;
}
/**
* @return Position in the header to search for the IP address. Valid values include: `FIRST`, `LAST`, or `ANY`. If `ANY` is specified and the header contains more than 10 IP addresses, AWS WAFv2 inspects the last 10.
*
*/
public String position() {
return this.position;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(WebAclRuleStatementRateBasedStatementScopeDownStatementIpSetReferenceStatementIpSetForwardedIpConfig defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String fallbackBehavior;
private String headerName;
private String position;
public Builder() {}
public Builder(WebAclRuleStatementRateBasedStatementScopeDownStatementIpSetReferenceStatementIpSetForwardedIpConfig defaults) {
Objects.requireNonNull(defaults);
this.fallbackBehavior = defaults.fallbackBehavior;
this.headerName = defaults.headerName;
this.position = defaults.position;
}
@CustomType.Setter
public Builder fallbackBehavior(String fallbackBehavior) {
if (fallbackBehavior == null) {
throw new MissingRequiredPropertyException("WebAclRuleStatementRateBasedStatementScopeDownStatementIpSetReferenceStatementIpSetForwardedIpConfig", "fallbackBehavior");
}
this.fallbackBehavior = fallbackBehavior;
return this;
}
@CustomType.Setter
public Builder headerName(String headerName) {
if (headerName == null) {
throw new MissingRequiredPropertyException("WebAclRuleStatementRateBasedStatementScopeDownStatementIpSetReferenceStatementIpSetForwardedIpConfig", "headerName");
}
this.headerName = headerName;
return this;
}
@CustomType.Setter
public Builder position(String position) {
if (position == null) {
throw new MissingRequiredPropertyException("WebAclRuleStatementRateBasedStatementScopeDownStatementIpSetReferenceStatementIpSetForwardedIpConfig", "position");
}
this.position = position;
return this;
}
public WebAclRuleStatementRateBasedStatementScopeDownStatementIpSetReferenceStatementIpSetForwardedIpConfig build() {
final var _resultValue = new WebAclRuleStatementRateBasedStatementScopeDownStatementIpSetReferenceStatementIpSetForwardedIpConfig();
_resultValue.fallbackBehavior = fallbackBehavior;
_resultValue.headerName = headerName;
_resultValue.position = position;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy