@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:05.194Z") @Stability(value=Experimental) public interface BackupPlanProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.backup.*;
BackupPlanRule backupPlanRule;
BackupVault backupVault;
BackupPlanProps backupPlanProps = BackupPlanProps.builder()
.backupPlanName("backupPlanName")
.backupPlanRules(List.of(backupPlanRule))
.backupVault(backupVault)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
BackupPlanProps.Builder
A builder for
BackupPlanProps |
static class |
BackupPlanProps.Jsii$Proxy
An implementation for
BackupPlanProps |
| Modifier and Type | Method and Description |
|---|---|
static BackupPlanProps.Builder |
builder() |
default String |
getBackupPlanName()
(experimental) The display name of the backup plan.
|
default List<BackupPlanRule> |
getBackupPlanRules()
(experimental) Rules for the backup plan.
|
default IBackupVault |
getBackupVault()
(experimental) The backup vault where backups are stored.
|
@Stability(value=Experimental) @Nullable default String getBackupPlanName()
Default: - A CDK generated name
@Stability(value=Experimental) @Nullable default List<BackupPlanRule> getBackupPlanRules()
Use addRule() to add rules after
instantiation.
Default: - use `addRule()` to add rules
@Stability(value=Experimental) @Nullable default IBackupVault getBackupVault()
Default: - use the vault defined at the rule level. If not defined a new common vault for the plan will be created
@Stability(value=Experimental) static BackupPlanProps.Builder builder()
BackupPlanProps.Builder of BackupPlanPropsCopyright © 2021. All rights reserved.