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

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

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

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



/**
 * Defines a file.
 */
public sealed class File {
    /**
     * The file type of the file.
     */
    public data class FileType(val value: aws.sdk.kotlin.services.apptest.model.CompareFileType) : aws.sdk.kotlin.services.apptest.model.File() {
    }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy