getTable

suspend fun getTable(argument: GetTablePlainArgs): GetTableResult

The `AWS::DynamoDB::Table` resource creates a DDB table. For more information, see CreateTable in the API Reference. You should be aware of the following behaviors when working with DDB tables:

  • CFNlong typically creates DDB tables in parallel. However, if your template includes multiple DDB tables with indexes, you must declare dependencies so that the tables are created sequentially. DDBlong limits the number of tables with secondary indexes that are in the creating state. If you create multiple tables with indexes at the same time, DDB returns an error and the stack operation fails. For an example, see DynamoDB Table with a DependsOn Attribute. Our guidance is to use the latest schema documented here for your CFNlong templates. This schema supports the provisioning of all table settings below. When using this schema in your CFNlong templates, please ensure that your Identity and Access Management (IAM) policies are updated with appropriate permissions to allow for the authorization of these setting changes.

Return

null

Parameters

argument

null


suspend fun getTable(tableName: String): GetTableResult

Return

null

Parameters

tableName

A name for the table. If you don't specify a name, CFNlong generates a unique physical ID and uses that ID for the table name. For more information, see Name Type. 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.

See also


suspend fun getTable(argument: suspend GetTablePlainArgsBuilder.() -> Unit): GetTableResult

Return

null

Parameters

argument

Builder for com.pulumi.awsnative.dynamodb.kotlin.inputs.GetTablePlainArgs.

See also