![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.transfer.kotlin.inputs.WorkflowEfsInputFileLocationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-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.awsnative.transfer.kotlin.inputs
import com.pulumi.awsnative.transfer.inputs.WorkflowEfsInputFileLocationArgs.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
/**
* Specifies the details for an EFS file.
* @property fileSystemId Specifies the EFS filesystem that contains the file.
* @property path The name assigned to the file when it was created in EFS. You use the object path to retrieve the object.
*/
public data class WorkflowEfsInputFileLocationArgs(
public val fileSystemId: Output? = null,
public val path: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.transfer.inputs.WorkflowEfsInputFileLocationArgs =
com.pulumi.awsnative.transfer.inputs.WorkflowEfsInputFileLocationArgs.builder()
.fileSystemId(fileSystemId?.applyValue({ args0 -> args0 }))
.path(path?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [WorkflowEfsInputFileLocationArgs].
*/
@PulumiTagMarker
public class WorkflowEfsInputFileLocationArgsBuilder internal constructor() {
private var fileSystemId: Output? = null
private var path: Output? = null
/**
* @param value Specifies the EFS filesystem that contains the file.
*/
@JvmName("oyeocitsnonxckoq")
public suspend fun fileSystemId(`value`: Output) {
this.fileSystemId = value
}
/**
* @param value The name assigned to the file when it was created in EFS. You use the object path to retrieve the object.
*/
@JvmName("neyukkfqnsorhgyy")
public suspend fun path(`value`: Output) {
this.path = value
}
/**
* @param value Specifies the EFS filesystem that contains the file.
*/
@JvmName("bbagsmabmdpdmwdb")
public suspend fun fileSystemId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.fileSystemId = mapped
}
/**
* @param value The name assigned to the file when it was created in EFS. You use the object path to retrieve the object.
*/
@JvmName("eealemdmspvynmdh")
public suspend fun path(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.path = mapped
}
internal fun build(): WorkflowEfsInputFileLocationArgs = WorkflowEfsInputFileLocationArgs(
fileSystemId = fileSystemId,
path = path,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy