com.pulumi.awsnative.mediapackage.kotlin.inputs.PackagingGroupLogConfigurationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-native-kotlin Show documentation
Show all versions of pulumi-aws-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.mediapackage.kotlin.inputs
import com.pulumi.awsnative.mediapackage.inputs.PackagingGroupLogConfigurationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property logGroupName Sets a custom AWS CloudWatch log group name for egress logs. If a log group name isn't specified, the default name is used: /aws/MediaPackage/VodEgressAccessLogs.
*/
public data class PackagingGroupLogConfigurationArgs(
public val logGroupName: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.mediapackage.inputs.PackagingGroupLogConfigurationArgs = com.pulumi.awsnative.mediapackage.inputs.PackagingGroupLogConfigurationArgs.builder()
.logGroupName(logGroupName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [PackagingGroupLogConfigurationArgs].
*/
@PulumiTagMarker
public class PackagingGroupLogConfigurationArgsBuilder internal constructor() {
private var logGroupName: Output? = null
/**
* @param value Sets a custom AWS CloudWatch log group name for egress logs. If a log group name isn't specified, the default name is used: /aws/MediaPackage/VodEgressAccessLogs.
*/
@JvmName("vtcmddwdukerydhk")
public suspend fun logGroupName(`value`: Output) {
this.logGroupName = value
}
/**
* @param value Sets a custom AWS CloudWatch log group name for egress logs. If a log group name isn't specified, the default name is used: /aws/MediaPackage/VodEgressAccessLogs.
*/
@JvmName("dyfedcvevshkryiu")
public suspend fun logGroupName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.logGroupName = mapped
}
internal fun build(): PackagingGroupLogConfigurationArgs = PackagingGroupLogConfigurationArgs(
logGroupName = logGroupName,
)
}