com.pulumi.aws.securityhub.kotlin.inputs.AutomationRuleCriteriaCreatedAtDateRangeArgs.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.securityhub.kotlin.inputs
import com.pulumi.aws.securityhub.inputs.AutomationRuleCriteriaCreatedAtDateRangeArgs.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.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property unit A date range unit for the date filter. Valid values: `DAYS`.
* @property value A date range value for the date filter, provided as an Integer.
*/
public data class AutomationRuleCriteriaCreatedAtDateRangeArgs(
public val unit: Output,
public val `value`: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.securityhub.inputs.AutomationRuleCriteriaCreatedAtDateRangeArgs =
com.pulumi.aws.securityhub.inputs.AutomationRuleCriteriaCreatedAtDateRangeArgs.builder()
.unit(unit.applyValue({ args0 -> args0 }))
.`value`(`value`.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AutomationRuleCriteriaCreatedAtDateRangeArgs].
*/
@PulumiTagMarker
public class AutomationRuleCriteriaCreatedAtDateRangeArgsBuilder internal constructor() {
private var unit: Output? = null
private var `value`: Output? = null
/**
* @param value A date range unit for the date filter. Valid values: `DAYS`.
*/
@JvmName("lgnnsfpttmhhrjim")
public suspend fun unit(`value`: Output) {
this.unit = value
}
/**
* @param value A date range value for the date filter, provided as an Integer.
*/
@JvmName("jdkqmkpyhvhegvva")
public suspend fun `value`(`value`: Output) {
this.`value` = value
}
/**
* @param value A date range unit for the date filter. Valid values: `DAYS`.
*/
@JvmName("nbpuslyowbabsrqq")
public suspend fun unit(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.unit = mapped
}
/**
* @param value A date range value for the date filter, provided as an Integer.
*/
@JvmName("eiuarrxfqerkidej")
public suspend fun `value`(`value`: Int) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.`value` = mapped
}
internal fun build(): AutomationRuleCriteriaCreatedAtDateRangeArgs =
AutomationRuleCriteriaCreatedAtDateRangeArgs(
unit = unit ?: throw PulumiNullFieldException("unit"),
`value` = `value` ?: throw PulumiNullFieldException("value"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy