Interface CombineStrategyOptions

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

@Generated(value="jsii-pacmak/1.130.0 (build 048a5ee)", date="2026-05-20T12:39:38.919Z") @Stability(Stable) public interface CombineStrategyOptions extends software.amazon.jsii.JsiiSerializable
Options for the combine strategy.

Example:

 // TableV2 uses a Box internally for replicas.
 // The mixin defers the merge and appends the new replica at synthesis time.
 TableV2 table = TableV2.Builder.create(scope, "Table")
         .partitionKey(Attribute.builder().name("pk").type(AttributeType.STRING).build())
         // L2 prop: pointInTimeRecovery is a boolean
         .replicas(List.of(ReplicaTableProps.builder().region("us-east-1").pointInTimeRecovery(true).build()))
         .build();
 // Mixins always use L1 (CloudFormation) property names and shapes,
 // regardless of what the L2 API looks like.
 table.with(CfnGlobalTablePropsMixin.Builder.create(CfnGlobalTableMixinProps.builder()
         .replicas(List.of(ReplicaSpecificationProperty.builder()
                 .region("eu-west-1")
                 // L1 prop: pointInTimeRecoverySpecification is an object
                 .pointInTimeRecoverySpecification(PointInTimeRecoverySpecificationProperty.builder().pointInTimeRecoveryEnabled(true).build())
                 .build()))
         .build()).strategy(PropertyMergeStrategy.combine(CombineStrategyOptions.builder().arrays(ArrayMergeStrategy.append()).build())).build());