com.pulumi.aws.vpc.kotlin.inputs.EndpointServicePrivateDnsVerificationTimeoutsArgs.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.vpc.kotlin.inputs
import com.pulumi.aws.vpc.inputs.EndpointServicePrivateDnsVerificationTimeoutsArgs.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 create A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
*/
public data class EndpointServicePrivateDnsVerificationTimeoutsArgs(
public val create: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.vpc.inputs.EndpointServicePrivateDnsVerificationTimeoutsArgs = com.pulumi.aws.vpc.inputs.EndpointServicePrivateDnsVerificationTimeoutsArgs.builder()
.create(create?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [EndpointServicePrivateDnsVerificationTimeoutsArgs].
*/
@PulumiTagMarker
public class EndpointServicePrivateDnsVerificationTimeoutsArgsBuilder internal constructor() {
private var create: Output? = null
/**
* @param value A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
*/
@JvmName("cqfjwxmyskqkajfk")
public suspend fun create(`value`: Output) {
this.create = value
}
/**
* @param value A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
*/
@JvmName("itjkosoyyrppfxsk")
public suspend fun create(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.create = mapped
}
internal fun build(): EndpointServicePrivateDnsVerificationTimeoutsArgs =
EndpointServicePrivateDnsVerificationTimeoutsArgs(
create = create,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy