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();