![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.stepfunctions.kotlin.outputs.ActivityEncryptionConfiguration.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.outputs
import com.pulumi.awsnative.stepfunctions.kotlin.enums.ActivityEncryptionConfigurationType
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property kmsDataKeyReusePeriodSeconds
* @property kmsKeyId
* @property type
*/
public data class ActivityEncryptionConfiguration(
public val kmsDataKeyReusePeriodSeconds: Int? = null,
public val kmsKeyId: String? = null,
public val type: ActivityEncryptionConfigurationType,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.stepfunctions.outputs.ActivityEncryptionConfiguration): ActivityEncryptionConfiguration = ActivityEncryptionConfiguration(
kmsDataKeyReusePeriodSeconds = javaType.kmsDataKeyReusePeriodSeconds().map({ args0 ->
args0
}).orElse(null),
kmsKeyId = javaType.kmsKeyId().map({ args0 -> args0 }).orElse(null),
type = javaType.type().let({ args0 ->
com.pulumi.awsnative.stepfunctions.kotlin.enums.ActivityEncryptionConfigurationType.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy