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

com.pulumi.awsnative.omics.kotlin.outputs.SequenceStoreSseConfig.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.omics.kotlin.outputs

import com.pulumi.awsnative.omics.kotlin.enums.SequenceStoreEncryptionType
import kotlin.String
import kotlin.Suppress

/**
 * Server-side encryption (SSE) settings for a store.
 * @property keyArn An encryption key ARN.
 * @property type The encryption type.
 */
public data class SequenceStoreSseConfig(
    public val keyArn: String? = null,
    public val type: SequenceStoreEncryptionType,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.omics.outputs.SequenceStoreSseConfig): SequenceStoreSseConfig = SequenceStoreSseConfig(
            keyArn = javaType.keyArn().map({ args0 -> args0 }).orElse(null),
            type = javaType.type().let({ args0 ->
                com.pulumi.awsnative.omics.kotlin.enums.SequenceStoreEncryptionType.Companion.toKotlin(args0)
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy