![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.s3.kotlin.outputs.MultiRegionAccessPointRegion.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.s3.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property bucket The name of the associated bucket for the Region.
* @property bucketAccountId The AWS account ID that owns the Amazon S3 bucket that's associated with this Multi-Region Access Point.
*/
public data class MultiRegionAccessPointRegion(
public val bucket: String,
public val bucketAccountId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.s3.outputs.MultiRegionAccessPointRegion): MultiRegionAccessPointRegion = MultiRegionAccessPointRegion(
bucket = javaType.bucket(),
bucketAccountId = javaType.bucketAccountId().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy