Class: Aws::Backup::Types::BackupPlan
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Backup::Types::BackupPlan
 
- 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
- 
  
    
      #advanced_backup_settings  ⇒ Array<Types::AdvancedBackupSetting> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Contains a list of BackupOptionsfor each resource type.
- 
  
    
      #backup_plan_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The display name of a backup plan. 
- 
  
    
      #rules  ⇒ Array<Types::BackupRule> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An array of BackupRuleobjects, each of which specifies a scheduled task that is used to back up a selection of resources.
Instance Attribute Details
#advanced_backup_settings ⇒ Array<Types::AdvancedBackupSetting>
Contains a list of BackupOptions for each resource type.
| 503 504 505 506 507 508 509 | # File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 503 class BackupPlan < Struct.new( :backup_plan_name, :rules, :advanced_backup_settings) SENSITIVE = [] include Aws::Structure end | 
#backup_plan_name ⇒ String
The display name of a backup plan. Must contain only alphanumeric or '-_.' special characters.
If this is set in the console, it can contain 1 to 50 characters; if this is set through CLI or API, it can contain 1 to 200 characters.
| 503 504 505 506 507 508 509 | # File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 503 class BackupPlan < Struct.new( :backup_plan_name, :rules, :advanced_backup_settings) SENSITIVE = [] include Aws::Structure end | 
#rules ⇒ Array<Types::BackupRule>
An array of BackupRule objects, each of which specifies a
scheduled task that is used to back up a selection of resources.
| 503 504 505 506 507 508 509 | # File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 503 class BackupPlan < Struct.new( :backup_plan_name, :rules, :advanced_backup_settings) SENSITIVE = [] include Aws::Structure end |