![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.transfer.kotlin.outputs.WorkflowS3FileLocation.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.transfer.kotlin.outputs
import kotlin.Suppress
/**
* Specifies the location for the file being copied. Only applicable for the Copy type of workflow steps.
* @property s3FileLocation Specifies the details for the file location for the file that's being used in the workflow. Only applicable if you are using Amazon S3 storage.
*/
public data class WorkflowS3FileLocation(
public val s3FileLocation: WorkflowS3InputFileLocation? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.transfer.outputs.WorkflowS3FileLocation): WorkflowS3FileLocation = WorkflowS3FileLocation(
s3FileLocation = javaType.s3FileLocation().map({ args0 ->
args0.let({ args0 ->
com.pulumi.awsnative.transfer.kotlin.outputs.WorkflowS3InputFileLocation.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy