com.pulumi.awsnative.elasticloadbalancingv2.kotlin.TrustStoreArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@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