com.pulumi.aws.transfer.kotlin.inputs.WorkflowStepDecryptStepDetailsDestinationFileLocationArgs.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.WorkflowStepDecryptStepDetailsDestinationFileLocationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property efsFileLocation Specifies the details for the EFS file being copied.
* @property s3FileLocation Specifies the details for the S3 file being copied.
*/
public data class WorkflowStepDecryptStepDetailsDestinationFileLocationArgs(
public val efsFileLocation: Output? = null,
public val s3FileLocation: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.transfer.inputs.WorkflowStepDecryptStepDetailsDestinationFileLocationArgs =
com.pulumi.aws.transfer.inputs.WorkflowStepDecryptStepDetailsDestinationFileLocationArgs.builder()
.efsFileLocation(efsFileLocation?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.s3FileLocation(
s3FileLocation?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [WorkflowStepDecryptStepDetailsDestinationFileLocationArgs].
*/
@PulumiTagMarker
public class WorkflowStepDecryptStepDetailsDestinationFileLocationArgsBuilder internal constructor() {
private var efsFileLocation:
Output? = null
private var s3FileLocation:
Output? = null
/**
* @param value Specifies the details for the EFS file being copied.
*/
@JvmName("okdkdutgrimgvdmp")
public suspend fun efsFileLocation(`value`: Output) {
this.efsFileLocation = value
}
/**
* @param value Specifies the details for the S3 file being copied.
*/
@JvmName("rkmycjscyxwrnqnm")
public suspend fun s3FileLocation(`value`: Output) {
this.s3FileLocation = value
}
/**
* @param value Specifies the details for the EFS file being copied.
*/
@JvmName("yphxgqtdnjxraeys")
public suspend fun efsFileLocation(`value`: WorkflowStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.efsFileLocation = mapped
}
/**
* @param argument Specifies the details for the EFS file being copied.
*/
@JvmName("dvdycmwtdwhrnxvf")
public suspend fun efsFileLocation(argument: suspend WorkflowStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgsBuilder.() -> Unit) {
val toBeMapped =
WorkflowStepDecryptStepDetailsDestinationFileLocationEfsFileLocationArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.efsFileLocation = mapped
}
/**
* @param value Specifies the details for the S3 file being copied.
*/
@JvmName("eojmjoxblkuolqmi")
public suspend fun s3FileLocation(`value`: WorkflowStepDecryptStepDetailsDestinationFileLocationS3FileLocationArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.s3FileLocation = mapped
}
/**
* @param argument Specifies the details for the S3 file being copied.
*/
@JvmName("wrfnjkckxemyrugo")
public suspend fun s3FileLocation(argument: suspend WorkflowStepDecryptStepDetailsDestinationFileLocationS3FileLocationArgsBuilder.() -> Unit) {
val toBeMapped =
WorkflowStepDecryptStepDetailsDestinationFileLocationS3FileLocationArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.s3FileLocation = mapped
}
internal fun build(): WorkflowStepDecryptStepDetailsDestinationFileLocationArgs =
WorkflowStepDecryptStepDetailsDestinationFileLocationArgs(
efsFileLocation = efsFileLocation,
s3FileLocation = s3FileLocation,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy