Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
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.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.awsnative.ses.MailManagerRuleSetArgs.builder
import com.pulumi.awsnative.ses.kotlin.inputs.MailManagerRuleSetRuleArgs
import com.pulumi.awsnative.ses.kotlin.inputs.MailManagerRuleSetRuleArgsBuilder
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
/**
* Definition of AWS::SES::MailManagerRuleSet Resource Type
* @property ruleSetName A user-friendly name for the rule set.
* @property rules Conditional rules that are evaluated for determining actions on email.
* @property tags The tags used to organize, track, or control access for the resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.
*/
public data class MailManagerRuleSetArgs(
public val ruleSetName: Output? = null,
public val rules: Output>? = null,
public val tags: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.ses.MailManagerRuleSetArgs =
com.pulumi.awsnative.ses.MailManagerRuleSetArgs.builder()
.ruleSetName(ruleSetName?.applyValue({ args0 -> args0 }))
.rules(rules?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [MailManagerRuleSetArgs].
*/
@PulumiTagMarker
public class MailManagerRuleSetArgsBuilder internal constructor() {
private var ruleSetName: Output? = null
private var rules: Output>? = null
private var tags: Output>? = null
/**
* @param value A user-friendly name for the rule set.
*/
@JvmName("qxyfwgrwgvmmmplr")
public suspend fun ruleSetName(`value`: Output) {
this.ruleSetName = value
}
/**
* @param value Conditional rules that are evaluated for determining actions on email.
*/
@JvmName("xuoxisiynpqouhak")
public suspend fun rules(`value`: Output>) {
this.rules = value
}
@JvmName("ctcemfdifoahsddt")
public suspend fun rules(vararg values: Output) {
this.rules = Output.all(values.asList())
}
/**
* @param values Conditional rules that are evaluated for determining actions on email.
*/
@JvmName("wbpxvolrwelyadee")
public suspend fun rules(values: List