![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.bedrock.kotlin.outputs.AgentS3Identifier.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.bedrock.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The identifier for the S3 resource.
* @property s3BucketName A bucket in S3.
* @property s3ObjectKey A object key in S3.
*/
public data class AgentS3Identifier(
public val s3BucketName: String? = null,
public val s3ObjectKey: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.bedrock.outputs.AgentS3Identifier): AgentS3Identifier = AgentS3Identifier(
s3BucketName = javaType.s3BucketName().map({ args0 -> args0 }).orElse(null),
s3ObjectKey = javaType.s3ObjectKey().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy