com.pulumi.aws.wafv2.outputs.WebAclRuleStatementByteMatchStatementTextTransformation 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.Integer;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class WebAclRuleStatementByteMatchStatementTextTransformation {
/**
* @return Relative processing order for multiple transformations that are defined for a rule statement. AWS WAF processes all transformations, from lowest priority to highest, before inspecting the transformed content.
*
*/
private Integer priority;
/**
* @return Transformation to apply, please refer to the Text Transformation [documentation](https://docs.aws.amazon.com/waf/latest/APIReference/API_TextTransformation.html) for more details.
*
*/
private String type;
private WebAclRuleStatementByteMatchStatementTextTransformation() {}
/**
* @return Relative processing order for multiple transformations that are defined for a rule statement. AWS WAF processes all transformations, from lowest priority to highest, before inspecting the transformed content.
*
*/
public Integer priority() {
return this.priority;
}
/**
* @return Transformation to apply, please refer to the Text Transformation [documentation](https://docs.aws.amazon.com/waf/latest/APIReference/API_TextTransformation.html) for more details.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(WebAclRuleStatementByteMatchStatementTextTransformation defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Integer priority;
private String type;
public Builder() {}
public Builder(WebAclRuleStatementByteMatchStatementTextTransformation defaults) {
Objects.requireNonNull(defaults);
this.priority = defaults.priority;
this.type = defaults.type;
}
@CustomType.Setter
public Builder priority(Integer priority) {
if (priority == null) {
throw new MissingRequiredPropertyException("WebAclRuleStatementByteMatchStatementTextTransformation", "priority");
}
this.priority = priority;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("WebAclRuleStatementByteMatchStatementTextTransformation", "type");
}
this.type = type;
return this;
}
public WebAclRuleStatementByteMatchStatementTextTransformation build() {
final var _resultValue = new WebAclRuleStatementByteMatchStatementTextTransformation();
_resultValue.priority = priority;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy