All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.stepfunctions.kotlin.outputs.ActivityEncryptionConfiguration.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 1.24.0.0
Show newest version
@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