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.
5021 5022 5023 5024 5025 5026 5027 5028 5029 |
# File 'lib/aws-sdk-ecs/types.rb', line 5021 class ExecuteCommandRequest < Struct.new( :cluster, :container, :command, :interactive, :task) SENSITIVE = [] include Aws::Structure end |
#command ⇒ String
The command to run on the container.
5021 5022 5023 5024 5025 5026 5027 5028 5029 |
# File 'lib/aws-sdk-ecs/types.rb', line 5021 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.
5021 5022 5023 5024 5025 5026 5027 5028 5029 |
# File 'lib/aws-sdk-ecs/types.rb', line 5021 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.
5021 5022 5023 5024 5025 5026 5027 5028 5029 |
# File 'lib/aws-sdk-ecs/types.rb', line 5021 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.
5021 5022 5023 5024 5025 5026 5027 5028 5029 |
# File 'lib/aws-sdk-ecs/types.rb', line 5021 class ExecuteCommandRequest < Struct.new( :cluster, :container, :command, :interactive, :task) SENSITIVE = [] include Aws::Structure end |