Show / Hide Table of Contents

Class CfnBackupPlan.AdvancedBackupSettingResourceTypeProperty

Specifies an object containing resource type and backup options.

Inheritance
object
CfnBackupPlan.AdvancedBackupSettingResourceTypeProperty
Implements
CfnBackupPlan.IAdvancedBackupSettingResourceTypeProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-advancedbackupsettingresourcetype.html

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-advancedbackupsettingresourcetype.html

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

object

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-advancedbackupsettingresourcetype.html#cfn-backup-backupplan-advancedbackupsettingresourcetype-backupoptions

ResourceType

The name of a resource type.

public string ResourceType { get; set; }
Property Value

string

Remarks

The only supported resource type is EC2.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-advancedbackupsettingresourcetype.html#cfn-backup-backupplan-advancedbackupsettingresourcetype-resourcetype

Implements

CfnBackupPlan.IAdvancedBackupSettingResourceTypeProperty
Back to top Generated by DocFX