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

com.pulumi.gcp.container.kotlin.inputs.AwsNodePoolConfigSshConfigArgs.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: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.container.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.container.inputs.AwsNodePoolConfigSshConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property ec2KeyPair The name of the EC2 key pair used to login into cluster machines.
 */
public data class AwsNodePoolConfigSshConfigArgs(
    public val ec2KeyPair: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.container.inputs.AwsNodePoolConfigSshConfigArgs =
        com.pulumi.gcp.container.inputs.AwsNodePoolConfigSshConfigArgs.builder()
            .ec2KeyPair(ec2KeyPair.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [AwsNodePoolConfigSshConfigArgs].
 */
@PulumiTagMarker
public class AwsNodePoolConfigSshConfigArgsBuilder internal constructor() {
    private var ec2KeyPair: Output? = null

    /**
     * @param value The name of the EC2 key pair used to login into cluster machines.
     */
    @JvmName("uqwursfiqipcbsvl")
    public suspend fun ec2KeyPair(`value`: Output) {
        this.ec2KeyPair = value
    }

    /**
     * @param value The name of the EC2 key pair used to login into cluster machines.
     */
    @JvmName("kjaamajhsqykxdrg")
    public suspend fun ec2KeyPair(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.ec2KeyPair = mapped
    }

    internal fun build(): AwsNodePoolConfigSshConfigArgs = AwsNodePoolConfigSshConfigArgs(
        ec2KeyPair = ec2KeyPair ?: throw PulumiNullFieldException("ec2KeyPair"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy