
com.pulumi.awsnative.timestream.kotlin.outputs.LogDeliveryConfigurationPropertiesS3ConfigurationProperties.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.timestream.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
* S3 configuration for sending logs to customer account from the InfluxDB instance.
* @property bucketName The bucket name for logs to be sent from the InfluxDB instance
* @property enabled Specifies whether logging to customer specified bucket is enabled.
*/
public data class LogDeliveryConfigurationPropertiesS3ConfigurationProperties(
public val bucketName: String,
public val enabled: Boolean,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.awsnative.timestream.outputs.LogDeliveryConfigurationPropertiesS3ConfigurationProperties): LogDeliveryConfigurationPropertiesS3ConfigurationProperties =
LogDeliveryConfigurationPropertiesS3ConfigurationProperties(
bucketName = javaType.bucketName(),
enabled = javaType.enabled(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy