Class: Aws::EC2::Types::InstanceStatusEvent
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::InstanceStatusEvent
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes a scheduled event for an instance.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The event code.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A description of the event.
 - 
  
    
      #instance_event_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the event.
 - 
  
    
      #not_after  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The latest scheduled end time for the event.
 - 
  
    
      #not_before  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The earliest scheduled start time for the event.
 - 
  
    
      #not_before_deadline  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The deadline for starting the event.
 
Instance Attribute Details
#code ⇒ String
The event code.
      45320 45321 45322 45323 45324 45325 45326 45327 45328 45329  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 45320 class InstanceStatusEvent < Struct.new( :instance_event_id, :code, :description, :not_after, :not_before, :not_before_deadline) SENSITIVE = [] include Aws::Structure end  | 
  
#description ⇒ String
A description of the event.
After a scheduled event is completed, it can still be described for up to a week. If the event has been completed, this description starts with the following text: [Completed].
      45320 45321 45322 45323 45324 45325 45326 45327 45328 45329  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 45320 class InstanceStatusEvent < Struct.new( :instance_event_id, :code, :description, :not_after, :not_before, :not_before_deadline) SENSITIVE = [] include Aws::Structure end  | 
  
#instance_event_id ⇒ String
The ID of the event.
      45320 45321 45322 45323 45324 45325 45326 45327 45328 45329  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 45320 class InstanceStatusEvent < Struct.new( :instance_event_id, :code, :description, :not_after, :not_before, :not_before_deadline) SENSITIVE = [] include Aws::Structure end  | 
  
#not_after ⇒ Time
The latest scheduled end time for the event.
      45320 45321 45322 45323 45324 45325 45326 45327 45328 45329  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 45320 class InstanceStatusEvent < Struct.new( :instance_event_id, :code, :description, :not_after, :not_before, :not_before_deadline) SENSITIVE = [] include Aws::Structure end  | 
  
#not_before ⇒ Time
The earliest scheduled start time for the event.
      45320 45321 45322 45323 45324 45325 45326 45327 45328 45329  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 45320 class InstanceStatusEvent < Struct.new( :instance_event_id, :code, :description, :not_after, :not_before, :not_before_deadline) SENSITIVE = [] include Aws::Structure end  | 
  
#not_before_deadline ⇒ Time
The deadline for starting the event.
      45320 45321 45322 45323 45324 45325 45326 45327 45328 45329  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 45320 class InstanceStatusEvent < Struct.new( :instance_event_id, :code, :description, :not_after, :not_before, :not_before_deadline) SENSITIVE = [] include Aws::Structure end  |