com.pulumi.awsnative.ssmcontacts.kotlin.ContactChannel.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.ssmcontacts.kotlin
import com.pulumi.awsnative.ssmcontacts.kotlin.enums.ContactChannelChannelType
import com.pulumi.awsnative.ssmcontacts.kotlin.enums.ContactChannelChannelType.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 [ContactChannel].
*/
@PulumiTagMarker
public class ContactChannelResourceBuilder internal constructor() {
public var name: String? = null
public var args: ContactChannelArgs = ContactChannelArgs()
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 ContactChannelArgsBuilder.() -> Unit) {
val builder = ContactChannelArgsBuilder()
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(): ContactChannel {
val builtJavaResource = com.pulumi.awsnative.ssmcontacts.ContactChannel(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return ContactChannel(builtJavaResource)
}
}
/**
* Resource Type definition for AWS::SSMContacts::ContactChannel
*/
public class ContactChannel internal constructor(
override val javaResource: com.pulumi.awsnative.ssmcontacts.ContactChannel,
) : KotlinCustomResource(javaResource, ContactChannelMapper) {
/**
* The Amazon Resource Name (ARN) of the engagement to a contact channel.
*/
public val arn: Output
get() = javaResource.arn().applyValue({ args0 -> args0 })
/**
* The details that SSM Incident Manager uses when trying to engage the contact channel.
*/
public val channelAddress: Output?
get() = javaResource.channelAddress().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* The device name. String of 6 to 50 alphabetical, numeric, dash, and underscore characters.
*/
public val channelName: Output?
get() = javaResource.channelName().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* Device type, which specify notification channel. Currently supported values: "SMS", "VOICE", "EMAIL", "CHATBOT.
*/
public val channelType: Output?
get() = javaResource.channelType().applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
toKotlin(args0)
})
}).orElse(null)
})
/**
* ARN of the contact resource
*/
public val contactId: Output?
get() = javaResource.contactId().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* If you want to activate the channel at a later time, you can choose to defer activation. SSM Incident Manager can't engage your contact channel until it has been activated.
*/
public val deferActivation: Output?
get() = javaResource.deferActivation().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
}
public object ContactChannelMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.awsnative.ssmcontacts.ContactChannel::class == javaResource::class
override fun map(javaResource: Resource): ContactChannel = ContactChannel(
javaResource as
com.pulumi.awsnative.ssmcontacts.ContactChannel,
)
}
/**
* @see [ContactChannel].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [ContactChannel].
*/
public suspend fun contactChannel(
name: String,
block: suspend ContactChannelResourceBuilder.() -> Unit,
): ContactChannel {
val builder = ContactChannelResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [ContactChannel].
* @param name The _unique_ name of the resulting resource.
*/
public fun contactChannel(name: String): ContactChannel {
val builder = ContactChannelResourceBuilder()
builder.name(name)
return builder.build()
}