![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.cloudfront.kotlin.inputs.KeyGroupConfigArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.cloudfront.kotlin.inputs
import com.pulumi.awsnative.cloudfront.inputs.KeyGroupConfigArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property comment A comment to describe the key group. The comment cannot be longer than 128 characters.
* @property items A list of the identifiers of the public keys in the key group.
* @property name A name to identify the key group.
*/
public data class KeyGroupConfigArgs(
public val comment: Output? = null,
public val items: Output>,
public val name: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.cloudfront.inputs.KeyGroupConfigArgs =
com.pulumi.awsnative.cloudfront.inputs.KeyGroupConfigArgs.builder()
.comment(comment?.applyValue({ args0 -> args0 }))
.items(items.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.name(name.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [KeyGroupConfigArgs].
*/
@PulumiTagMarker
public class KeyGroupConfigArgsBuilder internal constructor() {
private var comment: Output? = null
private var items: Output>? = null
private var name: Output? = null
/**
* @param value A comment to describe the key group. The comment cannot be longer than 128 characters.
*/
@JvmName("aitmhgilrtovxhhn")
public suspend fun comment(`value`: Output) {
this.comment = value
}
/**
* @param value A list of the identifiers of the public keys in the key group.
*/
@JvmName("jmdqcycqyljtrmpn")
public suspend fun items(`value`: Output>) {
this.items = value
}
@JvmName("rymxgpdikhovoigp")
public suspend fun items(vararg values: Output) {
this.items = Output.all(values.asList())
}
/**
* @param values A list of the identifiers of the public keys in the key group.
*/
@JvmName("pabtrxnqdfbwivui")
public suspend fun items(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy