All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.wafv2.outputs.WebAclAssociationConfigRequestBodyVerifiedAccessInstance Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

There is a newer version: 6.60.0-alpha.1731982519
Show 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.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 WebAclAssociationConfigRequestBodyVerifiedAccessInstance {
    /**
     * @return Specifies the maximum size of the web request body component that an associated AWS Verified Access instances 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 WebAclAssociationConfigRequestBodyVerifiedAccessInstance() {}
    /**
     * @return Specifies the maximum size of the web request body component that an associated AWS Verified Access instances 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(WebAclAssociationConfigRequestBodyVerifiedAccessInstance defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String defaultSizeInspectionLimit;
        public Builder() {}
        public Builder(WebAclAssociationConfigRequestBodyVerifiedAccessInstance defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.defaultSizeInspectionLimit = defaults.defaultSizeInspectionLimit;
        }

        @CustomType.Setter
        public Builder defaultSizeInspectionLimit(String defaultSizeInspectionLimit) {
            if (defaultSizeInspectionLimit == null) {
              throw new MissingRequiredPropertyException("WebAclAssociationConfigRequestBodyVerifiedAccessInstance", "defaultSizeInspectionLimit");
            }
            this.defaultSizeInspectionLimit = defaultSizeInspectionLimit;
            return this;
        }
        public WebAclAssociationConfigRequestBodyVerifiedAccessInstance build() {
            final var _resultValue = new WebAclAssociationConfigRequestBodyVerifiedAccessInstance();
            _resultValue.defaultSizeInspectionLimit = defaultSizeInspectionLimit;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy