Class: Aws::SecurityHub::Types::AwsBackupBackupPlanAdvancedBackupSettingsDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsBackupBackupPlanAdvancedBackupSettingsDetails
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Provides a list of backup options for each resource type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#backup_options ⇒ Hash<String,String>
Specifies the backup option for a selected resource.
-
#resource_type ⇒ String
The name of a resource type.
Instance Attribute Details
#backup_options ⇒ Hash<String,String>
Specifies the backup option for a selected resource. This option is only available for Windows Volume Shadow Copy Service (VSS) backup jobs. Valid values are as follows:
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. TheWindowsVSS
option is not enabled by default.
3327 3328 3329 3330 3331 3332 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 3327 class AwsBackupBackupPlanAdvancedBackupSettingsDetails < Struct.new( :backup_options, :resource_type) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The name of a resource type. The only supported resource type is Amazon EC2 instances with Windows VSS.
The only valid value is EC2
.
3327 3328 3329 3330 3331 3332 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 3327 class AwsBackupBackupPlanAdvancedBackupSettingsDetails < Struct.new( :backup_options, :resource_type) SENSITIVE = [] include Aws::Structure end |