com.pulumi.awsnative.ses.kotlin.DedicatedIpPoolArgs.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.ses.kotlin
import com.pulumi.awsnative.ses.DedicatedIpPoolArgs.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
/**
* Resource Type definition for AWS::SES::DedicatedIpPool
* @property poolName The name of the dedicated IP pool.
* @property scalingMode Specifies whether the dedicated IP pool is managed or not. The default value is STANDARD.
*/
public data class DedicatedIpPoolArgs(
public val poolName: Output? = null,
public val scalingMode: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.ses.DedicatedIpPoolArgs =
com.pulumi.awsnative.ses.DedicatedIpPoolArgs.builder()
.poolName(poolName?.applyValue({ args0 -> args0 }))
.scalingMode(scalingMode?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DedicatedIpPoolArgs].
*/
@PulumiTagMarker
public class DedicatedIpPoolArgsBuilder internal constructor() {
private var poolName: Output? = null
private var scalingMode: Output? = null
/**
* @param value The name of the dedicated IP pool.
*/
@JvmName("gfhmgfunfbcnsdld")
public suspend fun poolName(`value`: Output) {
this.poolName = value
}
/**
* @param value Specifies whether the dedicated IP pool is managed or not. The default value is STANDARD.
*/
@JvmName("nuqqbraywqfxlypl")
public suspend fun scalingMode(`value`: Output) {
this.scalingMode = value
}
/**
* @param value The name of the dedicated IP pool.
*/
@JvmName("uijlwkkudxtyhjbb")
public suspend fun poolName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.poolName = mapped
}
/**
* @param value Specifies whether the dedicated IP pool is managed or not. The default value is STANDARD.
*/
@JvmName("deoolnjooyyjchwn")
public suspend fun scalingMode(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.scalingMode = mapped
}
internal fun build(): DedicatedIpPoolArgs = DedicatedIpPoolArgs(
poolName = poolName,
scalingMode = scalingMode,
)
}