com.pulumi.azure.sentinel.outputs.AlertRuleScheduledSentinelEntityMapping Maven / Gradle / Ivy
// *** 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.azure.sentinel.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class AlertRuleScheduledSentinelEntityMapping {
/**
* @return The column name to be mapped to the identifier.
*
*/
private String columnName;
private AlertRuleScheduledSentinelEntityMapping() {}
/**
* @return The column name to be mapped to the identifier.
*
*/
public String columnName() {
return this.columnName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AlertRuleScheduledSentinelEntityMapping defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String columnName;
public Builder() {}
public Builder(AlertRuleScheduledSentinelEntityMapping defaults) {
Objects.requireNonNull(defaults);
this.columnName = defaults.columnName;
}
@CustomType.Setter
public Builder columnName(String columnName) {
if (columnName == null) {
throw new MissingRequiredPropertyException("AlertRuleScheduledSentinelEntityMapping", "columnName");
}
this.columnName = columnName;
return this;
}
public AlertRuleScheduledSentinelEntityMapping build() {
final var _resultValue = new AlertRuleScheduledSentinelEntityMapping();
_resultValue.columnName = columnName;
return _resultValue;
}
}
}