Interface TableAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
TableAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:41:05.227Z")
@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 classA builder forTableAttributesstatic final classAn implementation forTableAttributes -
Method Summary
Modifier and TypeMethodDescriptionstatic TableAttributes.Builderbuilder()(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.BuilderofTableAttributes
-