
com.pulumi.aws.securitylake.kotlin.inputs.SubscriberSourceCustomLogSourceResourceArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.securitylake.kotlin.inputs
import com.pulumi.aws.securitylake.inputs.SubscriberSourceCustomLogSourceResourceArgs.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 com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property attributes The attributes of the third-party custom source. See `attributes` Block below.
* @property providers The details of the log provider for the third-party custom source. See `provider` Block below.
* @property sourceName The name for a third-party custom source. This must be a Regionally unique value.
* @property sourceVersion The version for a third-party custom source. This must be a Regionally unique value.
*/
public data class SubscriberSourceCustomLogSourceResourceArgs(
public val attributes: Output>? = null,
public val providers: Output>? = null,
public val sourceName: Output,
public val sourceVersion: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.securitylake.inputs.SubscriberSourceCustomLogSourceResourceArgs =
com.pulumi.aws.securitylake.inputs.SubscriberSourceCustomLogSourceResourceArgs.builder()
.attributes(
attributes?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.providers(
providers?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.sourceName(sourceName.applyValue({ args0 -> args0 }))
.sourceVersion(sourceVersion?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SubscriberSourceCustomLogSourceResourceArgs].
*/
@PulumiTagMarker
public class SubscriberSourceCustomLogSourceResourceArgsBuilder internal constructor() {
private var attributes: Output>? = null
private var providers: Output>? = null
private var sourceName: Output? = null
private var sourceVersion: Output? = null
/**
* @param value The attributes of the third-party custom source. See `attributes` Block below.
*/
@JvmName("jwifavyndcgcinan")
public suspend fun attributes(`value`: Output>) {
this.attributes = value
}
@JvmName("onktjdygcccmlovn")
public suspend fun attributes(vararg values: Output) {
this.attributes = Output.all(values.asList())
}
/**
* @param values The attributes of the third-party custom source. See `attributes` Block below.
*/
@JvmName("pypuyhxnxbbturwe")
public suspend fun attributes(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy