Class: Aws::ECS::Types::ContainerStateChange
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ECS::Types::ContainerStateChange
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ecs/types.rb
 
Overview
An object that represents a change in state for a container.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #container_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the container.
 - 
  
    
      #exit_code  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The exit code for the container, if the state change is a result of the container exiting.
 - 
  
    
      #image_digest  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The container image SHA 256 digest.
 - 
  
    
      #network_bindings  ⇒ Array<Types::NetworkBinding> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Any network bindings that are associated with the container.
 - 
  
    
      #reason  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The reason for the state change.
 - 
  
    
      #runtime_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the Docker container.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status of the container.
 
Instance Attribute Details
#container_name ⇒ String
The name of the container.
      2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 2313 class ContainerStateChange < Struct.new( :container_name, :image_digest, :runtime_id, :exit_code, :network_bindings, :reason, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#exit_code ⇒ Integer
The exit code for the container, if the state change is a result of the container exiting.
      2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 2313 class ContainerStateChange < Struct.new( :container_name, :image_digest, :runtime_id, :exit_code, :network_bindings, :reason, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#image_digest ⇒ String
The container image SHA 256 digest.
      2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 2313 class ContainerStateChange < Struct.new( :container_name, :image_digest, :runtime_id, :exit_code, :network_bindings, :reason, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#network_bindings ⇒ Array<Types::NetworkBinding>
Any network bindings that are associated with the container.
      2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 2313 class ContainerStateChange < Struct.new( :container_name, :image_digest, :runtime_id, :exit_code, :network_bindings, :reason, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#reason ⇒ String
The reason for the state change.
      2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 2313 class ContainerStateChange < Struct.new( :container_name, :image_digest, :runtime_id, :exit_code, :network_bindings, :reason, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#runtime_id ⇒ String
The ID of the Docker container.
      2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 2313 class ContainerStateChange < Struct.new( :container_name, :image_digest, :runtime_id, :exit_code, :network_bindings, :reason, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
The status of the container.
      2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 2313 class ContainerStateChange < Struct.new( :container_name, :image_digest, :runtime_id, :exit_code, :network_bindings, :reason, :status) SENSITIVE = [] include Aws::Structure end  |