com.pulumi.aws.transfer.kotlin.inputs.WorkflowOnExceptionStepCopyStepDetailsDestinationFileLocationEfsFileLocationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.aws.transfer.kotlin.inputs
import com.pulumi.aws.transfer.inputs.WorkflowOnExceptionStepCopyStepDetailsDestinationFileLocationEfsFileLocationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property fileSystemId The ID of the file system, assigned by Amazon EFS.
* @property path The pathname for the folder being used by a workflow.
*/
public data class WorkflowOnExceptionStepCopyStepDetailsDestinationFileLocationEfsFileLocationArgs(
public val fileSystemId: Output? = null,
public val path: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.transfer.inputs.WorkflowOnExceptionStepCopyStepDetailsDestinationFileLocationEfsFileLocationArgs =
com.pulumi.aws.transfer.inputs.WorkflowOnExceptionStepCopyStepDetailsDestinationFileLocationEfsFileLocationArgs.builder()
.fileSystemId(fileSystemId?.applyValue({ args0 -> args0 }))
.path(path?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [WorkflowOnExceptionStepCopyStepDetailsDestinationFileLocationEfsFileLocationArgs].
*/
@PulumiTagMarker
public class WorkflowOnExceptionStepCopyStepDetailsDestinationFileLocationEfsFileLocationArgsBuilder
internal constructor() {
private var fileSystemId: Output? = null
private var path: Output? = null
/**
* @param value The ID of the file system, assigned by Amazon EFS.
*/
@JvmName("ekpquavfbpxnytkd")
public suspend fun fileSystemId(`value`: Output) {
this.fileSystemId = value
}
/**
* @param value The pathname for the folder being used by a workflow.
*/
@JvmName("cilkqsfkrgfyykli")
public suspend fun path(`value`: Output) {
this.path = value
}
/**
* @param value The ID of the file system, assigned by Amazon EFS.
*/
@JvmName("epfdqyhbmkchikrf")
public suspend fun fileSystemId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.fileSystemId = mapped
}
/**
* @param value The pathname for the folder being used by a workflow.
*/
@JvmName("xrcixpnaphwlitth")
public suspend fun path(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.path = mapped
}
internal fun build(): WorkflowOnExceptionStepCopyStepDetailsDestinationFileLocationEfsFileLocationArgs =
WorkflowOnExceptionStepCopyStepDetailsDestinationFileLocationEfsFileLocationArgs(
fileSystemId = fileSystemId,
path = path,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy