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

com.pulumi.awsnative.elasticloadbalancingv2.kotlin.TrustStoreArgs.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: 0.122.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.elasticloadbalancingv2.kotlin

import com.pulumi.awsnative.elasticloadbalancingv2.TrustStoreArgs.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::ElasticLoadBalancingV2::TrustStore
 * @property caCertificatesBundleS3Bucket The name of the S3 bucket to fetch the CA certificate bundle from.
 * @property caCertificatesBundleS3Key The name of the S3 object to fetch the CA certificate bundle from.
 * @property caCertificatesBundleS3ObjectVersion The version of the S3 bucket that contains the CA certificate bundle.
 * @property name The name of the trust store.
 * @property tags The tags to assign to the trust store.
 */
public data class TrustStoreArgs(
    public val caCertificatesBundleS3Bucket: Output? = null,
    public val caCertificatesBundleS3Key: Output? = null,
    public val caCertificatesBundleS3ObjectVersion: Output? = null,
    public val name: Output? = null,
    public val tags: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.elasticloadbalancingv2.TrustStoreArgs =
        com.pulumi.awsnative.elasticloadbalancingv2.TrustStoreArgs.builder()
            .caCertificatesBundleS3Bucket(caCertificatesBundleS3Bucket?.applyValue({ args0 -> args0 }))
            .caCertificatesBundleS3Key(caCertificatesBundleS3Key?.applyValue({ args0 -> args0 }))
            .caCertificatesBundleS3ObjectVersion(
                caCertificatesBundleS3ObjectVersion?.applyValue({ args0 ->
                    args0
                }),
            )
            .name(name?.applyValue({ args0 -> args0 }))
            .tags(
                tags?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.let({ args0 ->
                            args0.toJava()
                        })
                    })
                }),
            ).build()
}

/**
 * Builder for [TrustStoreArgs].
 */
@PulumiTagMarker
public class TrustStoreArgsBuilder internal constructor() {
    private var caCertificatesBundleS3Bucket: Output? = null

    private var caCertificatesBundleS3Key: Output? = null

    private var caCertificatesBundleS3ObjectVersion: Output? = null

    private var name: Output? = null

    private var tags: Output>? = null

    /**
     * @param value The name of the S3 bucket to fetch the CA certificate bundle from.
     */
    @JvmName("betjnqcvbownhcej")
    public suspend fun caCertificatesBundleS3Bucket(`value`: Output) {
        this.caCertificatesBundleS3Bucket = value
    }

    /**
     * @param value The name of the S3 object to fetch the CA certificate bundle from.
     */
    @JvmName("aoloqfknaiipvyis")
    public suspend fun caCertificatesBundleS3Key(`value`: Output) {
        this.caCertificatesBundleS3Key = value
    }

    /**
     * @param value The version of the S3 bucket that contains the CA certificate bundle.
     */
    @JvmName("vudiyaramgaeaiur")
    public suspend fun caCertificatesBundleS3ObjectVersion(`value`: Output) {
        this.caCertificatesBundleS3ObjectVersion = value
    }

    /**
     * @param value The name of the trust store.
     */
    @JvmName("yefqbewcjbsefkwx")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The tags to assign to the trust store.
     */
    @JvmName("fvegtkxegyepfmvf")
    public suspend fun tags(`value`: Output>) {
        this.tags = value
    }

    @JvmName("bvrbffeouunaxwdb")
    public suspend fun tags(vararg values: Output) {
        this.tags = Output.all(values.asList())
    }

    /**
     * @param values The tags to assign to the trust store.
     */
    @JvmName("bpguikjvcpdiahad")
    public suspend fun tags(values: List>) {
        this.tags = Output.all(values)
    }

    /**
     * @param value The name of the S3 bucket to fetch the CA certificate bundle from.
     */
    @JvmName("lbedfreakprdvofd")
    public suspend fun caCertificatesBundleS3Bucket(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.caCertificatesBundleS3Bucket = mapped
    }

    /**
     * @param value The name of the S3 object to fetch the CA certificate bundle from.
     */
    @JvmName("buymylqpiymeaypa")
    public suspend fun caCertificatesBundleS3Key(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.caCertificatesBundleS3Key = mapped
    }

    /**
     * @param value The version of the S3 bucket that contains the CA certificate bundle.
     */
    @JvmName("omawxvtsyfemdjoe")
    public suspend fun caCertificatesBundleS3ObjectVersion(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.caCertificatesBundleS3ObjectVersion = mapped
    }

    /**
     * @param value The name of the trust store.
     */
    @JvmName("apqbtdrxjiijpuah")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value The tags to assign to the trust store.
     */
    @JvmName("wpajkjnvomdyuwbe")
    public suspend fun tags(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    /**
     * @param argument The tags to assign to the trust store.
     */
    @JvmName("pomqsbbfsouftqgu")
    public suspend fun tags(argument: List Unit>) {
        val toBeMapped = argument.toList().map { TagArgsBuilder().applySuspend { it() }.build() }
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param argument The tags to assign to the trust store.
     */
    @JvmName("mhnekycpdbgshqsa")
    public suspend fun tags(vararg argument: suspend TagArgsBuilder.() -> Unit) {
        val toBeMapped = argument.toList().map { TagArgsBuilder().applySuspend { it() }.build() }
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param argument The tags to assign to the trust store.
     */
    @JvmName("nxnhkadiirkmbcnl")
    public suspend fun tags(argument: suspend TagArgsBuilder.() -> Unit) {
        val toBeMapped = listOf(TagArgsBuilder().applySuspend { argument() }.build())
        val mapped = of(toBeMapped)
        this.tags = mapped
    }

    /**
     * @param values The tags to assign to the trust store.
     */
    @JvmName("bbkesvoodxkpmoup")
    public suspend fun tags(vararg values: TagArgs) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tags = mapped
    }

    internal fun build(): TrustStoreArgs = TrustStoreArgs(
        caCertificatesBundleS3Bucket = caCertificatesBundleS3Bucket,
        caCertificatesBundleS3Key = caCertificatesBundleS3Key,
        caCertificatesBundleS3ObjectVersion = caCertificatesBundleS3ObjectVersion,
        name = name,
        tags = tags,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy