com.pulumi.awsnative.devopsguru.kotlin.NotificationChannel.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.devopsguru.kotlin
import com.pulumi.awsnative.devopsguru.kotlin.outputs.NotificationChannelConfig
import com.pulumi.awsnative.devopsguru.kotlin.outputs.NotificationChannelConfig.Companion.toKotlin
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.devopsguru.NotificationChannel(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return NotificationChannel(builtJavaResource)
}
}
/**
* This resource schema represents the NotificationChannel resource in the Amazon DevOps Guru.
* ## Example Usage
* ### Example
* No Java example available.
* ### Example
* No Java example available.
* ### Example
* No Java example available.
*/
public class NotificationChannel internal constructor(
override val javaResource: com.pulumi.awsnative.devopsguru.NotificationChannel,
) : KotlinCustomResource(javaResource, NotificationChannelMapper) {
/**
* The ID of a notification channel.
*/
public val awsId: Output
get() = javaResource.awsId().applyValue({ args0 -> args0 })
/**
* A `NotificationChannelConfig` object that contains information about configured notification channels.
*/
public val config: Output
get() = javaResource.config().applyValue({ args0 -> args0.let({ args0 -> toKotlin(args0) }) })
}
public object NotificationChannelMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.awsnative.devopsguru.NotificationChannel::class == javaResource::class
override fun map(javaResource: Resource): NotificationChannel = NotificationChannel(
javaResource
as com.pulumi.awsnative.devopsguru.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()
}