
com.pulumi.aws.transfer.kotlin.inputs.WorkflowStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.transfer.kotlin.inputs
import com.pulumi.aws.transfer.inputs.WorkflowStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs.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 WorkflowStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs(
public val fileSystemId: Output? = null,
public val path: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.transfer.inputs.WorkflowStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs =
com.pulumi.aws.transfer.inputs.WorkflowStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs.builder()
.fileSystemId(fileSystemId?.applyValue({ args0 -> args0 }))
.path(path?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [WorkflowStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs].
*/
@PulumiTagMarker
public class WorkflowStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgsBuilder
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("vabpdnugrtpwffhm")
public suspend fun fileSystemId(`value`: Output) {
this.fileSystemId = value
}
/**
* @param value The pathname for the folder being used by a workflow.
*/
@JvmName("sihxqjlqjpudfgxf")
public suspend fun path(`value`: Output) {
this.path = value
}
/**
* @param value The ID of the file system, assigned by Amazon EFS.
*/
@JvmName("nvjyhjfqflahyitj")
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("liihiaikqseqiobm")
public suspend fun path(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.path = mapped
}
internal fun build(): WorkflowStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs =
WorkflowStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs(
fileSystemId = fileSystemId,
path = path,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy