com.pulumi.aws.securityhub.outputs.AutomationRuleCriteriaAwsAccountName 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.securityhub.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class AutomationRuleCriteriaAwsAccountName {
private String comparison;
private String value;
private AutomationRuleCriteriaAwsAccountName() {}
public String comparison() {
return this.comparison;
}
public String value() {
return this.value;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AutomationRuleCriteriaAwsAccountName defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String comparison;
private String value;
public Builder() {}
public Builder(AutomationRuleCriteriaAwsAccountName defaults) {
Objects.requireNonNull(defaults);
this.comparison = defaults.comparison;
this.value = defaults.value;
}
@CustomType.Setter
public Builder comparison(String comparison) {
if (comparison == null) {
throw new MissingRequiredPropertyException("AutomationRuleCriteriaAwsAccountName", "comparison");
}
this.comparison = comparison;
return this;
}
@CustomType.Setter
public Builder value(String value) {
if (value == null) {
throw new MissingRequiredPropertyException("AutomationRuleCriteriaAwsAccountName", "value");
}
this.value = value;
return this;
}
public AutomationRuleCriteriaAwsAccountName build() {
final var _resultValue = new AutomationRuleCriteriaAwsAccountName();
_resultValue.comparison = comparison;
_resultValue.value = value;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy