![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.b2bi.kotlin.PartnershipArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.b2bi.kotlin
import com.pulumi.awsnative.b2bi.PartnershipArgs.builder
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
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
/**
* Definition of AWS::B2BI::Partnership Resource Type
* @property capabilities Returns one or more capabilities associated with this partnership.
* @property email
* @property name Returns the name of the partnership.
* @property phone
* @property profileId Returns the unique, system-generated identifier for the profile connected to this partnership.
* @property tags A key-value pair for a specific partnership. Tags are metadata that you can use to search for and group capabilities for various purposes.
*/
public data class PartnershipArgs(
public val capabilities: Output>? = null,
public val email: Output? = null,
public val name: Output? = null,
public val phone: Output? = null,
public val profileId: Output? = null,
public val tags: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.b2bi.PartnershipArgs =
com.pulumi.awsnative.b2bi.PartnershipArgs.builder()
.capabilities(capabilities?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.email(email?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.phone(phone?.applyValue({ args0 -> args0 }))
.profileId(profileId?.applyValue({ args0 -> args0 }))
.tags(
tags?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [PartnershipArgs].
*/
@PulumiTagMarker
public class PartnershipArgsBuilder internal constructor() {
private var capabilities: Output>? = null
private var email: Output? = null
private var name: Output? = null
private var phone: Output? = null
private var profileId: Output? = null
private var tags: Output>? = null
/**
* @param value Returns one or more capabilities associated with this partnership.
*/
@JvmName("gjouqxfovosavhtt")
public suspend fun capabilities(`value`: Output>) {
this.capabilities = value
}
@JvmName("jpxpjmrjchokwjrf")
public suspend fun capabilities(vararg values: Output) {
this.capabilities = Output.all(values.asList())
}
/**
* @param values Returns one or more capabilities associated with this partnership.
*/
@JvmName("vvtfaywrgrodhapl")
public suspend fun capabilities(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy