Interface CfnBackupPlan.AdvancedBackupSettingResourceTypeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBackupPlan.AdvancedBackupSettingResourceTypeProperty.Jsii$Proxy
Enclosing class:
CfnBackupPlan

@Stability(Stable) public static interface CfnBackupPlan.AdvancedBackupSettingResourceTypeProperty extends software.amazon.jsii.JsiiSerializable
Specifies an object containing resource type and backup options.

This is only supported for Windows VSS backups.

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.*;
 Object backupOptions;
 AdvancedBackupSettingResourceTypeProperty advancedBackupSettingResourceTypeProperty = AdvancedBackupSettingResourceTypeProperty.builder()
         .backupOptions(backupOptions)
         .resourceType("resourceType")
         .build();