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

com.pulumi.aws.cloudfront.kotlin.outputs.FieldLevelEncryptionProfileEncryptionEntitiesItem.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: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.cloudfront.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property fieldPatterns Object that contains an attribute `items` that contains the list of field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted.
 * @property providerId The provider associated with the public key being used for encryption.
 * @property publicKeyId The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields that match the patterns.
 */
public data class FieldLevelEncryptionProfileEncryptionEntitiesItem(
    public val fieldPatterns: FieldLevelEncryptionProfileEncryptionEntitiesItemFieldPatterns,
    public val providerId: String,
    public val publicKeyId: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.aws.cloudfront.outputs.FieldLevelEncryptionProfileEncryptionEntitiesItem): FieldLevelEncryptionProfileEncryptionEntitiesItem =
            FieldLevelEncryptionProfileEncryptionEntitiesItem(
                fieldPatterns = javaType.fieldPatterns().let({ args0 ->
                    com.pulumi.aws.cloudfront.kotlin.outputs.FieldLevelEncryptionProfileEncryptionEntitiesItemFieldPatterns.Companion.toKotlin(args0)
                }),
                providerId = javaType.providerId(),
                publicKeyId = javaType.publicKeyId(),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy