Interface CfnTableMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTableMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:20:05.845Z") @Stability(Stable) public interface CfnTableMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnTablePropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.timestream.*;
 Object magneticStoreWriteProperties;
 Object retentionProperties;
 CfnTableMixinProps cfnTableMixinProps = CfnTableMixinProps.builder()
         .databaseName("databaseName")
         .magneticStoreWriteProperties(magneticStoreWriteProperties)
         .retentionProperties(retentionProperties)
         .schema(SchemaProperty.builder()
                 .compositePartitionKey(List.of(PartitionKeyProperty.builder()
                         .enforcementInRecord("enforcementInRecord")
                         .name("name")
                         .type("type")
                         .build()))
                 .build())
         .tableName("tableName")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: