com.pulumi.aws.wafv2.outputs.WebAclAssociationConfigRequestBodyCognitoUserPool 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 WebAclAssociationConfigRequestBodyCognitoUserPool {
/**
* @return Specifies the maximum size of the web request body component that an associated Amazon Cognito user pools should send to AWS WAF for inspection. This applies to statements in the web ACL that inspect the body or JSON body. Valid values are `KB_16`, `KB_32`, `KB_48` and `KB_64`.
*
*/
private String defaultSizeInspectionLimit;
private WebAclAssociationConfigRequestBodyCognitoUserPool() {}
/**
* @return Specifies the maximum size of the web request body component that an associated Amazon Cognito user pools should send to AWS WAF for inspection. This applies to statements in the web ACL that inspect the body or JSON body. Valid values are `KB_16`, `KB_32`, `KB_48` and `KB_64`.
*
*/
public String defaultSizeInspectionLimit() {
return this.defaultSizeInspectionLimit;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(WebAclAssociationConfigRequestBodyCognitoUserPool defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String defaultSizeInspectionLimit;
public Builder() {}
public Builder(WebAclAssociationConfigRequestBodyCognitoUserPool defaults) {
Objects.requireNonNull(defaults);
this.defaultSizeInspectionLimit = defaults.defaultSizeInspectionLimit;
}
@CustomType.Setter
public Builder defaultSizeInspectionLimit(String defaultSizeInspectionLimit) {
if (defaultSizeInspectionLimit == null) {
throw new MissingRequiredPropertyException("WebAclAssociationConfigRequestBodyCognitoUserPool", "defaultSizeInspectionLimit");
}
this.defaultSizeInspectionLimit = defaultSizeInspectionLimit;
return this;
}
public WebAclAssociationConfigRequestBodyCognitoUserPool build() {
final var _resultValue = new WebAclAssociationConfigRequestBodyCognitoUserPool();
_resultValue.defaultSizeInspectionLimit = defaultSizeInspectionLimit;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy