All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.batch.outputs.JobDefinitionEksPropertiesPodPropertiesVolumeHostPath Maven / Gradle / Ivy

Go to download

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.String;
import java.util.Objects;

@CustomType
public final class JobDefinitionEksPropertiesPodPropertiesVolumeHostPath {
    /**
     * @return Path of the file or directory on the host to mount into containers on the pod.
     * 
     */
    private String path;

    private JobDefinitionEksPropertiesPodPropertiesVolumeHostPath() {}
    /**
     * @return Path of the file or directory on the host to mount into containers on the pod.
     * 
     */
    public String path() {
        return this.path;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(JobDefinitionEksPropertiesPodPropertiesVolumeHostPath defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String path;
        public Builder() {}
        public Builder(JobDefinitionEksPropertiesPodPropertiesVolumeHostPath defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.path = defaults.path;
        }

        @CustomType.Setter
        public Builder path(String path) {
            if (path == null) {
              throw new MissingRequiredPropertyException("JobDefinitionEksPropertiesPodPropertiesVolumeHostPath", "path");
            }
            this.path = path;
            return this;
        }
        public JobDefinitionEksPropertiesPodPropertiesVolumeHostPath build() {
            final var _resultValue = new JobDefinitionEksPropertiesPodPropertiesVolumeHostPath();
            _resultValue.path = path;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy