com.pulumi.awsnative.datazone.kotlin.GroupProfileArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.datazone.kotlin
import com.pulumi.awsnative.datazone.GroupProfileArgs.builder
import com.pulumi.awsnative.datazone.kotlin.enums.GroupProfileStatus
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
/**
* Group profiles represent groups of Amazon DataZone users. Groups can be manually created, or mapped to Active Directory groups of enterprise customers. In Amazon DataZone, groups serve two purposes. First, a group can map to a team of users in the organizational chart, and thus reduce the administrative work of a Amazon DataZone project owner when there are new employees joining or leaving a team. Second, corporate administrators use Active Directory groups to manage and update user statuses and so Amazon DataZone domain administrators can use these group memberships to implement Amazon DataZone domain policies.
* @property domainIdentifier The identifier of the Amazon DataZone domain in which the group profile would be created.
* @property groupIdentifier The ID of the group.
* @property status The status of a group profile.
*/
public data class GroupProfileArgs(
public val domainIdentifier: Output? = null,
public val groupIdentifier: Output? = null,
public val status: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.datazone.GroupProfileArgs =
com.pulumi.awsnative.datazone.GroupProfileArgs.builder()
.domainIdentifier(domainIdentifier?.applyValue({ args0 -> args0 }))
.groupIdentifier(groupIdentifier?.applyValue({ args0 -> args0 }))
.status(status?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [GroupProfileArgs].
*/
@PulumiTagMarker
public class GroupProfileArgsBuilder internal constructor() {
private var domainIdentifier: Output? = null
private var groupIdentifier: Output? = null
private var status: Output? = null
/**
* @param value The identifier of the Amazon DataZone domain in which the group profile would be created.
*/
@JvmName("vjitquxkxgywserr")
public suspend fun domainIdentifier(`value`: Output) {
this.domainIdentifier = value
}
/**
* @param value The ID of the group.
*/
@JvmName("kltppeopcsgotagx")
public suspend fun groupIdentifier(`value`: Output) {
this.groupIdentifier = value
}
/**
* @param value The status of a group profile.
*/
@JvmName("bbnpyhdevuhvelkb")
public suspend fun status(`value`: Output) {
this.status = value
}
/**
* @param value The identifier of the Amazon DataZone domain in which the group profile would be created.
*/
@JvmName("ibwrldialpyqnfpq")
public suspend fun domainIdentifier(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.domainIdentifier = mapped
}
/**
* @param value The ID of the group.
*/
@JvmName("uoiymvgfioxlmbik")
public suspend fun groupIdentifier(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.groupIdentifier = mapped
}
/**
* @param value The status of a group profile.
*/
@JvmName("tagiqqriferimcti")
public suspend fun status(`value`: GroupProfileStatus?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.status = mapped
}
internal fun build(): GroupProfileArgs = GroupProfileArgs(
domainIdentifier = domainIdentifier,
groupIdentifier = groupIdentifier,
status = status,
)
}