All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.aws.appflow.kotlin.inputs.FlowDestinationFlowConfigDestinationConnectorPropertiesCustomerProfilesArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.appflow.kotlin.inputs

import com.pulumi.aws.appflow.inputs.FlowDestinationFlowConfigDestinationConnectorPropertiesCustomerProfilesArgs.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 kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property domainName Unique name of the Amazon Connect Customer Profiles domain.
 * @property objectTypeName Object specified in the Amazon Connect Customer Profiles flow destination.
 */
public data class FlowDestinationFlowConfigDestinationConnectorPropertiesCustomerProfilesArgs(
    public val domainName: Output,
    public val objectTypeName: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.appflow.inputs.FlowDestinationFlowConfigDestinationConnectorPropertiesCustomerProfilesArgs =
        com.pulumi.aws.appflow.inputs.FlowDestinationFlowConfigDestinationConnectorPropertiesCustomerProfilesArgs.builder()
            .domainName(domainName.applyValue({ args0 -> args0 }))
            .objectTypeName(objectTypeName?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [FlowDestinationFlowConfigDestinationConnectorPropertiesCustomerProfilesArgs].
 */
@PulumiTagMarker
public class FlowDestinationFlowConfigDestinationConnectorPropertiesCustomerProfilesArgsBuilder
internal constructor() {
    private var domainName: Output? = null

    private var objectTypeName: Output? = null

    /**
     * @param value Unique name of the Amazon Connect Customer Profiles domain.
     */
    @JvmName("mhavqwvtlkywjxpw")
    public suspend fun domainName(`value`: Output) {
        this.domainName = value
    }

    /**
     * @param value Object specified in the Amazon Connect Customer Profiles flow destination.
     */
    @JvmName("mhyuwgpmxqjeuyrw")
    public suspend fun objectTypeName(`value`: Output) {
        this.objectTypeName = value
    }

    /**
     * @param value Unique name of the Amazon Connect Customer Profiles domain.
     */
    @JvmName("etuokdubbbeqapiv")
    public suspend fun domainName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.domainName = mapped
    }

    /**
     * @param value Object specified in the Amazon Connect Customer Profiles flow destination.
     */
    @JvmName("sxaishsrocaxqugc")
    public suspend fun objectTypeName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.objectTypeName = mapped
    }

    internal fun build(): FlowDestinationFlowConfigDestinationConnectorPropertiesCustomerProfilesArgs = FlowDestinationFlowConfigDestinationConnectorPropertiesCustomerProfilesArgs(
        domainName = domainName ?: throw PulumiNullFieldException("domainName"),
        objectTypeName = objectTypeName,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy