![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.dynamodb.kotlin.outputs.TableS3BucketSource.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.dynamodb.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The S3 bucket that is being imported from.
* @property s3Bucket The S3 bucket that is being imported from.
* @property s3BucketOwner The account number of the S3 bucket that is being imported from. If the bucket is owned by the requester this is optional.
* @property s3KeyPrefix The key prefix shared by all S3 Objects that are being imported.
*/
public data class TableS3BucketSource(
public val s3Bucket: String,
public val s3BucketOwner: String? = null,
public val s3KeyPrefix: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.dynamodb.outputs.TableS3BucketSource): TableS3BucketSource = TableS3BucketSource(
s3Bucket = javaType.s3Bucket(),
s3BucketOwner = javaType.s3BucketOwner().map({ args0 -> args0 }).orElse(null),
s3KeyPrefix = javaType.s3KeyPrefix().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy