![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.codepipeline.kotlin.outputs.PipelineOutputArtifact.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 output of an action.
* @property name The name of the output of an artifact, such as "My App".
*/
public data class PipelineOutputArtifact(
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.codepipeline.outputs.PipelineOutputArtifact): PipelineOutputArtifact = PipelineOutputArtifact(
name = javaType.name(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy