com.pulumi.aws.appstream.kotlin.outputs.StackUserSetting.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.appstream.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property action Action that is enabled or disabled.
* Valid values are `CLIPBOARD_COPY_FROM_LOCAL_DEVICE`, `CLIPBOARD_COPY_TO_LOCAL_DEVICE`, `FILE_UPLOAD`, `FILE_DOWNLOAD`, `PRINTING_TO_LOCAL_DEVICE`, `DOMAIN_PASSWORD_SIGNIN`, or `DOMAIN_SMART_CARD_SIGNIN`.
* @property permission Whether the action is enabled or disabled.
* Valid values are `ENABLED` or `DISABLED`.
*/
public data class StackUserSetting(
public val action: String,
public val permission: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.appstream.outputs.StackUserSetting): StackUserSetting = StackUserSetting(
action = javaType.action(),
permission = javaType.permission(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy