com.pulumi.awsnative.connect.kotlin.ContactFlow.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.connect.kotlin
import com.pulumi.awsnative.connect.kotlin.enums.ContactFlowState
import com.pulumi.awsnative.connect.kotlin.enums.ContactFlowType
import com.pulumi.awsnative.kotlin.outputs.Tag
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
import kotlin.collections.List
import com.pulumi.awsnative.connect.kotlin.enums.ContactFlowState.Companion.toKotlin as contactFlowStateToKotlin
import com.pulumi.awsnative.connect.kotlin.enums.ContactFlowType.Companion.toKotlin as contactFlowTypeToKotlin
import com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin as tagToKotlin
/**
* Builder for [ContactFlow].
*/
@PulumiTagMarker
public class ContactFlowResourceBuilder internal constructor() {
public var name: String? = null
public var args: ContactFlowArgs = ContactFlowArgs()
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 ContactFlowArgsBuilder.() -> Unit) {
val builder = ContactFlowArgsBuilder()
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(): ContactFlow {
val builtJavaResource = com.pulumi.awsnative.connect.ContactFlow(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return ContactFlow(builtJavaResource)
}
}
/**
* Resource Type definition for AWS::Connect::ContactFlow
* ## Example Usage
* ### Example
* No Java example available.
*/
public class ContactFlow internal constructor(
override val javaResource: com.pulumi.awsnative.connect.ContactFlow,
) : KotlinCustomResource(javaResource, ContactFlowMapper) {
/**
* The identifier of the contact flow (ARN).
*/
public val contactFlowArn: Output
get() = javaResource.contactFlowArn().applyValue({ args0 -> args0 })
/**
* The content of the contact flow in JSON format.
*/
public val content: Output
get() = javaResource.content().applyValue({ args0 -> args0 })
/**
* The description of the contact flow.
*/
public val description: Output?
get() = javaResource.description().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* The identifier of the Amazon Connect instance (ARN).
*/
public val instanceArn: Output
get() = javaResource.instanceArn().applyValue({ args0 -> args0 })
/**
* The name of the contact flow.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* The state of the contact flow.
*/
public val state: Output?
get() = javaResource.state().applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
contactFlowStateToKotlin(args0)
})
}).orElse(null)
})
/**
* One or more tags.
*/
public val tags: Output>?
get() = javaResource.tags().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> tagToKotlin(args0) })
})
}).orElse(null)
})
/**
* The type of the contact flow.
*/
public val type: Output
get() = javaResource.type().applyValue({ args0 ->
args0.let({ args0 ->
contactFlowTypeToKotlin(args0)
})
})
}
public object ContactFlowMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.awsnative.connect.ContactFlow::class == javaResource::class
override fun map(javaResource: Resource): ContactFlow = ContactFlow(
javaResource as
com.pulumi.awsnative.connect.ContactFlow,
)
}
/**
* @see [ContactFlow].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [ContactFlow].
*/
public suspend fun contactFlow(name: String, block: suspend ContactFlowResourceBuilder.() -> Unit): ContactFlow {
val builder = ContactFlowResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [ContactFlow].
* @param name The _unique_ name of the resulting resource.
*/
public fun contactFlow(name: String): ContactFlow {
val builder = ContactFlowResourceBuilder()
builder.name(name)
return builder.build()
}