Interface CfnLegalHoldMixinProps

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

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-08-10T14:51:16.216Z") @Stability(Stable) public interface CfnLegalHoldMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnLegalHoldPropsMixin.

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.backup.*;
 CfnLegalHoldMixinProps cfnLegalHoldMixinProps = CfnLegalHoldMixinProps.builder()
         .description("description")
         .recoveryPointSelection(RecoveryPointSelectionProperty.builder()
                 .dateRange(DateRangeProperty.builder()
                         .fromDate("fromDate")
                         .toDate("toDate")
                         .build())
                 .resourceIdentifiers(List.of("resourceIdentifiers"))
                 .vaultNames(List.of("vaultNames"))
                 .build())
         .tags(List.of(TagsItemsProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .title("title")
         .build();
 

See Also: