
com.pulumi.aws.transfer.kotlin.outputs.WorkflowOnExceptionStepCopyStepDetailsDestinationFileLocationS3FileLocation.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.transfer.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property bucket Specifies the S3 bucket for the customer input file.
* @property key The name assigned to the file when it was created in S3. You use the object key to retrieve the object.
*/
public data class WorkflowOnExceptionStepCopyStepDetailsDestinationFileLocationS3FileLocation(
public val bucket: String? = null,
public val key: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.aws.transfer.outputs.WorkflowOnExceptionStepCopyStepDetailsDestinationFileLocationS3FileLocation): WorkflowOnExceptionStepCopyStepDetailsDestinationFileLocationS3FileLocation =
WorkflowOnExceptionStepCopyStepDetailsDestinationFileLocationS3FileLocation(
bucket = javaType.bucket().map({ args0 -> args0 }).orElse(null),
key = javaType.key().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy