![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.imagebuilder.kotlin.outputs.InfrastructureConfigurationLogging.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.imagebuilder.kotlin.outputs
import kotlin.Suppress
/**
* The logging configuration of the infrastructure configuration.
* @property s3Logs The Amazon S3 logging configuration.
*/
public data class InfrastructureConfigurationLogging(
public val s3Logs: InfrastructureConfigurationS3Logs? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.imagebuilder.outputs.InfrastructureConfigurationLogging): InfrastructureConfigurationLogging = InfrastructureConfigurationLogging(
s3Logs = javaType.s3Logs().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.imagebuilder.kotlin.outputs.InfrastructureConfigurationS3Logs.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy