Class: Aws::Backup::Types::BackupPlan

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb

Overview

Contains an optional backup plan display name and an array of BackupRule objects, each of which specifies a backup rule. Each rule in a backup plan is a separate scheduled task and can back up a different selection of Amazon Web Services resources.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#advanced_backup_settingsArray<Types::AdvancedBackupSetting>

Contains a list of BackupOptions for each resource type.

Returns:



387
388
389
390
391
392
393
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 387

class BackupPlan < Struct.new(
  :backup_plan_name,
  :rules,
  :advanced_backup_settings)
  SENSITIVE = []
  include Aws::Structure
end

#backup_plan_nameString

The display name of a backup plan. Must contain 1 to 50 alphanumeric or '-_.' characters.

Returns:

  • (String)


387
388
389
390
391
392
393
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 387

class BackupPlan < Struct.new(
  :backup_plan_name,
  :rules,
  :advanced_backup_settings)
  SENSITIVE = []
  include Aws::Structure
end

#rulesArray<Types::BackupRule>

An array of BackupRule objects, each of which specifies a scheduled task that is used to back up a selection of resources.

Returns:



387
388
389
390
391
392
393
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 387

class BackupPlan < Struct.new(
  :backup_plan_name,
  :rules,
  :advanced_backup_settings)
  SENSITIVE = []
  include Aws::Structure
end