![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.ivs.kotlin.PublicKeyArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.ivs.kotlin
import com.pulumi.awsnative.ivs.PublicKeyArgs.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::PublicKey
* @property name Name of the public key to be imported. 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 PublicKeyArgs(
public val name: Output? = null,
public val publicKeyMaterial: Output? = null,
public val tags: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.ivs.PublicKeyArgs =
com.pulumi.awsnative.ivs.PublicKeyArgs.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 [PublicKeyArgs].
*/
@PulumiTagMarker
public class PublicKeyArgsBuilder internal constructor() {
private var name: Output? = null
private var publicKeyMaterial: Output? = null
private var tags: Output>? = null
/**
* @param value Name of the public key to be imported. The value does not need to be unique.
*/
@JvmName("milyiqtvkkpwabxl")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The public portion of a customer-generated key pair.
*/
@JvmName("fdtrxegnaudciike")
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("tlpylgammrjyjpxm")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("udskhfxertsbmtdg")
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("cmcmmsabxehdsejk")
public suspend fun tags(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy