com.pulumi.awsnative.guardduty.kotlin.inputs.GetThreatIntelSetPlainArgs.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.guardduty.kotlin.inputs
import com.pulumi.awsnative.guardduty.inputs.GetThreatIntelSetPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property detectorId The unique ID of the detector of the GuardDuty account that you want to create a threatIntelSet for.
* @property id The unique ID of the `threatIntelSet` .
*/
public data class GetThreatIntelSetPlainArgs(
public val detectorId: String,
public val id: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.guardduty.inputs.GetThreatIntelSetPlainArgs =
com.pulumi.awsnative.guardduty.inputs.GetThreatIntelSetPlainArgs.builder()
.detectorId(detectorId.let({ args0 -> args0 }))
.id(id.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetThreatIntelSetPlainArgs].
*/
@PulumiTagMarker
public class GetThreatIntelSetPlainArgsBuilder internal constructor() {
private var detectorId: String? = null
private var id: String? = null
/**
* @param value The unique ID of the detector of the GuardDuty account that you want to create a threatIntelSet for.
*/
@JvmName("dybeyyiekuecgorw")
public suspend fun detectorId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.detectorId = mapped
}
/**
* @param value The unique ID of the `threatIntelSet` .
*/
@JvmName("kpxcanuandruhsig")
public suspend fun id(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.id = mapped
}
internal fun build(): GetThreatIntelSetPlainArgs = GetThreatIntelSetPlainArgs(
detectorId = detectorId ?: throw PulumiNullFieldException("detectorId"),
id = id ?: throw PulumiNullFieldException("id"),
)
}