![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.securityhub.kotlin.inputs.GetDelegatedAdminPlainArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.securityhub.kotlin.inputs
import com.pulumi.awsnative.securityhub.inputs.GetDelegatedAdminPlainArgs.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 delegatedAdminIdentifier The ID of the delegated Security Hub administrator account, in the format of `accountID/Region` .
*/
public data class GetDelegatedAdminPlainArgs(
public val delegatedAdminIdentifier: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.securityhub.inputs.GetDelegatedAdminPlainArgs =
com.pulumi.awsnative.securityhub.inputs.GetDelegatedAdminPlainArgs.builder()
.delegatedAdminIdentifier(delegatedAdminIdentifier.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetDelegatedAdminPlainArgs].
*/
@PulumiTagMarker
public class GetDelegatedAdminPlainArgsBuilder internal constructor() {
private var delegatedAdminIdentifier: String? = null
/**
* @param value The ID of the delegated Security Hub administrator account, in the format of `accountID/Region` .
*/
@JvmName("jsftwdbstalsxgay")
public suspend fun delegatedAdminIdentifier(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.delegatedAdminIdentifier = mapped
}
internal fun build(): GetDelegatedAdminPlainArgs = GetDelegatedAdminPlainArgs(
delegatedAdminIdentifier = delegatedAdminIdentifier ?: throw
PulumiNullFieldException("delegatedAdminIdentifier"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy