All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.opsworks.kotlin.outputs.NodejsAppLayerCloudwatchConfigurationLogStream.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.opsworks.kotlin.outputs

import kotlin.Int
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property batchCount
 * @property batchSize
 * @property bufferDuration
 * @property datetimeFormat
 * @property encoding
 * @property file
 * @property fileFingerprintLines
 * @property initialPosition
 * @property logGroupName
 * @property multilineStartPattern
 * @property timeZone
 */
public data class NodejsAppLayerCloudwatchConfigurationLogStream(
    public val batchCount: Int? = null,
    public val batchSize: Int? = null,
    public val bufferDuration: Int? = null,
    public val datetimeFormat: String? = null,
    public val encoding: String? = null,
    public val `file`: String,
    public val fileFingerprintLines: String? = null,
    public val initialPosition: String? = null,
    public val logGroupName: String,
    public val multilineStartPattern: String? = null,
    public val timeZone: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.aws.opsworks.outputs.NodejsAppLayerCloudwatchConfigurationLogStream): NodejsAppLayerCloudwatchConfigurationLogStream =
            NodejsAppLayerCloudwatchConfigurationLogStream(
                batchCount = javaType.batchCount().map({ args0 -> args0 }).orElse(null),
                batchSize = javaType.batchSize().map({ args0 -> args0 }).orElse(null),
                bufferDuration = javaType.bufferDuration().map({ args0 -> args0 }).orElse(null),
                datetimeFormat = javaType.datetimeFormat().map({ args0 -> args0 }).orElse(null),
                encoding = javaType.encoding().map({ args0 -> args0 }).orElse(null),
                `file` = javaType.`file`(),
                fileFingerprintLines = javaType.fileFingerprintLines().map({ args0 -> args0 }).orElse(null),
                initialPosition = javaType.initialPosition().map({ args0 -> args0 }).orElse(null),
                logGroupName = javaType.logGroupName(),
                multilineStartPattern = javaType.multilineStartPattern().map({ args0 -> args0 }).orElse(null),
                timeZone = javaType.timeZone().map({ args0 -> args0 }).orElse(null),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy