com.pulumi.aws.wafregional.outputs.SqlInjectionMatchSetSqlInjectionMatchTuple 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.
The newest version!
// *** 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.wafregional.outputs;
import com.pulumi.aws.wafregional.outputs.SqlInjectionMatchSetSqlInjectionMatchTupleFieldToMatch;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class SqlInjectionMatchSetSqlInjectionMatchTuple {
/**
* @return Specifies where in a web request to look for snippets of malicious SQL code.
*
*/
private SqlInjectionMatchSetSqlInjectionMatchTupleFieldToMatch fieldToMatch;
/**
* @return Text transformations used to eliminate unusual formatting that attackers use in web requests in an effort to bypass AWS WAF.
* If you specify a transformation, AWS WAF performs the transformation on `field_to_match` before inspecting a request for a match.
* e.g., `CMD_LINE`, `HTML_ENTITY_DECODE` or `NONE`.
* See [docs](https://docs.aws.amazon.com/waf/latest/APIReference/API_regional_SqlInjectionMatchTuple.html#WAF-Type-regional_SqlInjectionMatchTuple-TextTransformation)
* for all supported values.
*
*/
private String textTransformation;
private SqlInjectionMatchSetSqlInjectionMatchTuple() {}
/**
* @return Specifies where in a web request to look for snippets of malicious SQL code.
*
*/
public SqlInjectionMatchSetSqlInjectionMatchTupleFieldToMatch fieldToMatch() {
return this.fieldToMatch;
}
/**
* @return Text transformations used to eliminate unusual formatting that attackers use in web requests in an effort to bypass AWS WAF.
* If you specify a transformation, AWS WAF performs the transformation on `field_to_match` before inspecting a request for a match.
* e.g., `CMD_LINE`, `HTML_ENTITY_DECODE` or `NONE`.
* See [docs](https://docs.aws.amazon.com/waf/latest/APIReference/API_regional_SqlInjectionMatchTuple.html#WAF-Type-regional_SqlInjectionMatchTuple-TextTransformation)
* for all supported values.
*
*/
public String textTransformation() {
return this.textTransformation;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(SqlInjectionMatchSetSqlInjectionMatchTuple defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private SqlInjectionMatchSetSqlInjectionMatchTupleFieldToMatch fieldToMatch;
private String textTransformation;
public Builder() {}
public Builder(SqlInjectionMatchSetSqlInjectionMatchTuple defaults) {
Objects.requireNonNull(defaults);
this.fieldToMatch = defaults.fieldToMatch;
this.textTransformation = defaults.textTransformation;
}
@CustomType.Setter
public Builder fieldToMatch(SqlInjectionMatchSetSqlInjectionMatchTupleFieldToMatch fieldToMatch) {
if (fieldToMatch == null) {
throw new MissingRequiredPropertyException("SqlInjectionMatchSetSqlInjectionMatchTuple", "fieldToMatch");
}
this.fieldToMatch = fieldToMatch;
return this;
}
@CustomType.Setter
public Builder textTransformation(String textTransformation) {
if (textTransformation == null) {
throw new MissingRequiredPropertyException("SqlInjectionMatchSetSqlInjectionMatchTuple", "textTransformation");
}
this.textTransformation = textTransformation;
return this;
}
public SqlInjectionMatchSetSqlInjectionMatchTuple build() {
final var _resultValue = new SqlInjectionMatchSetSqlInjectionMatchTuple();
_resultValue.fieldToMatch = fieldToMatch;
_resultValue.textTransformation = textTransformation;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy