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

com.pulumi.aws.sagemaker.inputs.UserProfileUserSettingsRStudioServerProAppSettingsArgs Maven / Gradle / Ivy

// *** 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.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final UserProfileUserSettingsRStudioServerProAppSettingsArgs Empty = new UserProfileUserSettingsRStudioServerProAppSettingsArgs();

    /**
     * Indicates whether the current user has access to the RStudioServerPro app. Valid values are `ENABLED` and `DISABLED`.
     * 
     */
    @Import(name="accessStatus")
    private @Nullable Output accessStatus;

    /**
     * @return Indicates whether the current user has access to the RStudioServerPro app. Valid values are `ENABLED` and `DISABLED`.
     * 
     */
    public Optional> accessStatus() {
        return Optional.ofNullable(this.accessStatus);
    }

    /**
     * The level of permissions that the user has within the RStudioServerPro app. This value defaults to `R_STUDIO_USER`. The `R_STUDIO_ADMIN` value allows the user access to the RStudio Administrative Dashboard. Valid values are `R_STUDIO_USER` and `R_STUDIO_ADMIN`.
     * 
     */
    @Import(name="userGroup")
    private @Nullable Output userGroup;

    /**
     * @return The level of permissions that the user has within the RStudioServerPro app. This value defaults to `R_STUDIO_USER`. The `R_STUDIO_ADMIN` value allows the user access to the RStudio Administrative Dashboard. Valid values are `R_STUDIO_USER` and `R_STUDIO_ADMIN`.
     * 
     */
    public Optional> userGroup() {
        return Optional.ofNullable(this.userGroup);
    }

    private UserProfileUserSettingsRStudioServerProAppSettingsArgs() {}

    private UserProfileUserSettingsRStudioServerProAppSettingsArgs(UserProfileUserSettingsRStudioServerProAppSettingsArgs $) {
        this.accessStatus = $.accessStatus;
        this.userGroup = $.userGroup;
    }

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

    public static final class Builder {
        private UserProfileUserSettingsRStudioServerProAppSettingsArgs $;

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

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

        /**
         * @param accessStatus Indicates whether the current user has access to the RStudioServerPro app. Valid values are `ENABLED` and `DISABLED`.
         * 
         * @return builder
         * 
         */
        public Builder accessStatus(@Nullable Output accessStatus) {
            $.accessStatus = accessStatus;
            return this;
        }

        /**
         * @param accessStatus Indicates whether the current user has access to the RStudioServerPro app. Valid values are `ENABLED` and `DISABLED`.
         * 
         * @return builder
         * 
         */
        public Builder accessStatus(String accessStatus) {
            return accessStatus(Output.of(accessStatus));
        }

        /**
         * @param userGroup The level of permissions that the user has within the RStudioServerPro app. This value defaults to `R_STUDIO_USER`. The `R_STUDIO_ADMIN` value allows the user access to the RStudio Administrative Dashboard. Valid values are `R_STUDIO_USER` and `R_STUDIO_ADMIN`.
         * 
         * @return builder
         * 
         */
        public Builder userGroup(@Nullable Output userGroup) {
            $.userGroup = userGroup;
            return this;
        }

        /**
         * @param userGroup The level of permissions that the user has within the RStudioServerPro app. This value defaults to `R_STUDIO_USER`. The `R_STUDIO_ADMIN` value allows the user access to the RStudio Administrative Dashboard. Valid values are `R_STUDIO_USER` and `R_STUDIO_ADMIN`.
         * 
         * @return builder
         * 
         */
        public Builder userGroup(String userGroup) {
            return userGroup(Output.of(userGroup));
        }

        public UserProfileUserSettingsRStudioServerProAppSettingsArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy