![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.transfer.kotlin.outputs.WorkflowStepCustomStepDetailsProperties.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.transfer.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
* Details for a step that invokes a lambda function.
* @property name The name of the step, used as an identifier.
* @property sourceFileLocation Specifies which file to use as input to the workflow step.
* @property target The ARN for the lambda function that is being called.
* @property timeoutSeconds Timeout, in seconds, for the step.
*/
public data class WorkflowStepCustomStepDetailsProperties(
public val name: String? = null,
public val sourceFileLocation: String? = null,
public val target: String? = null,
public val timeoutSeconds: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.transfer.outputs.WorkflowStepCustomStepDetailsProperties): WorkflowStepCustomStepDetailsProperties = WorkflowStepCustomStepDetailsProperties(
name = javaType.name().map({ args0 -> args0 }).orElse(null),
sourceFileLocation = javaType.sourceFileLocation().map({ args0 -> args0 }).orElse(null),
target = javaType.target().map({ args0 -> args0 }).orElse(null),
timeoutSeconds = javaType.timeoutSeconds().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy