![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.connect.kotlin.UserHierarchyGroupArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.connect.kotlin
import com.pulumi.awsnative.connect.UserHierarchyGroupArgs.builder
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Resource Type definition for AWS::Connect::UserHierarchyGroup
* @property instanceArn The identifier of the Amazon Connect instance.
* @property name The name of the user hierarchy group.
* @property parentGroupArn The Amazon Resource Name (ARN) for the parent user hierarchy group.
* @property tags One or more tags.
*/
public data class UserHierarchyGroupArgs(
public val instanceArn: Output? = null,
public val name: Output? = null,
public val parentGroupArn: Output? = null,
public val tags: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.connect.UserHierarchyGroupArgs =
com.pulumi.awsnative.connect.UserHierarchyGroupArgs.builder()
.instanceArn(instanceArn?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.parentGroupArn(parentGroupArn?.applyValue({ args0 -> args0 }))
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [UserHierarchyGroupArgs].
*/
@PulumiTagMarker
public class UserHierarchyGroupArgsBuilder internal constructor() {
private var instanceArn: Output? = null
private var name: Output? = null
private var parentGroupArn: Output? = null
private var tags: Output>? = null
/**
* @param value The identifier of the Amazon Connect instance.
*/
@JvmName("dlurghtegcalamjl")
public suspend fun instanceArn(`value`: Output) {
this.instanceArn = value
}
/**
* @param value The name of the user hierarchy group.
*/
@JvmName("todtidsujspufboi")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The Amazon Resource Name (ARN) for the parent user hierarchy group.
*/
@JvmName("kecogorfrpvaddvf")
public suspend fun parentGroupArn(`value`: Output) {
this.parentGroupArn = value
}
/**
* @param value One or more tags.
*/
@JvmName("gqtjuislylthjisc")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("hmubecgshjhscync")
public suspend fun tags(vararg values: Output) {
this.tags = Output.all(values.asList())
}
/**
* @param values One or more tags.
*/
@JvmName("rfvprpnmwbntciwg")
public suspend fun tags(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy