
commonMain.aws.sdk.kotlin.services.healthlake.model.InputDataConfig.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.healthlake.model
/**
* The input properties for an import job.
*/
public sealed class InputDataConfig {
/**
* The S3Uri is the user specified S3 location of the FHIR data to be imported into AWS HealthLake.
*/
public data class S3Uri(val value: kotlin.String) : aws.sdk.kotlin.services.healthlake.model.InputDataConfig() {
}
public object SdkUnknown : aws.sdk.kotlin.services.healthlake.model.InputDataConfig() {
}
/**
* Casts this [InputDataConfig] as a [S3Uri] and retrieves its [kotlin.String] value. Throws an exception if the [InputDataConfig] is not a
* [S3Uri].
*/
public fun asS3Uri(): kotlin.String = (this as InputDataConfig.S3Uri).value
/**
* Casts this [InputDataConfig] as a [S3Uri] and retrieves its [kotlin.String] value. Returns null if the [InputDataConfig] is not a [S3Uri].
*/
public fun asS3UriOrNull(): kotlin.String? = (this as? InputDataConfig.S3Uri)?.value
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy