Class: Aws::ECS::Types::ConflictException

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

Overview

The ‘RunTask` request could not be processed due to conflicts. The provided `clientToken` is already in use with a different `RunTask` request. The `resourceIds` are the existing task ARNs which are already associated with the `clientToken`.

To fix this issue:

  • Run ‘RunTask` with a unique `clientToken`.

  • Run ‘RunTask` with the `clientToken` and the original set of parameters

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#resource_idsArray<String>

The existing task ARNs which are already associated with the ‘clientToken`.

Returns:

  • (Array<String>)


879
880
881
882
883
# File 'lib/aws-sdk-ecs/types.rb', line 879

class ConflictException < Struct.new(
  :resource_ids)
  SENSITIVE = []
  include Aws::Structure
end