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

com.pulumi.aws.datasync.inputs.FsxOpenZfsFileSystemProtocolNfsArgs Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

There is a newer version: 6.60.0-alpha.1731982519
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.aws.datasync.inputs;

import com.pulumi.aws.datasync.inputs.FsxOpenZfsFileSystemProtocolNfsMountOptionsArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.util.Objects;


public final class FsxOpenZfsFileSystemProtocolNfsArgs extends com.pulumi.resources.ResourceArgs {

    public static final FsxOpenZfsFileSystemProtocolNfsArgs Empty = new FsxOpenZfsFileSystemProtocolNfsArgs();

    /**
     * Represents the mount options that are available for DataSync to access an NFS location. See below.
     * 
     */
    @Import(name="mountOptions", required=true)
    private Output mountOptions;

    /**
     * @return Represents the mount options that are available for DataSync to access an NFS location. See below.
     * 
     */
    public Output mountOptions() {
        return this.mountOptions;
    }

    private FsxOpenZfsFileSystemProtocolNfsArgs() {}

    private FsxOpenZfsFileSystemProtocolNfsArgs(FsxOpenZfsFileSystemProtocolNfsArgs $) {
        this.mountOptions = $.mountOptions;
    }

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

    public static final class Builder {
        private FsxOpenZfsFileSystemProtocolNfsArgs $;

        public Builder() {
            $ = new FsxOpenZfsFileSystemProtocolNfsArgs();
        }

        public Builder(FsxOpenZfsFileSystemProtocolNfsArgs defaults) {
            $ = new FsxOpenZfsFileSystemProtocolNfsArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param mountOptions Represents the mount options that are available for DataSync to access an NFS location. See below.
         * 
         * @return builder
         * 
         */
        public Builder mountOptions(Output mountOptions) {
            $.mountOptions = mountOptions;
            return this;
        }

        /**
         * @param mountOptions Represents the mount options that are available for DataSync to access an NFS location. See below.
         * 
         * @return builder
         * 
         */
        public Builder mountOptions(FsxOpenZfsFileSystemProtocolNfsMountOptionsArgs mountOptions) {
            return mountOptions(Output.of(mountOptions));
        }

        public FsxOpenZfsFileSystemProtocolNfsArgs build() {
            if ($.mountOptions == null) {
                throw new MissingRequiredPropertyException("FsxOpenZfsFileSystemProtocolNfsArgs", "mountOptions");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy