
com.pulumi.awsnative.kafkaconnect.kotlin.outputs.CustomPluginFileDescription.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.kafkaconnect.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
* Details about the custom plugin file.
* @property fileMd5 The hex-encoded MD5 checksum of the custom plugin file. You can use it to validate the file.
* @property fileSize The size in bytes of the custom plugin file. You can use it to validate the file.
*/
public data class CustomPluginFileDescription(
public val fileMd5: String? = null,
public val fileSize: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.kafkaconnect.outputs.CustomPluginFileDescription): CustomPluginFileDescription = CustomPluginFileDescription(
fileMd5 = javaType.fileMd5().map({ args0 -> args0 }).orElse(null),
fileSize = javaType.fileSize().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy