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

com.pulumi.awsnative.ivs.kotlin.PlaybackKeyPairArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 0.122.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.ivs.kotlin

import com.pulumi.awsnative.ivs.PlaybackKeyPairArgs.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::IVS::PlaybackKeyPair
 * ## Example Usage
 * ### Example
 * No Java example available.
 * ### Example
 * No Java example available.
 * @property name An arbitrary string (a nickname) assigned to a playback key pair that helps the customer identify that resource. The value does not need to be unique.
 * @property publicKeyMaterial The public portion of a customer-generated key pair.
 * @property tags A list of key-value pairs that contain metadata for the asset model.
 */
public data class PlaybackKeyPairArgs(
    public val name: Output? = null,
    public val publicKeyMaterial: Output? = null,
    public val tags: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.ivs.PlaybackKeyPairArgs =
        com.pulumi.awsnative.ivs.PlaybackKeyPairArgs.builder()
            .name(name?.applyValue({ args0 -> args0 }))
            .publicKeyMaterial(publicKeyMaterial?.applyValue({ args0 -> args0 }))
            .tags(
                tags?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            ).build()
}

/**
 * Builder for [PlaybackKeyPairArgs].
 */
@PulumiTagMarker
public class PlaybackKeyPairArgsBuilder internal constructor() {
    private var name: Output? = null

    private var publicKeyMaterial: Output? = null

    private var tags: Output>? = null

    /**
     * @param value An arbitrary string (a nickname) assigned to a playback key pair that helps the customer identify that resource. The value does not need to be unique.
     */
    @JvmName("ameudqujwhwveody")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The public portion of a customer-generated key pair.
     */
    @JvmName("qcoufvnafdiewqjx")
    public suspend fun publicKeyMaterial(`value`: Output) {
        this.publicKeyMaterial = value
    }

    /**
     * @param value A list of key-value pairs that contain metadata for the asset model.
     */
    @JvmName("lsmaeiimqfdknxfk")
    public suspend fun tags(`value`: Output>) {
        this.tags = value
    }

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

    /**
     * @param values A list of key-value pairs that contain metadata for the asset model.
     */
    @JvmName("jexbfhjmlonanwas")
    public suspend fun tags(values: List>) {
        this.tags = Output.all(values)
    }

    /**
     * @param value An arbitrary string (a nickname) assigned to a playback key pair that helps the customer identify that resource. The value does not need to be unique.
     */
    @JvmName("rncuqtmjvdmynmku")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value The public portion of a customer-generated key pair.
     */
    @JvmName("jprllgvgnbtewkel")
    public suspend fun publicKeyMaterial(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.publicKeyMaterial = mapped
    }

    /**
     * @param value A list of key-value pairs that contain metadata for the asset model.
     */
    @JvmName("jwsfhvvpwfjjiily")
    public suspend fun tags(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param argument A list of key-value pairs that contain metadata for the asset model.
     */
    @JvmName("hkvqpmmgtubkrjie")
    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 A list of key-value pairs that contain metadata for the asset model.
     */
    @JvmName("tejtoyderptuwxgy")
    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 A list of key-value pairs that contain metadata for the asset model.
     */
    @JvmName("bqtvjrpktyupfwsn")
    public suspend fun tags(argument: suspend TagArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(TagArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param values A list of key-value pairs that contain metadata for the asset model.
     */
    @JvmName("uonmimrvwbanulng")
    public suspend fun tags(vararg values: TagArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    internal fun build(): PlaybackKeyPairArgs = PlaybackKeyPairArgs(
        name = name,
        publicKeyMaterial = publicKeyMaterial,
        tags = tags,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy