
com.pulumi.awsnative.pipes.kotlin.outputs.PipeTargetCloudWatchLogsParameters.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.pipes.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property logStreamName The name of the log stream.
* @property timestamp The time the event occurred, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
*/
public data class PipeTargetCloudWatchLogsParameters(
public val logStreamName: String? = null,
public val timestamp: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.pipes.outputs.PipeTargetCloudWatchLogsParameters): PipeTargetCloudWatchLogsParameters = PipeTargetCloudWatchLogsParameters(
logStreamName = javaType.logStreamName().map({ args0 -> args0 }).orElse(null),
timestamp = javaType.timestamp().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy