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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ecs/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>)


867
868
869
870
871
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 867

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