
com.pulumi.aws.s3.kotlin.outputs.BucketV2Logging.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.s3.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property targetBucket Name of the bucket that will receive the log objects.
* @property targetPrefix To specify a key prefix for log objects.
*/
public data class BucketV2Logging(
public val targetBucket: String,
public val targetPrefix: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.s3.outputs.BucketV2Logging): BucketV2Logging =
BucketV2Logging(
targetBucket = javaType.targetBucket(),
targetPrefix = javaType.targetPrefix().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy