com.pulumi.aws.rolesanywhere.kotlin.inputs.TrustAnchorSourceSourceDataArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.aws.rolesanywhere.kotlin.inputs
import com.pulumi.aws.rolesanywhere.inputs.TrustAnchorSourceSourceDataArgs.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 acmPcaArn The ARN of an ACM Private Certificate Authority.
* @property x509CertificateData
*/
public data class TrustAnchorSourceSourceDataArgs(
public val acmPcaArn: Output? = null,
public val x509CertificateData: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.rolesanywhere.inputs.TrustAnchorSourceSourceDataArgs =
com.pulumi.aws.rolesanywhere.inputs.TrustAnchorSourceSourceDataArgs.builder()
.acmPcaArn(acmPcaArn?.applyValue({ args0 -> args0 }))
.x509CertificateData(x509CertificateData?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [TrustAnchorSourceSourceDataArgs].
*/
@PulumiTagMarker
public class TrustAnchorSourceSourceDataArgsBuilder internal constructor() {
private var acmPcaArn: Output? = null
private var x509CertificateData: Output? = null
/**
* @param value The ARN of an ACM Private Certificate Authority.
*/
@JvmName("fmrxpivjhobugflk")
public suspend fun acmPcaArn(`value`: Output) {
this.acmPcaArn = value
}
/**
* @param value
*/
@JvmName("iddgduvgknbmfcyx")
public suspend fun x509CertificateData(`value`: Output) {
this.x509CertificateData = value
}
/**
* @param value The ARN of an ACM Private Certificate Authority.
*/
@JvmName("hteoaxsvdbppmult")
public suspend fun acmPcaArn(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.acmPcaArn = mapped
}
/**
* @param value
*/
@JvmName("yncbvnmyxxmbkiux")
public suspend fun x509CertificateData(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.x509CertificateData = mapped
}
internal fun build(): TrustAnchorSourceSourceDataArgs = TrustAnchorSourceSourceDataArgs(
acmPcaArn = acmPcaArn,
x509CertificateData = x509CertificateData,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy