![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.guardduty.kotlin.inputs.GetIpSetPlainArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.guardduty.kotlin.inputs
import com.pulumi.awsnative.guardduty.inputs.GetIpSetPlainArgs.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 for which you want to create an IPSet.
* To find the `detectorId` in the current Region, see the
* Settings page in the GuardDuty console, or run the [ListDetectors](https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html) API.
* @property id
*/
public data class GetIpSetPlainArgs(
public val detectorId: String,
public val id: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.guardduty.inputs.GetIpSetPlainArgs =
com.pulumi.awsnative.guardduty.inputs.GetIpSetPlainArgs.builder()
.detectorId(detectorId.let({ args0 -> args0 }))
.id(id.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetIpSetPlainArgs].
*/
@PulumiTagMarker
public class GetIpSetPlainArgsBuilder internal constructor() {
private var detectorId: String? = null
private var id: String? = null
/**
* @param value The unique ID of the detector of the GuardDuty account for which you want to create an IPSet.
* To find the `detectorId` in the current Region, see the
* Settings page in the GuardDuty console, or run the [ListDetectors](https://docs.aws.amazon.com/guardduty/latest/APIReference/API_ListDetectors.html) API.
*/
@JvmName("hudggbjupjdfdkmj")
public suspend fun detectorId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.detectorId = mapped
}
/**
* @param value
*/
@JvmName("ksghtolpppxopebh")
public suspend fun id(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.id = mapped
}
internal fun build(): GetIpSetPlainArgs = GetIpSetPlainArgs(
detectorId = detectorId ?: throw PulumiNullFieldException("detectorId"),
id = id ?: throw PulumiNullFieldException("id"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy