![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.awsnative.customerprofiles.kotlin.IntegrationArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.customerprofiles.kotlin
import com.pulumi.awsnative.customerprofiles.IntegrationArgs.builder
import com.pulumi.awsnative.customerprofiles.kotlin.inputs.IntegrationFlowDefinitionArgs
import com.pulumi.awsnative.customerprofiles.kotlin.inputs.IntegrationFlowDefinitionArgsBuilder
import com.pulumi.awsnative.customerprofiles.kotlin.inputs.IntegrationObjectTypeMappingArgs
import com.pulumi.awsnative.customerprofiles.kotlin.inputs.IntegrationObjectTypeMappingArgsBuilder
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
/**
* The resource schema for creating an Amazon Connect Customer Profiles Integration.
* @property domainName The unique name of the domain.
* @property flowDefinition The configuration that controls how Customer Profiles retrieves data from the source.
* @property objectTypeName The name of the ObjectType defined for the 3rd party data in Profile Service
* @property objectTypeNames The mapping between 3rd party event types and ObjectType names
* @property tags The tags (keys and values) associated with the integration
* @property uri The URI of the S3 bucket or any other type of data source.
*/
public data class IntegrationArgs(
public val domainName: Output? = null,
public val flowDefinition: Output? = null,
public val objectTypeName: Output? = null,
public val objectTypeNames: Output>? = null,
public val tags: Output>? = null,
public val uri: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.customerprofiles.IntegrationArgs =
com.pulumi.awsnative.customerprofiles.IntegrationArgs.builder()
.domainName(domainName?.applyValue({ args0 -> args0 }))
.flowDefinition(flowDefinition?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.objectTypeName(objectTypeName?.applyValue({ args0 -> args0 }))
.objectTypeNames(
objectTypeNames?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.uri(uri?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [IntegrationArgs].
*/
@PulumiTagMarker
public class IntegrationArgsBuilder internal constructor() {
private var domainName: Output? = null
private var flowDefinition: Output? = null
private var objectTypeName: Output? = null
private var objectTypeNames: Output>? = null
private var tags: Output>? = null
private var uri: Output? = null
/**
* @param value The unique name of the domain.
*/
@JvmName("wtjatbyyiuwwkqlo")
public suspend fun domainName(`value`: Output) {
this.domainName = value
}
/**
* @param value The configuration that controls how Customer Profiles retrieves data from the source.
*/
@JvmName("lxxffnyxabacmpir")
public suspend fun flowDefinition(`value`: Output) {
this.flowDefinition = value
}
/**
* @param value The name of the ObjectType defined for the 3rd party data in Profile Service
*/
@JvmName("rkojeticuonloqoc")
public suspend fun objectTypeName(`value`: Output) {
this.objectTypeName = value
}
/**
* @param value The mapping between 3rd party event types and ObjectType names
*/
@JvmName("beepyreekxqgdpun")
public suspend fun objectTypeNames(`value`: Output>) {
this.objectTypeNames = value
}
@JvmName("jigsyidjrelucqja")
public suspend fun objectTypeNames(vararg values: Output) {
this.objectTypeNames = Output.all(values.asList())
}
/**
* @param values The mapping between 3rd party event types and ObjectType names
*/
@JvmName("gnopliaddckewijp")
public suspend fun objectTypeNames(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy