![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.stepfunctions.kotlin.ActivityArgs.kt Maven / Gradle / Ivy
@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 Encryption configuration for the activity.
* Activity configuration is immutable, and resource names must be unique. To set customer managed keys for encryption, you must create a *new Activity* . If you attempt to change the configuration in your CFN template for an existing activity, you will receive an `ActivityAlreadyExists` exception.
* To update your activity to include customer managed keys, set a new activity name within your AWS CloudFormation template.
* @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 Encryption configuration for the activity.
* Activity configuration is immutable, and resource names must be unique. To set customer managed keys for encryption, you must create a *new Activity* . If you attempt to change the configuration in your CFN template for an existing activity, you will receive an `ActivityAlreadyExists` exception.
* To update your activity to include customer managed keys, set a new activity name within your AWS CloudFormation template.
*/
@JvmName("nprtyrnxhjjandhq")
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("djuqmebxvauenkjj")
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("jssrnqcgcsqnwtkk")
public suspend fun tags(`value`: Output>) {
this.tags = value
}
@JvmName("wokhnuycdmekptea")
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("suukjwsptffjwpux")
public suspend fun tags(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy