com.pulumi.aws.guardduty.kotlin.inputs.DetectorDatasourcesS3LogsArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.aws.guardduty.kotlin.inputs
import com.pulumi.aws.guardduty.inputs.DetectorDatasourcesS3LogsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property enable If true, enables [S3 protection](https://docs.aws.amazon.com/guardduty/latest/ug/s3-protection.html).
* Defaults to `true`.
*/
public data class DetectorDatasourcesS3LogsArgs(
public val enable: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.guardduty.inputs.DetectorDatasourcesS3LogsArgs =
com.pulumi.aws.guardduty.inputs.DetectorDatasourcesS3LogsArgs.builder()
.enable(enable.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DetectorDatasourcesS3LogsArgs].
*/
@PulumiTagMarker
public class DetectorDatasourcesS3LogsArgsBuilder internal constructor() {
private var enable: Output? = null
/**
* @param value If true, enables [S3 protection](https://docs.aws.amazon.com/guardduty/latest/ug/s3-protection.html).
* Defaults to `true`.
*/
@JvmName("txkdgbqtpcmvknhu")
public suspend fun enable(`value`: Output) {
this.enable = value
}
/**
* @param value If true, enables [S3 protection](https://docs.aws.amazon.com/guardduty/latest/ug/s3-protection.html).
* Defaults to `true`.
*/
@JvmName("mldydpxjoqvrjkfh")
public suspend fun enable(`value`: Boolean) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.enable = mapped
}
internal fun build(): DetectorDatasourcesS3LogsArgs = DetectorDatasourcesS3LogsArgs(
enable = enable ?: throw PulumiNullFieldException("enable"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy