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

com.pulumi.aws.customerprofiles.kotlin.inputs.DomainMatchingJobScheduleArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.aws.customerprofiles.kotlin.inputs

import com.pulumi.aws.customerprofiles.inputs.DomainMatchingJobScheduleArgs.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 dayOfTheWeek The day when the Identity Resolution Job should run every week.
 * @property time The time when the Identity Resolution Job should run every week.
 */
public data class DomainMatchingJobScheduleArgs(
    public val dayOfTheWeek: Output,
    public val time: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.customerprofiles.inputs.DomainMatchingJobScheduleArgs =
        com.pulumi.aws.customerprofiles.inputs.DomainMatchingJobScheduleArgs.builder()
            .dayOfTheWeek(dayOfTheWeek.applyValue({ args0 -> args0 }))
            .time(time.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [DomainMatchingJobScheduleArgs].
 */
@PulumiTagMarker
public class DomainMatchingJobScheduleArgsBuilder internal constructor() {
    private var dayOfTheWeek: Output? = null

    private var time: Output? = null

    /**
     * @param value The day when the Identity Resolution Job should run every week.
     */
    @JvmName("aeyingxnbxxmdcyo")
    public suspend fun dayOfTheWeek(`value`: Output) {
        this.dayOfTheWeek = value
    }

    /**
     * @param value The time when the Identity Resolution Job should run every week.
     */
    @JvmName("xyfhcvtpjsofocdm")
    public suspend fun time(`value`: Output) {
        this.time = value
    }

    /**
     * @param value The day when the Identity Resolution Job should run every week.
     */
    @JvmName("valguhuixlbqexae")
    public suspend fun dayOfTheWeek(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.dayOfTheWeek = mapped
    }

    /**
     * @param value The time when the Identity Resolution Job should run every week.
     */
    @JvmName("sjhxfeguaaysjtno")
    public suspend fun time(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.time = mapped
    }

    internal fun build(): DomainMatchingJobScheduleArgs = DomainMatchingJobScheduleArgs(
        dayOfTheWeek = dayOfTheWeek ?: throw PulumiNullFieldException("dayOfTheWeek"),
        time = time ?: throw PulumiNullFieldException("time"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy