com.pulumi.awsnative.kinesisfirehose.kotlin.outputs.DeliveryStreamKmsEncryptionConfig.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.kinesisfirehose.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property awskmsKeyArn The Amazon Resource Name (ARN) of the AWS KMS encryption key that Amazon S3 uses to encrypt data delivered by the Kinesis Data Firehose stream. The key must belong to the same region as the destination S3 bucket.
*/
public data class DeliveryStreamKmsEncryptionConfig(
public val awskmsKeyArn: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.kinesisfirehose.outputs.DeliveryStreamKmsEncryptionConfig): DeliveryStreamKmsEncryptionConfig = DeliveryStreamKmsEncryptionConfig(
awskmsKeyArn = javaType.awskmsKeyArn(),
)
}
}