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

com.pulumi.awsnative.dynamodb.kotlin.inputs.GetGlobalTablePlainArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.awsnative.dynamodb.kotlin.inputs

import com.pulumi.awsnative.dynamodb.inputs.GetGlobalTablePlainArgs.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 tableName A name for the global table. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID as the table name. For more information, see [Name type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html) .
 * > If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
 */
public data class GetGlobalTablePlainArgs(
    public val tableName: String,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.awsnative.dynamodb.inputs.GetGlobalTablePlainArgs =
        com.pulumi.awsnative.dynamodb.inputs.GetGlobalTablePlainArgs.builder()
            .tableName(tableName.let({ args0 -> args0 })).build()
}

/**
 * Builder for [GetGlobalTablePlainArgs].
 */
@PulumiTagMarker
public class GetGlobalTablePlainArgsBuilder internal constructor() {
    private var tableName: String? = null

    /**
     * @param value A name for the global table. If you don't specify a name, AWS CloudFormation generates a unique ID and uses that ID as the table name. For more information, see [Name type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html) .
     * > If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
     */
    @JvmName("sglpdqmlybrckkdm")
    public suspend fun tableName(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> args0 })
        this.tableName = mapped
    }

    internal fun build(): GetGlobalTablePlainArgs = GetGlobalTablePlainArgs(
        tableName = tableName ?: throw PulumiNullFieldException("tableName"),
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy