com.pulumi.awsnative.appintegrations.kotlin.EventIntegration.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.appintegrations.kotlin
import com.pulumi.awsnative.appintegrations.kotlin.outputs.EventIntegrationEventFilter
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.appintegrations.kotlin.outputs.EventIntegrationEventFilter.Companion.toKotlin as eventIntegrationEventFilterToKotlin
import com.pulumi.awsnative.kotlin.outputs.Tag.Companion.toKotlin as tagToKotlin
/**
* Builder for [EventIntegration].
*/
@PulumiTagMarker
public class EventIntegrationResourceBuilder internal constructor() {
public var name: String? = null
public var args: EventIntegrationArgs = EventIntegrationArgs()
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 EventIntegrationArgsBuilder.() -> Unit) {
val builder = EventIntegrationArgsBuilder()
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(): EventIntegration {
val builtJavaResource =
com.pulumi.awsnative.appintegrations.EventIntegration(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return EventIntegration(builtJavaResource)
}
}
/**
* Resource Type definition for AWS::AppIntegrations::EventIntegration
*/
public class EventIntegration internal constructor(
override val javaResource: com.pulumi.awsnative.appintegrations.EventIntegration,
) : KotlinCustomResource(javaResource, EventIntegrationMapper) {
/**
* The event integration description.
*/
public val description: Output?
get() = javaResource.description().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* The Amazon Eventbridge bus for the event integration.
*/
public val eventBridgeBus: Output
get() = javaResource.eventBridgeBus().applyValue({ args0 -> args0 })
/**
* The EventFilter (source) associated with the event integration.
*/
public val eventFilter: Output
get() = javaResource.eventFilter().applyValue({ args0 ->
args0.let({ args0 ->
eventIntegrationEventFilterToKotlin(args0)
})
})
/**
* The Amazon Resource Name (ARN) of the event integration.
*/
public val eventIntegrationArn: Output
get() = javaResource.eventIntegrationArn().applyValue({ args0 -> args0 })
/**
* The name of the event integration.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* The tags (keys and values) associated with the event integration.
*/
public val tags: Output>?
get() = javaResource.tags().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> tagToKotlin(args0) })
})
}).orElse(null)
})
}
public object EventIntegrationMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.awsnative.appintegrations.EventIntegration::class == javaResource::class
override fun map(javaResource: Resource): EventIntegration = EventIntegration(
javaResource as
com.pulumi.awsnative.appintegrations.EventIntegration,
)
}
/**
* @see [EventIntegration].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [EventIntegration].
*/
public suspend fun eventIntegration(
name: String,
block: suspend EventIntegrationResourceBuilder.() -> Unit,
): EventIntegration {
val builder = EventIntegrationResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [EventIntegration].
* @param name The _unique_ name of the resulting resource.
*/
public fun eventIntegration(name: String): EventIntegration {
val builder = EventIntegrationResourceBuilder()
builder.name(name)
return builder.build()
}