com.pulumi.aws.wafv2.outputs.WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfig 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.aws.wafv2.outputs.WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesAcfpRuleSet;
import com.pulumi.aws.wafv2.outputs.WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesAtpRuleSet;
import com.pulumi.aws.wafv2.outputs.WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesBotControlRuleSet;
import com.pulumi.aws.wafv2.outputs.WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigPasswordField;
import com.pulumi.aws.wafv2.outputs.WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigUsernameField;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfig {
/**
* @return Additional configuration for using the Account Creation Fraud Prevention managed rule group. Use this to specify information such as the registration page of your application and the type of content to accept or reject from the client.
*
*/
private @Nullable WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesAcfpRuleSet awsManagedRulesAcfpRuleSet;
/**
* @return Additional configuration for using the Account Takeover Protection managed rule group. Use this to specify information such as the sign-in page of your application and the type of content to accept or reject from the client.
*
*/
private @Nullable WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesAtpRuleSet awsManagedRulesAtpRuleSet;
/**
* @return Additional configuration for using the Bot Control managed rule group. Use this to specify the inspection level that you want to use. See `aws_managed_rules_bot_control_rule_set` for more details
*
*/
private @Nullable WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesBotControlRuleSet awsManagedRulesBotControlRuleSet;
/**
* @return The path of the login endpoint for your application.
*
*/
private @Nullable String loginPath;
/**
* @return Details about your login page password field. See `password_field` for more details.
*
*/
private @Nullable WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigPasswordField passwordField;
/**
* @return The payload type for your login endpoint, either JSON or form encoded.
*
*/
private @Nullable String payloadType;
/**
* @return Details about your login page username field. See `username_field` for more details.
*
*/
private @Nullable WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigUsernameField usernameField;
private WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfig() {}
/**
* @return Additional configuration for using the Account Creation Fraud Prevention managed rule group. Use this to specify information such as the registration page of your application and the type of content to accept or reject from the client.
*
*/
public Optional awsManagedRulesAcfpRuleSet() {
return Optional.ofNullable(this.awsManagedRulesAcfpRuleSet);
}
/**
* @return Additional configuration for using the Account Takeover Protection managed rule group. Use this to specify information such as the sign-in page of your application and the type of content to accept or reject from the client.
*
*/
public Optional awsManagedRulesAtpRuleSet() {
return Optional.ofNullable(this.awsManagedRulesAtpRuleSet);
}
/**
* @return Additional configuration for using the Bot Control managed rule group. Use this to specify the inspection level that you want to use. See `aws_managed_rules_bot_control_rule_set` for more details
*
*/
public Optional awsManagedRulesBotControlRuleSet() {
return Optional.ofNullable(this.awsManagedRulesBotControlRuleSet);
}
/**
* @return The path of the login endpoint for your application.
*
*/
public Optional loginPath() {
return Optional.ofNullable(this.loginPath);
}
/**
* @return Details about your login page password field. See `password_field` for more details.
*
*/
public Optional passwordField() {
return Optional.ofNullable(this.passwordField);
}
/**
* @return The payload type for your login endpoint, either JSON or form encoded.
*
*/
public Optional payloadType() {
return Optional.ofNullable(this.payloadType);
}
/**
* @return Details about your login page username field. See `username_field` for more details.
*
*/
public Optional usernameField() {
return Optional.ofNullable(this.usernameField);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfig defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesAcfpRuleSet awsManagedRulesAcfpRuleSet;
private @Nullable WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesAtpRuleSet awsManagedRulesAtpRuleSet;
private @Nullable WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesBotControlRuleSet awsManagedRulesBotControlRuleSet;
private @Nullable String loginPath;
private @Nullable WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigPasswordField passwordField;
private @Nullable String payloadType;
private @Nullable WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigUsernameField usernameField;
public Builder() {}
public Builder(WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfig defaults) {
Objects.requireNonNull(defaults);
this.awsManagedRulesAcfpRuleSet = defaults.awsManagedRulesAcfpRuleSet;
this.awsManagedRulesAtpRuleSet = defaults.awsManagedRulesAtpRuleSet;
this.awsManagedRulesBotControlRuleSet = defaults.awsManagedRulesBotControlRuleSet;
this.loginPath = defaults.loginPath;
this.passwordField = defaults.passwordField;
this.payloadType = defaults.payloadType;
this.usernameField = defaults.usernameField;
}
@CustomType.Setter
public Builder awsManagedRulesAcfpRuleSet(@Nullable WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesAcfpRuleSet awsManagedRulesAcfpRuleSet) {
this.awsManagedRulesAcfpRuleSet = awsManagedRulesAcfpRuleSet;
return this;
}
@CustomType.Setter
public Builder awsManagedRulesAtpRuleSet(@Nullable WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesAtpRuleSet awsManagedRulesAtpRuleSet) {
this.awsManagedRulesAtpRuleSet = awsManagedRulesAtpRuleSet;
return this;
}
@CustomType.Setter
public Builder awsManagedRulesBotControlRuleSet(@Nullable WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigAwsManagedRulesBotControlRuleSet awsManagedRulesBotControlRuleSet) {
this.awsManagedRulesBotControlRuleSet = awsManagedRulesBotControlRuleSet;
return this;
}
@CustomType.Setter
public Builder loginPath(@Nullable String loginPath) {
this.loginPath = loginPath;
return this;
}
@CustomType.Setter
public Builder passwordField(@Nullable WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigPasswordField passwordField) {
this.passwordField = passwordField;
return this;
}
@CustomType.Setter
public Builder payloadType(@Nullable String payloadType) {
this.payloadType = payloadType;
return this;
}
@CustomType.Setter
public Builder usernameField(@Nullable WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfigUsernameField usernameField) {
this.usernameField = usernameField;
return this;
}
public WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfig build() {
final var _resultValue = new WebAclRuleStatementManagedRuleGroupStatementManagedRuleGroupConfig();
_resultValue.awsManagedRulesAcfpRuleSet = awsManagedRulesAcfpRuleSet;
_resultValue.awsManagedRulesAtpRuleSet = awsManagedRulesAtpRuleSet;
_resultValue.awsManagedRulesBotControlRuleSet = awsManagedRulesBotControlRuleSet;
_resultValue.loginPath = loginPath;
_resultValue.passwordField = passwordField;
_resultValue.payloadType = payloadType;
_resultValue.usernameField = usernameField;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy