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

commonMain.aws.sdk.kotlin.services.apptest.model.Output.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.apptest.model



/**
 * Specifies an output.
 */
public sealed class Output {
    /**
     * The file of the output.
     */
    public data class File(val value: aws.sdk.kotlin.services.apptest.model.OutputFile) : aws.sdk.kotlin.services.apptest.model.Output() {
    }

    public object SdkUnknown : aws.sdk.kotlin.services.apptest.model.Output() {
    }

    /**
     * Casts this [Output] as a [File] and retrieves its [aws.sdk.kotlin.services.apptest.model.OutputFile] value. Throws an exception if the [Output] is not a
     * [File].
     */
    public fun asFile(): aws.sdk.kotlin.services.apptest.model.OutputFile = (this as Output.File).value

    /**
     * Casts this [Output] as a [File] and retrieves its [aws.sdk.kotlin.services.apptest.model.OutputFile] value. Returns null if the [Output] is not a [File].
     */
    public fun asFileOrNull(): aws.sdk.kotlin.services.apptest.model.OutputFile? = (this as? Output.File)?.value
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy