
com.pulumi.aws.sagemaker.outputs.DomainDefaultUserSettingsRStudioServerProAppSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** 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.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 DomainDefaultUserSettingsRStudioServerProAppSettings {
/**
* @return Indicates whether the current user has access to the RStudioServerPro app. Valid values are `ENABLED` and `DISABLED`.
*
*/
private @Nullable String accessStatus;
/**
* @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`.
*
*/
private @Nullable String userGroup;
private DomainDefaultUserSettingsRStudioServerProAppSettings() {}
/**
* @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);
}
/**
* @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);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(DomainDefaultUserSettingsRStudioServerProAppSettings defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String accessStatus;
private @Nullable String userGroup;
public Builder() {}
public Builder(DomainDefaultUserSettingsRStudioServerProAppSettings defaults) {
Objects.requireNonNull(defaults);
this.accessStatus = defaults.accessStatus;
this.userGroup = defaults.userGroup;
}
@CustomType.Setter
public Builder accessStatus(@Nullable String accessStatus) {
this.accessStatus = accessStatus;
return this;
}
@CustomType.Setter
public Builder userGroup(@Nullable String userGroup) {
this.userGroup = userGroup;
return this;
}
public DomainDefaultUserSettingsRStudioServerProAppSettings build() {
final var _resultValue = new DomainDefaultUserSettingsRStudioServerProAppSettings();
_resultValue.accessStatus = accessStatus;
_resultValue.userGroup = userGroup;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy