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

com.pulumi.aws.sagemaker.inputs.AppImageConfigCodeEditorAppImageConfigFileSystemConfigArgs 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.sagemaker.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final AppImageConfigCodeEditorAppImageConfigFileSystemConfigArgs Empty = new AppImageConfigCodeEditorAppImageConfigFileSystemConfigArgs();

    /**
     * The default POSIX group ID (GID). If not specified, defaults to `100`. Valid values are `0` and `100`.
     * 
     */
    @Import(name="defaultGid")
    private @Nullable Output defaultGid;

    /**
     * @return The default POSIX group ID (GID). If not specified, defaults to `100`. Valid values are `0` and `100`.
     * 
     */
    public Optional> defaultGid() {
        return Optional.ofNullable(this.defaultGid);
    }

    /**
     * The default POSIX user ID (UID). If not specified, defaults to `1000`. Valid values are `0` and `1000`.
     * 
     */
    @Import(name="defaultUid")
    private @Nullable Output defaultUid;

    /**
     * @return The default POSIX user ID (UID). If not specified, defaults to `1000`. Valid values are `0` and `1000`.
     * 
     */
    public Optional> defaultUid() {
        return Optional.ofNullable(this.defaultUid);
    }

    /**
     * The path within the image to mount the user's EFS home directory. The directory should be empty. If not specified, defaults to `/home/sagemaker-user`.
     * 
     * > **Note:** When specifying `default_gid` and `default_uid`, Valid value pairs are [`0`, `0`] and [`100`, `1000`].
     * 
     */
    @Import(name="mountPath")
    private @Nullable Output mountPath;

    /**
     * @return The path within the image to mount the user's EFS home directory. The directory should be empty. If not specified, defaults to `/home/sagemaker-user`.
     * 
     * > **Note:** When specifying `default_gid` and `default_uid`, Valid value pairs are [`0`, `0`] and [`100`, `1000`].
     * 
     */
    public Optional> mountPath() {
        return Optional.ofNullable(this.mountPath);
    }

    private AppImageConfigCodeEditorAppImageConfigFileSystemConfigArgs() {}

    private AppImageConfigCodeEditorAppImageConfigFileSystemConfigArgs(AppImageConfigCodeEditorAppImageConfigFileSystemConfigArgs $) {
        this.defaultGid = $.defaultGid;
        this.defaultUid = $.defaultUid;
        this.mountPath = $.mountPath;
    }

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

    public static final class Builder {
        private AppImageConfigCodeEditorAppImageConfigFileSystemConfigArgs $;

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

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

        /**
         * @param defaultGid The default POSIX group ID (GID). If not specified, defaults to `100`. Valid values are `0` and `100`.
         * 
         * @return builder
         * 
         */
        public Builder defaultGid(@Nullable Output defaultGid) {
            $.defaultGid = defaultGid;
            return this;
        }

        /**
         * @param defaultGid The default POSIX group ID (GID). If not specified, defaults to `100`. Valid values are `0` and `100`.
         * 
         * @return builder
         * 
         */
        public Builder defaultGid(Integer defaultGid) {
            return defaultGid(Output.of(defaultGid));
        }

        /**
         * @param defaultUid The default POSIX user ID (UID). If not specified, defaults to `1000`. Valid values are `0` and `1000`.
         * 
         * @return builder
         * 
         */
        public Builder defaultUid(@Nullable Output defaultUid) {
            $.defaultUid = defaultUid;
            return this;
        }

        /**
         * @param defaultUid The default POSIX user ID (UID). If not specified, defaults to `1000`. Valid values are `0` and `1000`.
         * 
         * @return builder
         * 
         */
        public Builder defaultUid(Integer defaultUid) {
            return defaultUid(Output.of(defaultUid));
        }

        /**
         * @param mountPath The path within the image to mount the user's EFS home directory. The directory should be empty. If not specified, defaults to `/home/sagemaker-user`.
         * 
         * > **Note:** When specifying `default_gid` and `default_uid`, Valid value pairs are [`0`, `0`] and [`100`, `1000`].
         * 
         * @return builder
         * 
         */
        public Builder mountPath(@Nullable Output mountPath) {
            $.mountPath = mountPath;
            return this;
        }

        /**
         * @param mountPath The path within the image to mount the user's EFS home directory. The directory should be empty. If not specified, defaults to `/home/sagemaker-user`.
         * 
         * > **Note:** When specifying `default_gid` and `default_uid`, Valid value pairs are [`0`, `0`] and [`100`, `1000`].
         * 
         * @return builder
         * 
         */
        public Builder mountPath(String mountPath) {
            return mountPath(Output.of(mountPath));
        }

        public AppImageConfigCodeEditorAppImageConfigFileSystemConfigArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy