![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.elasticloadbalancingv2.kotlin.inputs.TrustStoreRevocationRevocationContentArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.elasticloadbalancingv2.kotlin.inputs
import com.pulumi.awsnative.elasticloadbalancingv2.inputs.TrustStoreRevocationRevocationContentArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property revocationType The type of revocation file.
* @property s3Bucket The Amazon S3 bucket for the revocation file.
* @property s3Key The Amazon S3 path for the revocation file.
* @property s3ObjectVersion The Amazon S3 object version of the revocation file.
*/
public data class TrustStoreRevocationRevocationContentArgs(
public val revocationType: Output? = null,
public val s3Bucket: Output? = null,
public val s3Key: Output? = null,
public val s3ObjectVersion: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.elasticloadbalancingv2.inputs.TrustStoreRevocationRevocationContentArgs =
com.pulumi.awsnative.elasticloadbalancingv2.inputs.TrustStoreRevocationRevocationContentArgs.builder()
.revocationType(revocationType?.applyValue({ args0 -> args0 }))
.s3Bucket(s3Bucket?.applyValue({ args0 -> args0 }))
.s3Key(s3Key?.applyValue({ args0 -> args0 }))
.s3ObjectVersion(s3ObjectVersion?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [TrustStoreRevocationRevocationContentArgs].
*/
@PulumiTagMarker
public class TrustStoreRevocationRevocationContentArgsBuilder internal constructor() {
private var revocationType: Output? = null
private var s3Bucket: Output? = null
private var s3Key: Output? = null
private var s3ObjectVersion: Output? = null
/**
* @param value The type of revocation file.
*/
@JvmName("mbopyguhhriiqclp")
public suspend fun revocationType(`value`: Output) {
this.revocationType = value
}
/**
* @param value The Amazon S3 bucket for the revocation file.
*/
@JvmName("acekyhqufunyeyyh")
public suspend fun s3Bucket(`value`: Output) {
this.s3Bucket = value
}
/**
* @param value The Amazon S3 path for the revocation file.
*/
@JvmName("dnnnebaecfbidfqu")
public suspend fun s3Key(`value`: Output) {
this.s3Key = value
}
/**
* @param value The Amazon S3 object version of the revocation file.
*/
@JvmName("eakimfmpiyitwsrn")
public suspend fun s3ObjectVersion(`value`: Output) {
this.s3ObjectVersion = value
}
/**
* @param value The type of revocation file.
*/
@JvmName("sbrfdsefhiqolhjh")
public suspend fun revocationType(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.revocationType = mapped
}
/**
* @param value The Amazon S3 bucket for the revocation file.
*/
@JvmName("umqrkkegomcsjlon")
public suspend fun s3Bucket(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.s3Bucket = mapped
}
/**
* @param value The Amazon S3 path for the revocation file.
*/
@JvmName("inuhrmjaicjmdwck")
public suspend fun s3Key(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.s3Key = mapped
}
/**
* @param value The Amazon S3 object version of the revocation file.
*/
@JvmName("nwkutgsewhneivfa")
public suspend fun s3ObjectVersion(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.s3ObjectVersion = mapped
}
internal fun build(): TrustStoreRevocationRevocationContentArgs =
TrustStoreRevocationRevocationContentArgs(
revocationType = revocationType,
s3Bucket = s3Bucket,
s3Key = s3Key,
s3ObjectVersion = s3ObjectVersion,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy