Class: Aws::ECS::Types::ExecuteCommandRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ecs/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#clusterString

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.

Returns:

  • (String)


4907
4908
4909
4910
4911
4912
4913
4914
4915
# File 'lib/aws-sdk-ecs/types.rb', line 4907

class ExecuteCommandRequest < Struct.new(
  :cluster,
  :container,
  :command,
  :interactive,
  :task)
  SENSITIVE = []
  include Aws::Structure
end

#commandString

The command to run on the container.

Returns:

  • (String)


4907
4908
4909
4910
4911
4912
4913
4914
4915
# File 'lib/aws-sdk-ecs/types.rb', line 4907

class ExecuteCommandRequest < Struct.new(
  :cluster,
  :container,
  :command,
  :interactive,
  :task)
  SENSITIVE = []
  include Aws::Structure
end

#containerString

The name of the container to execute the command on. A container name only needs to be specified for tasks containing multiple containers.

Returns:

  • (String)


4907
4908
4909
4910
4911
4912
4913
4914
4915
# File 'lib/aws-sdk-ecs/types.rb', line 4907

class ExecuteCommandRequest < Struct.new(
  :cluster,
  :container,
  :command,
  :interactive,
  :task)
  SENSITIVE = []
  include Aws::Structure
end

#interactiveBoolean

Use this flag to run your command in interactive mode.

Returns:

  • (Boolean)


4907
4908
4909
4910
4911
4912
4913
4914
4915
# File 'lib/aws-sdk-ecs/types.rb', line 4907

class ExecuteCommandRequest < Struct.new(
  :cluster,
  :container,
  :command,
  :interactive,
  :task)
  SENSITIVE = []
  include Aws::Structure
end

#taskString

The Amazon Resource Name (ARN) or ID of the task the container is part of.

Returns:

  • (String)


4907
4908
4909
4910
4911
4912
4913
4914
4915
# File 'lib/aws-sdk-ecs/types.rb', line 4907

class ExecuteCommandRequest < Struct.new(
  :cluster,
  :container,
  :command,
  :interactive,
  :task)
  SENSITIVE = []
  include Aws::Structure
end