Interface CfnBackupPlanMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBackupPlanMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:23.088Z")
@Stability(Stable)
public interface CfnBackupPlanMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnBackupPlanPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.backup.mixins.*;
Object backupOptions;
CfnBackupPlanMixinProps cfnBackupPlanMixinProps = CfnBackupPlanMixinProps.builder()
.backupPlan(BackupPlanResourceTypeProperty.builder()
.advancedBackupSettings(List.of(AdvancedBackupSettingResourceTypeProperty.builder()
.backupOptions(backupOptions)
.resourceType("resourceType")
.build()))
.backupPlanName("backupPlanName")
.backupPlanRule(List.of(BackupRuleResourceTypeProperty.builder()
.completionWindowMinutes(123)
.copyActions(List.of(CopyActionResourceTypeProperty.builder()
.destinationBackupVaultArn("destinationBackupVaultArn")
.lifecycle(LifecycleResourceTypeProperty.builder()
.deleteAfterDays(123)
.moveToColdStorageAfterDays(123)
.optInToArchiveForSupportedResources(false)
.build())
.build()))
.enableContinuousBackup(false)
.indexActions(List.of(IndexActionsResourceTypeProperty.builder()
.resourceTypes(List.of("resourceTypes"))
.build()))
.lifecycle(LifecycleResourceTypeProperty.builder()
.deleteAfterDays(123)
.moveToColdStorageAfterDays(123)
.optInToArchiveForSupportedResources(false)
.build())
.recoveryPointTags(Map.of(
"recoveryPointTagsKey", "recoveryPointTags"))
.ruleName("ruleName")
.scheduleExpression("scheduleExpression")
.scheduleExpressionTimezone("scheduleExpressionTimezone")
.startWindowMinutes(123)
.targetBackupVault("targetBackupVault")
.targetLogicallyAirGappedBackupVaultArn("targetLogicallyAirGappedBackupVaultArn")
.build()))
.build())
.backupPlanTags(Map.of(
"backupPlanTagsKey", "backupPlanTags"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBackupPlanMixinPropsstatic final classAn implementation forCfnBackupPlanMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBackupPlan
Uniquely identifies the backup plan to be associated with the selection of resources.Returns union: either
IResolvableorCfnBackupPlanPropsMixin.BackupPlanResourceTypeProperty- See Also:
-
getBackupPlanTags
The tags to assign to the backup plan.- See Also:
-
builder
- Returns:
- a
CfnBackupPlanMixinProps.BuilderofCfnBackupPlanMixinProps
-