com.pulumi.awsnative.evidently.kotlin.Segment.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.evidently.kotlin
import com.pulumi.awsnative.kotlin.outputs.Tag
import com.pulumi.awsnative.kotlin.outputs.Tag.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
import kotlin.collections.List
/**
* Builder for [Segment].
*/
@PulumiTagMarker
public class SegmentResourceBuilder internal constructor() {
public var name: String? = null
public var args: SegmentArgs = SegmentArgs()
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 SegmentArgsBuilder.() -> Unit) {
val builder = SegmentArgsBuilder()
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(): Segment {
val builtJavaResource = com.pulumi.awsnative.evidently.Segment(
this.name,
this.args.toJava(),
this.opts.toJava(),
)
return Segment(builtJavaResource)
}
}
/**
* Resource Type definition for AWS::Evidently::Segment
*/
public class Segment internal constructor(
override val javaResource: com.pulumi.awsnative.evidently.Segment,
) : KotlinCustomResource(javaResource, SegmentMapper) {
/**
* The ARN of the segment. For example, `arn:aws:evidently:us-west-2:123456789012:segment/australiaSegment`
*/
public val arn: Output
get() = javaResource.arn().applyValue({ args0 -> args0 })
/**
* An optional description for this segment.
*/
public val description: Output?
get() = javaResource.description().applyValue({ args0 ->
args0.map({ args0 ->
args0
}).orElse(null)
})
/**
* A name for the segment.
*/
public val name: Output
get() = javaResource.name().applyValue({ args0 -> args0 })
/**
* The pattern to use for the segment. For more information about pattern syntax, see [Segment rule pattern syntax](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Evidently-segments.html#CloudWatch-Evidently-segments-syntax) .
*/
public val pattern: Output?
get() = javaResource.pattern().applyValue({ args0 -> args0.map({ args0 -> args0 }).orElse(null) })
/**
* An array of key-value pairs to apply to this resource.
*/
public val tags: Output>?
get() = javaResource.tags().applyValue({ args0 ->
args0.map({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> toKotlin(args0) })
})
}).orElse(null)
})
}
public object SegmentMapper : ResourceMapper {
override fun supportsMappingOfType(javaResource: Resource): Boolean =
com.pulumi.awsnative.evidently.Segment::class == javaResource::class
override fun map(javaResource: Resource): Segment = Segment(
javaResource as
com.pulumi.awsnative.evidently.Segment,
)
}
/**
* @see [Segment].
* @param name The _unique_ name of the resulting resource.
* @param block Builder for [Segment].
*/
public suspend fun segment(name: String, block: suspend SegmentResourceBuilder.() -> Unit): Segment {
val builder = SegmentResourceBuilder()
builder.name(name)
block(builder)
return builder.build()
}
/**
* @see [Segment].
* @param name The _unique_ name of the resulting resource.
*/
public fun segment(name: String): Segment {
val builder = SegmentResourceBuilder()
builder.name(name)
return builder.build()
}