![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.fms.kotlin.NotificationChannel.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.fms.kotlin
import com.pulumi.core.Output
import com.pulumi.kotlin.KotlinCustomResource
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.ResourceMapper
import com.pulumi.kotlin.options.CustomResourceOptions
import com.pulumi.kotlin.options.CustomResourceOptionsBuilder
import com.pulumi.resources.Resource
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
/**
* Builder for [NotificationChannel].
*/
@PulumiTagMarker
public class NotificationChannelResourceBuilder internal constructor() {
public var name: String? = null
public var args: NotificationChannelArgs = NotificationChannelArgs()
public var opts: CustomResourceOptions = CustomResourceOptions()
/**
* @param name The _unique_ name of the resulting resource.
*/
public fun name(`value`: String) {
this.name = value
}
/**
* @param block The arguments to use to populate this resource's properties.
*/
public suspend fun args(block: suspend NotificationChannelArgsBuilder.() -> Unit) {
val builder = NotificationChannelArgsBuilder()
block(builder)
this.args = builder.build()
}
/**
* @param block A bag of options that control this resource's behavior.
*/
public suspend fun opts(block: suspend CustomResourceOptionsBuilder.() -> Unit) {
this.opts = com.pulumi.kotlin.options.CustomResourceOptions.opts(block)
}
internal fun build(): NotificationChannel {
val builtJavaResource = com.pulumi.awsnative.fms.NotificationChannel(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return NotificationChannel(builtJavaResource)
}
}
/**
* Designates the IAM role and Amazon Simple Notification Service (SNS) topic that AWS Firewall Manager uses to record SNS logs.
*/
public class NotificationChannel internal constructor(
override val javaResource: com.pulumi.awsnative.fms.NotificationChannel,
) : KotlinCustomResource(javaResource, NotificationChannelMapper) {
/**
* The Amazon Resource Name (ARN) of the IAM role that allows Amazon SNS to record AWS Firewall Manager activity.
*/
public val snsRoleName: Output
get() = javaResource.snsRoleName().applyValue({ args0 -> args0 })
/**
* The Amazon Resource Name (ARN) of the SNS topic that collects notifications from AWS Firewall Manager .
*/
public val snsTopicArn: Output
get() = javaResource.snsTopicArn().applyValue({ args0 -> args0 })
}
public object NotificationChannelMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.awsnative.fms.NotificationChannel::class == javaResource::class
override fun map(javaResource: Resource): NotificationChannel = NotificationChannel(
javaResource
as com.pulumi.awsnative.fms.NotificationChannel,
)
}
/**
* @see [NotificationChannel].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [NotificationChannel].
*/
public suspend fun notificationChannel(
name: String,
block: suspend NotificationChannelResourceBuilder.() -> Unit,
): NotificationChannel {
val builder = NotificationChannelResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [NotificationChannel].
* @param name The _unique_ name of the resulting resource.
*/
public fun notificationChannel(name: String): NotificationChannel {
val builder = NotificationChannelResourceBuilder()
builder.name(name)
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy