Interface CfnDataTableAttributeMixinProps

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

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

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.connect.*;
 CfnDataTableAttributeMixinProps cfnDataTableAttributeMixinProps = CfnDataTableAttributeMixinProps.builder()
         .dataTableArn("dataTableArn")
         .description("description")
         .instanceArn("instanceArn")
         .name("name")
         .primary(false)
         .validation(ValidationProperty.builder()
                 .enum(EnumProperty.builder()
                         .strict(false)
                         .values(List.of("values"))
                         .build())
                 .exclusiveMaximum(123)
                 .exclusiveMinimum(123)
                 .maximum(123)
                 .maxLength(123)
                 .maxValues(123)
                 .minimum(123)
                 .minLength(123)
                 .minValues(123)
                 .multipleOf(123)
                 .build())
         .valueType("valueType")
         .build();
 

See Also: