com.pulumi.awsnative.datasync.kotlin.outputs.TaskReportConfigDestinationProperties.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.datasync.kotlin.outputs
import kotlin.Suppress
/**
* Specifies where DataSync uploads your task report.
* @property s3
*/
public data class TaskReportConfigDestinationProperties(
public val s3: TaskReportConfigDestinationS3? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.datasync.outputs.TaskReportConfigDestinationProperties): TaskReportConfigDestinationProperties = TaskReportConfigDestinationProperties(
s3 = javaType.s3().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.datasync.kotlin.outputs.TaskReportConfigDestinationS3.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}