com.pulumi.aws.sagemaker.kotlin.inputs.DomainDefaultUserSettingsRStudioServerProAppSettingsArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.sagemaker.kotlin.inputs
import com.pulumi.aws.sagemaker.inputs.DomainDefaultUserSettingsRStudioServerProAppSettingsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property accessStatus Indicates whether the current user has access to the RStudioServerPro app. Valid values are `ENABLED` and `DISABLED`.
* @property 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`.
*/
public data class DomainDefaultUserSettingsRStudioServerProAppSettingsArgs(
public val accessStatus: Output? = null,
public val userGroup: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.sagemaker.inputs.DomainDefaultUserSettingsRStudioServerProAppSettingsArgs =
com.pulumi.aws.sagemaker.inputs.DomainDefaultUserSettingsRStudioServerProAppSettingsArgs.builder()
.accessStatus(accessStatus?.applyValue({ args0 -> args0 }))
.userGroup(userGroup?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DomainDefaultUserSettingsRStudioServerProAppSettingsArgs].
*/
@PulumiTagMarker
public class DomainDefaultUserSettingsRStudioServerProAppSettingsArgsBuilder internal constructor() {
private var accessStatus: Output? = null
private var userGroup: Output? = null
/**
* @param value Indicates whether the current user has access to the RStudioServerPro app. Valid values are `ENABLED` and `DISABLED`.
*/
@JvmName("ableuljtinjlbkbr")
public suspend fun accessStatus(`value`: Output) {
this.accessStatus = value
}
/**
* @param value 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`.
*/
@JvmName("obhfgjdfwxbocanl")
public suspend fun userGroup(`value`: Output) {
this.userGroup = value
}
/**
* @param value Indicates whether the current user has access to the RStudioServerPro app. Valid values are `ENABLED` and `DISABLED`.
*/
@JvmName("nvumqjkvcdhrxqof")
public suspend fun accessStatus(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.accessStatus = mapped
}
/**
* @param value 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`.
*/
@JvmName("mopfdtmhfeinwfma")
public suspend fun userGroup(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.userGroup = mapped
}
internal fun build(): DomainDefaultUserSettingsRStudioServerProAppSettingsArgs =
DomainDefaultUserSettingsRStudioServerProAppSettingsArgs(
accessStatus = accessStatus,
userGroup = userGroup,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy