com.pulumi.aws.wafv2.outputs.RuleGroupRuleStatementRateBasedStatementCustomKeyLabelNamespace 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 RuleGroupRuleStatementRateBasedStatementCustomKeyLabelNamespace {
/**
* @return The namespace to use for aggregation
*
*/
private String namespace;
private RuleGroupRuleStatementRateBasedStatementCustomKeyLabelNamespace() {}
/**
* @return The namespace to use for aggregation
*
*/
public String namespace() {
return this.namespace;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(RuleGroupRuleStatementRateBasedStatementCustomKeyLabelNamespace defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String namespace;
public Builder() {}
public Builder(RuleGroupRuleStatementRateBasedStatementCustomKeyLabelNamespace defaults) {
Objects.requireNonNull(defaults);
this.namespace = defaults.namespace;
}
@CustomType.Setter
public Builder namespace(String namespace) {
if (namespace == null) {
throw new MissingRequiredPropertyException("RuleGroupRuleStatementRateBasedStatementCustomKeyLabelNamespace", "namespace");
}
this.namespace = namespace;
return this;
}
public RuleGroupRuleStatementRateBasedStatementCustomKeyLabelNamespace build() {
final var _resultValue = new RuleGroupRuleStatementRateBasedStatementCustomKeyLabelNamespace();
_resultValue.namespace = namespace;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy