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

com.pulumi.awsnative.ivs.kotlin.PlaybackKeyPair.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: 1.11.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.ivs.kotlin

import com.pulumi.awsnative.kotlin.outputs.Tag
import com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List

/**
 * Builder for [PlaybackKeyPair].
 */
@PulumiTagMarker
public class PlaybackKeyPairResourceBuilder internal constructor() {
    public var name: String? = null

    public var args: PlaybackKeyPairArgs = PlaybackKeyPairArgs()

    public var opts: CustomResourceOptions = CustomResourceOptions()

    /**
     * @param name The _unique_ name of the resulting resource.
     */
    public fun name(`value`: String) {
        this.name = value
    }

    /**
     * @param block The arguments to use to populate this resource's properties.
     */
    public suspend fun args(block: suspend PlaybackKeyPairArgsBuilder.() -> Unit) {
        val builder = PlaybackKeyPairArgsBuilder()
        block(builder)
        this.args = builder.build()
    }

    /**
     * @param block A bag of options that control this resource's behavior.
     */
    public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
        this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
    }

    internal fun build(): PlaybackKeyPair {
        val builtJavaResource = com.pulumi.awsnative.ivs.PlaybackKeyPair(
            this.name,
            this.args.toJava(),
            this.opts.toJava(),
        )
        return PlaybackKeyPair(builtJavaResource)
    }
}

/**
 * Resource Type definition for AWS::IVS::PlaybackKeyPair
 * ## Example Usage
 * ### Example
 * No Java example available.
 * ### Example
 * No Java example available.
 */
public class PlaybackKeyPair internal constructor(
    override val javaResource: com.pulumi.awsnative.ivs.PlaybackKeyPair,
) : KotlinCustomResource(javaResource, PlaybackKeyPairMapper) {
    /**
     * Key-pair identifier.
     */
    public val arn: Output
        get() = javaResource.arn().applyValue({ args0 -> args0 })

    /**
     * Key-pair identifier.
     */
    public val fingerprint: Output
        get() = javaResource.fingerprint().applyValue({ args0 -> args0 })

    /**
     * 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.
     */
    public val name: Output?
        get() = javaResource.name().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })

    /**
     * The public portion of a customer-generated key pair.
     */
    public val publicKeyMaterial: Output?
        get() = javaResource.publicKeyMaterial().applyValue({ args0 ->
            args0.map({ args0 ->
                args0
            }).orElse(null)
        })

    /**
     * A list of key-value pairs that contain metadata for the asset model.
     */
    public val tags: Output>?
        get() = javaResource.tags().applyValue({ args0 ->
            args0.map({ args0 ->
                args0.map({ args0 ->
                    args0.let({ args0 -> toKotlin(args0) })
                })
            }).orElse(null)
        })
}

public object PlaybackKeyPairMapper : ResourceMapper {
    override fun supportsMappingOfType(javaResource: Resource): Boolean =
        com.pulumi.awsnative.ivs.PlaybackKeyPair::class == javaResource::class

    override fun map(javaResource: Resource): PlaybackKeyPair = PlaybackKeyPair(
        javaResource as
            com.pulumi.awsnative.ivs.PlaybackKeyPair,
    )
}

/**
 * @see [PlaybackKeyPair].
 * @param name The _unique_ name of the resulting resource.
 * @param block Builder for [PlaybackKeyPair].
 */
public suspend fun playbackKeyPair(
    name: String,
    block: suspend PlaybackKeyPairResourceBuilder.() -> Unit,
): PlaybackKeyPair {
    val builder = PlaybackKeyPairResourceBuilder()
    builder.name(name)
    block(builder)
    return builder.build()
}

/**
 * @see [PlaybackKeyPair].
 * @param name The _unique_ name of the resulting resource.
 */
public fun playbackKeyPair(name: String): PlaybackKeyPair {
    val builder = PlaybackKeyPairResourceBuilder()
    builder.name(name)
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy