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

com.pulumi.awsnative.kinesisanalyticsv2.kotlin.outputs.ApplicationCodeConfiguration.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.kinesisanalyticsv2.kotlin.outputs

import com.pulumi.awsnative.kinesisanalyticsv2.kotlin.enums.ApplicationCodeConfigurationCodeContentType
import kotlin.Suppress

/**
 * Describes code configuration for an application.
 * @property codeContent The location and type of the application code.
 * @property codeContentType Specifies whether the code content is in text or zip format.
 */
public data class ApplicationCodeConfiguration(
    public val codeContent: ApplicationCodeContent,
    public val codeContentType: ApplicationCodeConfigurationCodeContentType,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.kinesisanalyticsv2.outputs.ApplicationCodeConfiguration): ApplicationCodeConfiguration = ApplicationCodeConfiguration(
            codeContent = javaType.codeContent().let({ args0 ->
                com.pulumi.awsnative.kinesisanalyticsv2.kotlin.outputs.ApplicationCodeContent.Companion.toKotlin(args0)
            }),
            codeContentType = javaType.codeContentType().let({ args0 ->
                com.pulumi.awsnative.kinesisanalyticsv2.kotlin.enums.ApplicationCodeConfigurationCodeContentType.Companion.toKotlin(args0)
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy