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

com.pulumi.awsnative.backup.kotlin.inputs.GetBackupVaultPlainArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.backup.kotlin.inputs

import com.pulumi.awsnative.backup.inputs.GetBackupVaultPlainArgs.builder
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 backupVaultName The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the AWS Region where they are created.
 */
public data class GetBackupVaultPlainArgs(
    public val backupVaultName: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.backup.inputs.GetBackupVaultPlainArgs =
        com.pulumi.awsnative.backup.inputs.GetBackupVaultPlainArgs.builder()
            .backupVaultName(backupVaultName.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetBackupVaultPlainArgs].
 */
@PulumiTagMarker
public class GetBackupVaultPlainArgsBuilder internal constructor() {
    private var backupVaultName: String? = null

    /**
     * @param value The name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the AWS Region where they are created.
     */
    @JvmName("tvypurvtbwopltwc")
    public suspend fun backupVaultName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.backupVaultName = mapped
    }

    internal fun build(): GetBackupVaultPlainArgs = GetBackupVaultPlainArgs(
        backupVaultName = backupVaultName ?: throw PulumiNullFieldException("backupVaultName"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy