com.pulumi.aws.wafv2.inputs.WebAclRuleStatementManagedRuleGroupStatementScopeDownStatementOrStatementArgs 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.inputs;
import com.pulumi.aws.wafv2.inputs.WebAclRuleStatementArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.List;
import java.util.Objects;
public final class WebAclRuleStatementManagedRuleGroupStatementScopeDownStatementOrStatementArgs extends com.pulumi.resources.ResourceArgs {
public static final WebAclRuleStatementManagedRuleGroupStatementScopeDownStatementOrStatementArgs Empty = new WebAclRuleStatementManagedRuleGroupStatementScopeDownStatementOrStatementArgs();
/**
* The statements to combine.
*
*/
@Import(name="statements", required=true)
private Output> statements;
/**
* @return The statements to combine.
*
*/
public Output> statements() {
return this.statements;
}
private WebAclRuleStatementManagedRuleGroupStatementScopeDownStatementOrStatementArgs() {}
private WebAclRuleStatementManagedRuleGroupStatementScopeDownStatementOrStatementArgs(WebAclRuleStatementManagedRuleGroupStatementScopeDownStatementOrStatementArgs $) {
this.statements = $.statements;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(WebAclRuleStatementManagedRuleGroupStatementScopeDownStatementOrStatementArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private WebAclRuleStatementManagedRuleGroupStatementScopeDownStatementOrStatementArgs $;
public Builder() {
$ = new WebAclRuleStatementManagedRuleGroupStatementScopeDownStatementOrStatementArgs();
}
public Builder(WebAclRuleStatementManagedRuleGroupStatementScopeDownStatementOrStatementArgs defaults) {
$ = new WebAclRuleStatementManagedRuleGroupStatementScopeDownStatementOrStatementArgs(Objects.requireNonNull(defaults));
}
/**
* @param statements The statements to combine.
*
* @return builder
*
*/
public Builder statements(Output> statements) {
$.statements = statements;
return this;
}
/**
* @param statements The statements to combine.
*
* @return builder
*
*/
public Builder statements(List statements) {
return statements(Output.of(statements));
}
/**
* @param statements The statements to combine.
*
* @return builder
*
*/
public Builder statements(WebAclRuleStatementArgs... statements) {
return statements(List.of(statements));
}
public WebAclRuleStatementManagedRuleGroupStatementScopeDownStatementOrStatementArgs build() {
if ($.statements == null) {
throw new MissingRequiredPropertyException("WebAclRuleStatementManagedRuleGroupStatementScopeDownStatementOrStatementArgs", "statements");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy