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

com.pulumi.awsnative.bedrock.kotlin.outputs.DataSourceIntermediateStorage.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.bedrock.kotlin.outputs

import kotlin.Suppress

/**
 * A location for storing content from data sources temporarily as it is processed by custom components in the ingestion pipeline.
 * @property s3Location An S3 bucket path.
 */
public data class DataSourceIntermediateStorage(
    public val s3Location: DataSourceS3Location,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.bedrock.outputs.DataSourceIntermediateStorage): DataSourceIntermediateStorage = DataSourceIntermediateStorage(
            s3Location = javaType.s3Location().let({ args0 ->
                com.pulumi.awsnative.bedrock.kotlin.outputs.DataSourceS3Location.Companion.toKotlin(args0)
            }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy