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

com.pulumi.aws.kms.kotlin.inputs.GetCustomKeyStorePlainArgs.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.kms.kotlin.inputs

import com.pulumi.aws.kms.inputs.GetCustomKeyStorePlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * A collection of arguments for invoking getCustomKeyStore.
 * @property customKeyStoreId The ID for the custom key store.
 * @property customKeyStoreName The user-specified friendly name for the custom key store.
 */
public data class GetCustomKeyStorePlainArgs(
    public val customKeyStoreId: String? = null,
    public val customKeyStoreName: String? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.kms.inputs.GetCustomKeyStorePlainArgs =
        com.pulumi.aws.kms.inputs.GetCustomKeyStorePlainArgs.builder()
            .customKeyStoreId(customKeyStoreId?.let({ args0 -> args0 }))
            .customKeyStoreName(customKeyStoreName?.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetCustomKeyStorePlainArgs].
 */
@PulumiTagMarker
public class GetCustomKeyStorePlainArgsBuilder internal constructor() {
    private var customKeyStoreId: String? = null

    private var customKeyStoreName: String? = null

    /**
     * @param value The ID for the custom key store.
     */
    @JvmName("dkekcecrcaiqcqoc")
    public suspend fun customKeyStoreId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> args0 })
        this.customKeyStoreId = mapped
    }

    /**
     * @param value The user-specified friendly name for the custom key store.
     */
    @JvmName("hgjmbfjvyxbcmyyk")
    public suspend fun customKeyStoreName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> args0 })
        this.customKeyStoreName = mapped
    }

    internal fun build(): GetCustomKeyStorePlainArgs = GetCustomKeyStorePlainArgs(
        customKeyStoreId = customKeyStoreId,
        customKeyStoreName = customKeyStoreName,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy