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

commonMain.aws.sdk.kotlin.services.healthlake.model.OutputDataConfig.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.healthlake.model



/**
 * The output data configuration that was supplied when the export job was created.
 */
public sealed class OutputDataConfig {
    /**
     * The output data configuration that was supplied when the export job was created.
     */
    public data class S3Configuration(val value: aws.sdk.kotlin.services.healthlake.model.S3Configuration) : aws.sdk.kotlin.services.healthlake.model.OutputDataConfig() {
    }

    public object SdkUnknown : aws.sdk.kotlin.services.healthlake.model.OutputDataConfig() {
    }

    /**
     * Casts this [OutputDataConfig] as a [S3Configuration] and retrieves its [aws.sdk.kotlin.services.healthlake.model.S3Configuration] value. Throws an exception if the [OutputDataConfig] is not a
     * [S3Configuration].
     */
    public fun asS3Configuration(): aws.sdk.kotlin.services.healthlake.model.S3Configuration = (this as OutputDataConfig.S3Configuration).value

    /**
     * Casts this [OutputDataConfig] as a [S3Configuration] and retrieves its [aws.sdk.kotlin.services.healthlake.model.S3Configuration] value. Returns null if the [OutputDataConfig] is not a [S3Configuration].
     */
    public fun asS3ConfigurationOrNull(): aws.sdk.kotlin.services.healthlake.model.S3Configuration? = (this as? OutputDataConfig.S3Configuration)?.value
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy