Class: Aws::EntityResolution::Types::DeleteUniqueIdError

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb

Overview

The error information provided when the delete unique ID operation doesn't complete.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#error_typeString

The error type for the delete unique ID operation.

The SERVICE_ERROR value indicates that an internal service-side problem occurred during the deletion operation.

The VALIDATION_ERROR value indicates that the deletion operation couldn't complete because of invalid input parameters or data.

Returns:

  • (String)


721
722
723
724
725
726
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 721

class DeleteUniqueIdError < Struct.new(
  :unique_id,
  :error_type)
  SENSITIVE = []
  include Aws::Structure
end

#unique_idString

The unique ID that couldn't be deleted.

Returns:

  • (String)


721
722
723
724
725
726
# File 'gems/aws-sdk-entityresolution/lib/aws-sdk-entityresolution/types.rb', line 721

class DeleteUniqueIdError < Struct.new(
  :unique_id,
  :error_type)
  SENSITIVE = []
  include Aws::Structure
end