com.pulumi.aws.batch.outputs.GetJobDefinitionNodePropertyNodeRangePropertyContainerLinuxParameterTmpf 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.
The newest version!
// *** 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.batch.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.List;
import java.util.Objects;
@CustomType
public final class GetJobDefinitionNodePropertyNodeRangePropertyContainerLinuxParameterTmpf {
/**
* @return The absolute file path in the container where the tmpfs volume is mounted.
*
*/
private String containerPath;
/**
* @return The list of tmpfs volume mount options.
*
*/
private List mountOptions;
/**
* @return The size (in MiB) of the tmpfs volume.
*
*/
private Integer size;
private GetJobDefinitionNodePropertyNodeRangePropertyContainerLinuxParameterTmpf() {}
/**
* @return The absolute file path in the container where the tmpfs volume is mounted.
*
*/
public String containerPath() {
return this.containerPath;
}
/**
* @return The list of tmpfs volume mount options.
*
*/
public List mountOptions() {
return this.mountOptions;
}
/**
* @return The size (in MiB) of the tmpfs volume.
*
*/
public Integer size() {
return this.size;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetJobDefinitionNodePropertyNodeRangePropertyContainerLinuxParameterTmpf defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String containerPath;
private List mountOptions;
private Integer size;
public Builder() {}
public Builder(GetJobDefinitionNodePropertyNodeRangePropertyContainerLinuxParameterTmpf defaults) {
Objects.requireNonNull(defaults);
this.containerPath = defaults.containerPath;
this.mountOptions = defaults.mountOptions;
this.size = defaults.size;
}
@CustomType.Setter
public Builder containerPath(String containerPath) {
if (containerPath == null) {
throw new MissingRequiredPropertyException("GetJobDefinitionNodePropertyNodeRangePropertyContainerLinuxParameterTmpf", "containerPath");
}
this.containerPath = containerPath;
return this;
}
@CustomType.Setter
public Builder mountOptions(List mountOptions) {
if (mountOptions == null) {
throw new MissingRequiredPropertyException("GetJobDefinitionNodePropertyNodeRangePropertyContainerLinuxParameterTmpf", "mountOptions");
}
this.mountOptions = mountOptions;
return this;
}
public Builder mountOptions(String... mountOptions) {
return mountOptions(List.of(mountOptions));
}
@CustomType.Setter
public Builder size(Integer size) {
if (size == null) {
throw new MissingRequiredPropertyException("GetJobDefinitionNodePropertyNodeRangePropertyContainerLinuxParameterTmpf", "size");
}
this.size = size;
return this;
}
public GetJobDefinitionNodePropertyNodeRangePropertyContainerLinuxParameterTmpf build() {
final var _resultValue = new GetJobDefinitionNodePropertyNodeRangePropertyContainerLinuxParameterTmpf();
_resultValue.containerPath = containerPath;
_resultValue.mountOptions = mountOptions;
_resultValue.size = size;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy