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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLegalHoldMixinPropsstatic final classAn implementation forCfnLegalHoldMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description of the legal hold.- See Also:
-
getRecoveryPointSelection
The criteria to assign a set of resources, such as resource types or backup vaults.Returns union: either
IResolvableorCfnLegalHoldPropsMixin.RecoveryPointSelectionProperty- See Also:
-
getTags
Optional tags to include.- See Also:
-
getTitle
The title of the legal hold.- See Also:
-
builder
- Returns:
- a
CfnLegalHoldMixinProps.BuilderofCfnLegalHoldMixinProps
-