interface AdvancedBackupSettingResourceTypeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Backup.Mixins.CfnBackupPlanPropsMixin.AdvancedBackupSettingResourceTypeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbackup/mixins#CfnBackupPlanPropsMixin_AdvancedBackupSettingResourceTypeProperty |
Java | software.amazon.awscdk.mixins.preview.services.backup.mixins.CfnBackupPlanPropsMixin.AdvancedBackupSettingResourceTypeProperty |
Python | aws_cdk.mixins_preview.aws_backup.mixins.CfnBackupPlanPropsMixin.AdvancedBackupSettingResourceTypeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_backup » mixins » CfnBackupPlanPropsMixin » AdvancedBackupSettingResourceTypeProperty |
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 { mixins as backup_mixins } from '@aws-cdk/mixins-preview/aws-backup';
declare const backupOptions: any;
const advancedBackupSettingResourceTypeProperty: backup_mixins.CfnBackupPlanPropsMixin.AdvancedBackupSettingResourceTypeProperty = {
backupOptions: backupOptions,
resourceType: 'resourceType',
};
Properties
| Name | Type | Description |
|---|---|---|
| backup | any | The backup option for the resource. |
| resource | string | The name of a resource type. |
backupOptions?
Type:
any
(optional)
The backup option for the resource.
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?
Type:
string
(optional)
The name of a resource type.
The only supported resource type is EC2.

.NET
Go
Java
Python
TypeScript