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

com.pulumi.aws.verifiedaccess.kotlin.inputs.GroupSseConfigurationArgs.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: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.verifiedaccess.kotlin.inputs

import com.pulumi.aws.verifiedaccess.inputs.GroupSseConfigurationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property customerManagedKeyEnabled
 * @property kmsKeyArn ARN of the KMS key to use.
 */
public data class GroupSseConfigurationArgs(
    public val customerManagedKeyEnabled: Output? = null,
    public val kmsKeyArn: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.verifiedaccess.inputs.GroupSseConfigurationArgs =
        com.pulumi.aws.verifiedaccess.inputs.GroupSseConfigurationArgs.builder()
            .customerManagedKeyEnabled(customerManagedKeyEnabled?.applyValue({ args0 -> args0 }))
            .kmsKeyArn(kmsKeyArn?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [GroupSseConfigurationArgs].
 */
@PulumiTagMarker
public class GroupSseConfigurationArgsBuilder internal constructor() {
    private var customerManagedKeyEnabled: Output? = null

    private var kmsKeyArn: Output? = null

    /**
     * @param value
     */
    @JvmName("rmniicrrctbgtgva")
    public suspend fun customerManagedKeyEnabled(`value`: Output) {
        this.customerManagedKeyEnabled = value
    }

    /**
     * @param value ARN of the KMS key to use.
     */
    @JvmName("cybukedmuyprqgos")
    public suspend fun kmsKeyArn(`value`: Output) {
        this.kmsKeyArn = value
    }

    /**
     * @param value
     */
    @JvmName("kvnxsufrcdkighas")
    public suspend fun customerManagedKeyEnabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.customerManagedKeyEnabled = mapped
    }

    /**
     * @param value ARN of the KMS key to use.
     */
    @JvmName("egpgnmjnrlvmaqde")
    public suspend fun kmsKeyArn(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.kmsKeyArn = mapped
    }

    internal fun build(): GroupSseConfigurationArgs = GroupSseConfigurationArgs(
        customerManagedKeyEnabled = customerManagedKeyEnabled,
        kmsKeyArn = kmsKeyArn,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy