Interface TableAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
TableAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-08-06T18:14:48.677Z")
@Stability(Experimental)
public interface TableAttributes
extends software.amazon.jsii.JsiiSerializable
(experimental) A reference to a table outside this stack.
The tableName, region, and account can be provided explicitly or will be inferred from the tableArn
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.s3tables.alpha.*; TableAttributes tableAttributes = TableAttributes.builder() .tableArn("tableArn") .tableName("tableName") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forTableAttributes
static final class
An implementation forTableAttributes
-
Method Summary
Modifier and TypeMethodDescriptionstatic TableAttributes.Builder
builder()
(experimental) The table's ARN.(experimental) Name of this table.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTableArn
(experimental) The table's ARN. -
getTableName
(experimental) Name of this table. -
builder
- Returns:
- a
TableAttributes.Builder
ofTableAttributes
-