Class CfnBackupPlan.AdvancedBackupSettingResourceTypeProperty
Specifies an object containing resource type and backup options.
Inherited Members
Namespace: Amazon.CDK.AWS.Backup
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBackupPlan.AdvancedBackupSettingResourceTypeProperty : CfnBackupPlan.IAdvancedBackupSettingResourceTypeProperty
Syntax (vb)
Public Class CfnBackupPlan.AdvancedBackupSettingResourceTypeProperty Implements CfnBackupPlan.IAdvancedBackupSettingResourceTypeProperty
Remarks
This is only supported for Windows VSS backups.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Backup;
var backupOptions;
var advancedBackupSettingResourceTypeProperty = new AdvancedBackupSettingResourceTypeProperty {
BackupOptions = backupOptions,
ResourceType = "resourceType"
};
Synopsis
Constructors
| AdvancedBackupSettingResourceTypeProperty() | Specifies an object containing resource type and backup options. |
Properties
| BackupOptions | The backup option for the resource. |
| ResourceType | The name of a resource type. |
Constructors
AdvancedBackupSettingResourceTypeProperty()
Specifies an object containing resource type and backup options.
public AdvancedBackupSettingResourceTypeProperty()
Remarks
This is only supported for Windows VSS backups.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Backup;
var backupOptions;
var advancedBackupSettingResourceTypeProperty = new AdvancedBackupSettingResourceTypeProperty {
BackupOptions = backupOptions,
ResourceType = "resourceType"
};
Properties
BackupOptions
The backup option for the resource.
public object BackupOptions { get; set; }
Property Value
Remarks
Each option is a key-value pair. This option is only available for Windows VSS backup jobs.
Valid values:
Set to "WindowsVSS":"enabled" to enable the WindowsVSS backup option and create a Windows VSS backup.
Set to "WindowsVSS":"disabled" to create a regular backup. The WindowsVSS option is not enabled by default.
If you specify an invalid option, you get an InvalidParameterValueException exception.
For more information about Windows VSS backups, see Creating a VSS-Enabled Windows Backup .
ResourceType
The name of a resource type.
public string ResourceType { get; set; }