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.
4827 4828 4829 4830 4831 4832 4833 4834 4835 |
# File 'lib/aws-sdk-ecs/types.rb', line 4827 class ExecuteCommandRequest < Struct.new( :cluster, :container, :command, :interactive, :task) SENSITIVE = [] include Aws::Structure end |
#command ⇒ String
The command to run on the container.
4827 4828 4829 4830 4831 4832 4833 4834 4835 |
# File 'lib/aws-sdk-ecs/types.rb', line 4827 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.
4827 4828 4829 4830 4831 4832 4833 4834 4835 |
# File 'lib/aws-sdk-ecs/types.rb', line 4827 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.
4827 4828 4829 4830 4831 4832 4833 4834 4835 |
# File 'lib/aws-sdk-ecs/types.rb', line 4827 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.
4827 4828 4829 4830 4831 4832 4833 4834 4835 |
# File 'lib/aws-sdk-ecs/types.rb', line 4827 class ExecuteCommandRequest < Struct.new( :cluster, :container, :command, :interactive, :task) SENSITIVE = [] include Aws::Structure end |