Class: Aws::EC2::Types::ScheduledInstanceRecurrence
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::ScheduledInstanceRecurrence
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes the recurring schedule for a Scheduled Instance.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #frequency  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The frequency (‘Daily`, `Weekly`, or `Monthly`).
 - 
  
    
      #interval  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The interval quantity.
 - 
  
    
      #occurrence_day_set  ⇒ Array<Integer> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The days.
 - 
  
    
      #occurrence_relative_to_end  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether the occurrence is relative to the end of the specified week or month.
 - 
  
    
      #occurrence_unit  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unit for ‘occurrenceDaySet` (`DayOfWeek` or `DayOfMonth`).
 
Instance Attribute Details
#frequency ⇒ String
The frequency (‘Daily`, `Weekly`, or `Monthly`).
      64222 64223 64224 64225 64226 64227 64228 64229 64230  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 64222 class ScheduledInstanceRecurrence < Struct.new( :frequency, :interval, :occurrence_day_set, :occurrence_relative_to_end, :occurrence_unit) SENSITIVE = [] include Aws::Structure end  | 
  
#interval ⇒ Integer
The interval quantity. The interval unit depends on the value of ‘frequency`. For example, every 2 weeks or every 2 months.
      64222 64223 64224 64225 64226 64227 64228 64229 64230  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 64222 class ScheduledInstanceRecurrence < Struct.new( :frequency, :interval, :occurrence_day_set, :occurrence_relative_to_end, :occurrence_unit) SENSITIVE = [] include Aws::Structure end  | 
  
#occurrence_day_set ⇒ Array<Integer>
The days. For a monthly schedule, this is one or more days of the month (1-31). For a weekly schedule, this is one or more days of the week (1-7, where 1 is Sunday).
      64222 64223 64224 64225 64226 64227 64228 64229 64230  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 64222 class ScheduledInstanceRecurrence < Struct.new( :frequency, :interval, :occurrence_day_set, :occurrence_relative_to_end, :occurrence_unit) SENSITIVE = [] include Aws::Structure end  | 
  
#occurrence_relative_to_end ⇒ Boolean
Indicates whether the occurrence is relative to the end of the specified week or month.
      64222 64223 64224 64225 64226 64227 64228 64229 64230  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 64222 class ScheduledInstanceRecurrence < Struct.new( :frequency, :interval, :occurrence_day_set, :occurrence_relative_to_end, :occurrence_unit) SENSITIVE = [] include Aws::Structure end  | 
  
#occurrence_unit ⇒ String
The unit for ‘occurrenceDaySet` (`DayOfWeek` or `DayOfMonth`).
      64222 64223 64224 64225 64226 64227 64228 64229 64230  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 64222 class ScheduledInstanceRecurrence < Struct.new( :frequency, :interval, :occurrence_day_set, :occurrence_relative_to_end, :occurrence_unit) SENSITIVE = [] include Aws::Structure end  |