Class: Aws::ECS::Types::ServiceEvent
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ECS::Types::ServiceEvent
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ecs/types.rb
 
Overview
The details for an event that’s associated with a service.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #created_at  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Unix timestamp for the time when the event was triggered.
 - 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID string for the event.
 - 
  
    
      #message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The event message.
 
Instance Attribute Details
#created_at ⇒ Time
The Unix timestamp for the time when the event was triggered.
      9424 9425 9426 9427 9428 9429 9430  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 9424 class ServiceEvent < Struct.new( :id, :created_at, :message) SENSITIVE = [] include Aws::Structure end  | 
  
#id ⇒ String
The ID string for the event.
      9424 9425 9426 9427 9428 9429 9430  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 9424 class ServiceEvent < Struct.new( :id, :created_at, :message) SENSITIVE = [] include Aws::Structure end  | 
  
#message ⇒ String
The event message.
      9424 9425 9426 9427 9428 9429 9430  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 9424 class ServiceEvent < Struct.new( :id, :created_at, :message) SENSITIVE = [] include Aws::Structure end  |