Class: Aws::SecurityHub::Types::AwsBackupBackupPlanAdvancedBackupSettingsDetails
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SecurityHub::Types::AwsBackupBackupPlanAdvancedBackupSettingsDetails
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - 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. The `WindowsVSS` option is not enabled by default.
 
      3196 3197 3198 3199 3200 3201  | 
    
      # File 'lib/aws-sdk-securityhub/types.rb', line 3196 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`.
      3196 3197 3198 3199 3200 3201  | 
    
      # File 'lib/aws-sdk-securityhub/types.rb', line 3196 class AwsBackupBackupPlanAdvancedBackupSettingsDetails < Struct.new( :backup_options, :resource_type) SENSITIVE = [] include Aws::Structure end  |