Class: Aws::ECS::Types::ExecuteCommandRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ECS::Types::ExecuteCommandRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ecs/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #cluster  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) or short name of the cluster the task is running in.
 - 
  
    
      #command  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The command to run on the container.
 - 
  
    
      #container  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the container to execute the command on.
 - 
  
    
      #interactive  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Use this flag to run your command in interactive mode.
 - 
  
    
      #task  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) or ID of the task the container is part of.
 
Instance Attribute Details
#cluster ⇒ String
The Amazon Resource Name (ARN) or short name of the cluster the task is running in. If you do not specify a cluster, the default cluster is assumed.
      4844 4845 4846 4847 4848 4849 4850 4851 4852  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 4844 class ExecuteCommandRequest < Struct.new( :cluster, :container, :command, :interactive, :task) SENSITIVE = [] include Aws::Structure end  | 
  
#command ⇒ String
The command to run on the container.
      4844 4845 4846 4847 4848 4849 4850 4851 4852  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 4844 class ExecuteCommandRequest < Struct.new( :cluster, :container, :command, :interactive, :task) SENSITIVE = [] include Aws::Structure end  | 
  
#container ⇒ String
The name of the container to execute the command on. A container name only needs to be specified for tasks containing multiple containers.
      4844 4845 4846 4847 4848 4849 4850 4851 4852  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 4844 class ExecuteCommandRequest < Struct.new( :cluster, :container, :command, :interactive, :task) SENSITIVE = [] include Aws::Structure end  | 
  
#interactive ⇒ Boolean
Use this flag to run your command in interactive mode.
      4844 4845 4846 4847 4848 4849 4850 4851 4852  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 4844 class ExecuteCommandRequest < Struct.new( :cluster, :container, :command, :interactive, :task) SENSITIVE = [] include Aws::Structure end  | 
  
#task ⇒ String
The Amazon Resource Name (ARN) or ID of the task the container is part of.
      4844 4845 4846 4847 4848 4849 4850 4851 4852  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 4844 class ExecuteCommandRequest < Struct.new( :cluster, :container, :command, :interactive, :task) SENSITIVE = [] include Aws::Structure end  |