All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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>) {
        this.tags = Output.all(values)
    }

    /**
     * @param value List of users associated to this acl.
     */
    @JvmName("xptqchrubhixejym")
    public suspend fun userNames(`value`: Output>) {
        this.userNames = value
    }

    @JvmName("kiyheeaqwnfbvbmh")
    public suspend fun userNames(vararg values: Output) {
        this.userNames = Output.all(values.asList())
    }

    /**
     * @param values List of users associated to this acl.
     */
    @JvmName("psljyierxlpvsjgp")
    public suspend fun userNames(values: List>) {
        this.userNames = Output.all(values)
    }

    /**
     * @param value The name of the acl.
     */
    @JvmName("awqmqsmbnsdtwkto")
    public suspend fun aclName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.aclName = mapped
    }

    /**
     * @param value An array of key-value pairs to apply to this cluster.
     */
    @JvmName("tedvglnneyugtrfy")
    public suspend fun tags(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param argument An array of key-value pairs to apply to this cluster.
     */
    @JvmName("bafypndoklugmlad")
    public suspend fun tags(argument: List Unit>) {
        val toBeMapped = argument.toList().map { TagArgsBuilder().applySuspend { it() }.build() }
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param argument An array of key-value pairs to apply to this cluster.
     */
    @JvmName("miayfqhllbaumtqv")
    public suspend fun tags(vararg argument: suspend TagArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map { TagArgsBuilder().applySuspend { it() }.build() }
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param argument An array of key-value pairs to apply to this cluster.
     */
    @JvmName("rsqfxlsgnotoimwo")
    public suspend fun tags(argument: suspend TagArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(TagArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param values An array of key-value pairs to apply to this cluster.
     */
    @JvmName("vekgoonbqmeybyaa")
    public suspend fun tags(vararg values: TagArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param value List of users associated to this acl.
     */
    @JvmName("ptmxaqluhjeghadb")
    public suspend fun userNames(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.userNames = mapped
    }

    /**
     * @param values List of users associated to this acl.
     */
    @JvmName("urbtymxsjkmleyps")
    public suspend fun userNames(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.userNames = mapped
    }

    internal fun build(): AclArgs = AclArgs(
        aclName = aclName,
        tags = tags,
        userNames = userNames,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy