![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.evidently.kotlin.outputs.ProjectDataDeliveryObject.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.evidently.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Destinations for data.
* @property logGroup If the project stores evaluation events in CloudWatch Logs , this structure stores the log group name.
* @property s3 If the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix.
*/
public data class ProjectDataDeliveryObject(
public val logGroup: String? = null,
public val s3: ProjectS3Destination? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.evidently.outputs.ProjectDataDeliveryObject): ProjectDataDeliveryObject = ProjectDataDeliveryObject(
logGroup = javaType.logGroup().map({ args0 -> args0 }).orElse(null),
s3 = javaType.s3().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.evidently.kotlin.outputs.ProjectS3Destination.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy