
com.pulumi.awsnative.transfer.kotlin.outputs.WorkflowStepDeleteStepDetailsProperties.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.transfer.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Details for a step that deletes the file.
* @property name The name of the step, used as an identifier.
* @property sourceFileLocation Specifies which file to use as input to the workflow step.
*/
public data class WorkflowStepDeleteStepDetailsProperties(
public val name: String? = null,
public val sourceFileLocation: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.transfer.outputs.WorkflowStepDeleteStepDetailsProperties): WorkflowStepDeleteStepDetailsProperties = WorkflowStepDeleteStepDetailsProperties(
name = javaType.name().map({ args0 -> args0 }).orElse(null),
sourceFileLocation = javaType.sourceFileLocation().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy