
com.pulumi.aws.fsx.outputs.FileCacheLustreConfigurationLogConfiguration 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.aws.fsx.outputs;
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 FileCacheLustreConfigurationLogConfiguration {
private @Nullable String destination;
private @Nullable String level;
private FileCacheLustreConfigurationLogConfiguration() {}
public Optional destination() {
return Optional.ofNullable(this.destination);
}
public Optional level() {
return Optional.ofNullable(this.level);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(FileCacheLustreConfigurationLogConfiguration defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String destination;
private @Nullable String level;
public Builder() {}
public Builder(FileCacheLustreConfigurationLogConfiguration defaults) {
Objects.requireNonNull(defaults);
this.destination = defaults.destination;
this.level = defaults.level;
}
@CustomType.Setter
public Builder destination(@Nullable String destination) {
this.destination = destination;
return this;
}
@CustomType.Setter
public Builder level(@Nullable String level) {
this.level = level;
return this;
}
public FileCacheLustreConfigurationLogConfiguration build() {
final var _resultValue = new FileCacheLustreConfigurationLogConfiguration();
_resultValue.destination = destination;
_resultValue.level = level;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy