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

com.pulumi.aws.apprunner.kotlin.outputs.ServiceSourceConfigurationCodeRepositorySourceCodeVersion.kt Maven / Gradle / Ivy

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

package com.pulumi.aws.apprunner.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property type Type of version identifier. For a git-based repository, branches represent versions. Valid values: `BRANCH`.
 * @property value Source code version. For a git-based repository, a branch name maps to a specific version. App Runner uses the most recent commit to the branch.
 */
public data class ServiceSourceConfigurationCodeRepositorySourceCodeVersion(
    public val type: String,
    public val `value`: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.aws.apprunner.outputs.ServiceSourceConfigurationCodeRepositorySourceCodeVersion): ServiceSourceConfigurationCodeRepositorySourceCodeVersion =
            ServiceSourceConfigurationCodeRepositorySourceCodeVersion(
                type = javaType.type(),
                `value` = javaType.`value`(),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy