All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.awsnative.datasync.kotlin.outputs.TaskReportConfigOverridesPropertiesDeletedProperties.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.datasync.kotlin.outputs

import com.pulumi.awsnative.datasync.kotlin.enums.TaskReportConfigOverridesPropertiesDeletedPropertiesReportLevel
import kotlin.Suppress

/**
 * Specifies the level of reporting for the files, objects, and directories that Datasync attempted to delete in your destination location. This only applies if you configure your task to delete data in the destination that isn't in the source.
 * @property reportLevel Specifies whether you want your task report to include only what went wrong with your transfer or a list of what succeeded and didn't.
 */
public data class TaskReportConfigOverridesPropertiesDeletedProperties(
    public val reportLevel: TaskReportConfigOverridesPropertiesDeletedPropertiesReportLevel? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.datasync.outputs.TaskReportConfigOverridesPropertiesDeletedProperties): TaskReportConfigOverridesPropertiesDeletedProperties =
            TaskReportConfigOverridesPropertiesDeletedProperties(
                reportLevel = javaType.reportLevel().map({ args0 ->
                    args0.let({ args0 ->
                        com.pulumi.awsnative.datasync.kotlin.enums.TaskReportConfigOverridesPropertiesDeletedPropertiesReportLevel.Companion.toKotlin(args0)
                    })
                }).orElse(null),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy