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

com.pulumi.awsnative.cognito.kotlin.UserPoolUiCustomizationAttachmentArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.cognito.kotlin

import com.pulumi.awsnative.cognito.UserPoolUiCustomizationAttachmentArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * Resource Type definition for AWS::Cognito::UserPoolUICustomizationAttachment
 * @property clientId The client ID for the client app. You can specify the UI customization settings for a single client (with a specific clientId) or for all clients (by setting the clientId to `ALL` ).
 * @property css The CSS values in the UI customization.
 * @property userPoolId The user pool ID for the user pool.
 */
public data class UserPoolUiCustomizationAttachmentArgs(
    public val clientId: Output? = null,
    public val css: Output? = null,
    public val userPoolId: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.cognito.UserPoolUiCustomizationAttachmentArgs =
        com.pulumi.awsnative.cognito.UserPoolUiCustomizationAttachmentArgs.builder()
            .clientId(clientId?.applyValue({ args0 -> args0 }))
            .css(css?.applyValue({ args0 -> args0 }))
            .userPoolId(userPoolId?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [UserPoolUiCustomizationAttachmentArgs].
 */
@PulumiTagMarker
public class UserPoolUiCustomizationAttachmentArgsBuilder internal constructor() {
    private var clientId: Output? = null

    private var css: Output? = null

    private var userPoolId: Output? = null

    /**
     * @param value The client ID for the client app. You can specify the UI customization settings for a single client (with a specific clientId) or for all clients (by setting the clientId to `ALL` ).
     */
    @JvmName("dhlyainmyhgxjjfh")
    public suspend fun clientId(`value`: Output) {
        this.clientId = value
    }

    /**
     * @param value The CSS values in the UI customization.
     */
    @JvmName("rkkmuifdtgnqtwwj")
    public suspend fun css(`value`: Output) {
        this.css = value
    }

    /**
     * @param value The user pool ID for the user pool.
     */
    @JvmName("ildfhgonlhkbjosa")
    public suspend fun userPoolId(`value`: Output) {
        this.userPoolId = value
    }

    /**
     * @param value The client ID for the client app. You can specify the UI customization settings for a single client (with a specific clientId) or for all clients (by setting the clientId to `ALL` ).
     */
    @JvmName("hxsjmsxiunrcmrap")
    public suspend fun clientId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.clientId = mapped
    }

    /**
     * @param value The CSS values in the UI customization.
     */
    @JvmName("llstfcmyjrprynjb")
    public suspend fun css(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.css = mapped
    }

    /**
     * @param value The user pool ID for the user pool.
     */
    @JvmName("qahdpimelxtsupta")
    public suspend fun userPoolId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.userPoolId = mapped
    }

    internal fun build(): UserPoolUiCustomizationAttachmentArgs =
        UserPoolUiCustomizationAttachmentArgs(
            clientId = clientId,
            css = css,
            userPoolId = userPoolId,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy