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

com.pulumi.azurenative.awsconnector.outputs.FileSystemConfigResponse Maven / Gradle / Ivy

There is a newer version: 2.82.0
Show 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.azurenative.awsconnector.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 FileSystemConfigResponse {
    /**
     * @return The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.
     * 
     */
    private @Nullable String arn;
    /**
     * @return The path where the function can access the file system, starting with ``/mnt/``.
     * 
     */
    private @Nullable String localMountPath;

    private FileSystemConfigResponse() {}
    /**
     * @return The Amazon Resource Name (ARN) of the Amazon EFS access point that provides access to the file system.
     * 
     */
    public Optional arn() {
        return Optional.ofNullable(this.arn);
    }
    /**
     * @return The path where the function can access the file system, starting with ``/mnt/``.
     * 
     */
    public Optional localMountPath() {
        return Optional.ofNullable(this.localMountPath);
    }

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

    public static Builder builder(FileSystemConfigResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String arn;
        private @Nullable String localMountPath;
        public Builder() {}
        public Builder(FileSystemConfigResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.arn = defaults.arn;
    	      this.localMountPath = defaults.localMountPath;
        }

        @CustomType.Setter
        public Builder arn(@Nullable String arn) {

            this.arn = arn;
            return this;
        }
        @CustomType.Setter
        public Builder localMountPath(@Nullable String localMountPath) {

            this.localMountPath = localMountPath;
            return this;
        }
        public FileSystemConfigResponse build() {
            final var _resultValue = new FileSystemConfigResponse();
            _resultValue.arn = arn;
            _resultValue.localMountPath = localMountPath;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy