com.pulumi.awsnative.stepfunctions.kotlin.ActivityArgs.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.stepfunctions.kotlin
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.awsnative.stepfunctions.ActivityArgs.builder
import com.pulumi.awsnative.stepfunctions.kotlin.inputs.ActivityEncryptionConfigurationArgs
import com.pulumi.awsnative.stepfunctions.kotlin.inputs.ActivityEncryptionConfigurationArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Resource schema for Activity
* ## Example Usage
* ### Example
* No Java example available.
* ### Example
* No Java example available.
* @property encryptionConfiguration
* @property name The name of the activity.
* A name must *not* contain:
* - white space
* - brackets `< > { } [ ]`
* - wildcard characters `? *`
* - special characters `" # % \ ^ | ~ ` $ & , ; : /`
* - control characters ( `U+0000-001F` , `U+007F-009F` )
* To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
* @property tags The list of tags to add to a resource.
* Tags may only contain Unicode letters, digits, white space, or these symbols: `_ . : / = + - @` .
*/
public data class ActivityArgs(
public val encryptionConfiguration: Output? = null,
public val name: Output? = null,
public val tags: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.stepfunctions.ActivityArgs =
com.pulumi.awsnative.stepfunctions.ActivityArgs.builder()
.encryptionConfiguration(
encryptionConfiguration?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.name(name?.applyValue({ args0 -> args0 }))
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [ActivityArgs].
*/
@PulumiTagMarker
public class ActivityArgsBuilder internal constructor() {
private var encryptionConfiguration: Output? = null
private var name: Output? = null
private var tags: Output>? = null
/**
* @param value
*/
@JvmName("rjgqmiqgalrelbhh")
public suspend fun encryptionConfiguration(`value`: Output) {
this.encryptionConfiguration = value
}
/**
* @param value The name of the activity.
* A name must *not* contain:
* - white space
* - brackets `< > { } [ ]`
* - wildcard characters `? *`
* - special characters `" # % \ ^ | ~ ` $ & , ; : /`
* - control characters ( `U+0000-001F` , `U+007F-009F` )
* To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.
*/
@JvmName("vixcsfbcosdtmunt")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value The list of tags to add to a resource.
* Tags may only contain Unicode letters, digits, white space, or these symbols: `_ . : / = + - @` .
*/
@JvmName("mbovikuxviefdxdj")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("huolttjgsxrgspsc")
public suspend fun tags(vararg values: Output) {
this.tags = Output.all(values.asList())
}
/**
* @param values The list of tags to add to a resource.
* Tags may only contain Unicode letters, digits, white space, or these symbols: `_ . : / = + - @` .
*/
@JvmName("jqrhjbhileeedbka")
public suspend fun tags(values: List