Class: Aws::SecurityHub::Types::AwsBackupBackupPlanAdvancedBackupSettingsDetails

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#backup_optionsHash<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.

Returns:

  • (Hash<String,String>)


3202
3203
3204
3205
3206
3207
# File 'lib/aws-sdk-securityhub/types.rb', line 3202

class AwsBackupBackupPlanAdvancedBackupSettingsDetails < Struct.new(
  :backup_options,
  :resource_type)
  SENSITIVE = []
  include Aws::Structure
end

#resource_typeString

The name of a resource type. The only supported resource type is Amazon EC2 instances with Windows VSS.

The only valid value is ‘EC2`.

Returns:

  • (String)


3202
3203
3204
3205
3206
3207
# File 'lib/aws-sdk-securityhub/types.rb', line 3202

class AwsBackupBackupPlanAdvancedBackupSettingsDetails < Struct.new(
  :backup_options,
  :resource_type)
  SENSITIVE = []
  include Aws::Structure
end