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

com.pulumi.aws.sagemaker.kotlin.inputs.UserProfileUserSettingsSpaceStorageSettingsArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.57.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.aws.sagemaker.kotlin.inputs

import com.pulumi.aws.sagemaker.inputs.UserProfileUserSettingsSpaceStorageSettingsArgs.builder
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.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName

/**
 *
 * @property defaultEbsStorageSettings The default EBS storage settings for a private space. See Default EBS Storage Settings below.
 */
public data class UserProfileUserSettingsSpaceStorageSettingsArgs(
    public val defaultEbsStorageSettings: Output? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.aws.sagemaker.inputs.UserProfileUserSettingsSpaceStorageSettingsArgs =
        com.pulumi.aws.sagemaker.inputs.UserProfileUserSettingsSpaceStorageSettingsArgs.builder()
            .defaultEbsStorageSettings(
                defaultEbsStorageSettings?.applyValue({ args0 ->
                    args0.let({ args0 ->
                        args0.toJava()
                    })
                }),
            ).build()
}

/**
 * Builder for [UserProfileUserSettingsSpaceStorageSettingsArgs].
 */
@PulumiTagMarker
public class UserProfileUserSettingsSpaceStorageSettingsArgsBuilder internal constructor() {
    private var defaultEbsStorageSettings:
        Output? = null

    /**
     * @param value The default EBS storage settings for a private space. See Default EBS Storage Settings below.
     */
    @JvmName("ukndxpetiahvweit")
    public suspend fun defaultEbsStorageSettings(`value`: Output) {
        this.defaultEbsStorageSettings = value
    }

    /**
     * @param value The default EBS storage settings for a private space. See Default EBS Storage Settings below.
     */
    @JvmName("qoumhtrebspbjvbn")
    public suspend fun defaultEbsStorageSettings(`value`: UserProfileUserSettingsSpaceStorageSettingsDefaultEbsStorageSettingsArgs?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.defaultEbsStorageSettings = mapped
    }

    /**
     * @param argument The default EBS storage settings for a private space. See Default EBS Storage Settings below.
     */
    @JvmName("dyctxmgwgqtfvcbx")
    public suspend fun defaultEbsStorageSettings(argument: suspend UserProfileUserSettingsSpaceStorageSettingsDefaultEbsStorageSettingsArgsBuilder.() -> Unit) {
        val toBeMapped =
            UserProfileUserSettingsSpaceStorageSettingsDefaultEbsStorageSettingsArgsBuilder().applySuspend {
                argument()
            }.build()
        val mapped = of(toBeMapped)
        this.defaultEbsStorageSettings = mapped
    }

    internal fun build(): UserProfileUserSettingsSpaceStorageSettingsArgs =
        UserProfileUserSettingsSpaceStorageSettingsArgs(
            defaultEbsStorageSettings = defaultEbsStorageSettings,
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy