![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.memorydb.kotlin.AclArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.memorydb.kotlin
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.awsnative.memorydb.AclArgs.builder
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::MemoryDB::ACL
* @property aclName The name of the acl.
* @property tags An array of key-value pairs to apply to this cluster.
* @property userNames List of users associated to this acl.
*/
public data class AclArgs(
public val aclName: Output? = null,
public val tags: Output>? = null,
public val userNames: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.memorydb.AclArgs =
com.pulumi.awsnative.memorydb.AclArgs.builder()
.aclName(aclName?.applyValue({ args0 -> args0 }))
.tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.userNames(userNames?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [AclArgs].
*/
@PulumiTagMarker
public class AclArgsBuilder internal constructor() {
private var aclName: Output? = null
private var tags: Output>? = null
private var userNames: Output>? = null
/**
* @param value The name of the acl.
*/
@JvmName("omnycxhiolrlhuew")
public suspend fun aclName(`value`: Output) {
this.aclName = value
}
/**
* @param value An array of key-value pairs to apply to this cluster.
*/
@JvmName("xbgtxifkdcuqmffq")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("vinfnkqcsmsaisud")
public suspend fun tags(vararg values: Output) {
this.tags = Output.all(values.asList())
}
/**
* @param values An array of key-value pairs to apply to this cluster.
*/
@JvmName("avipftgsujyhmvuk")
public suspend fun tags(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy