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

com.pulumi.awsnative.codepipeline.kotlin.outputs.PipelineEncryptionKey.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.codepipeline.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 * Represents information about the key used to encrypt data in the artifact store, such as an AWS Key Management Service (AWS KMS) key
 * @property id The ID used to identify the key. For an AWS KMS key, you can use the key ID, the key ARN, or the alias ARN.
 * @property type The type of encryption key, such as an AWS KMS key. When creating or updating a pipeline, the value must be set to 'KMS'.
 */
public data class PipelineEncryptionKey(
    public val id: String,
    public val type: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.codepipeline.outputs.PipelineEncryptionKey): PipelineEncryptionKey = PipelineEncryptionKey(
            id = javaType.id(),
            type = javaType.type(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy