Class: Aws::EntityResolution::Types::DeleteUniqueIdError
- Inherits:
-
Struct
- Object
- Struct
- Aws::EntityResolution::Types::DeleteUniqueIdError
- Includes:
- Structure
- Defined in:
- 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
-
#error_type ⇒ String
The error type for the delete unique ID operation.
-
#unique_id ⇒ String
The unique ID that couldn’t be deleted.
Instance Attribute Details
#error_type ⇒ String
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.
746 747 748 749 750 751 |
# File 'lib/aws-sdk-entityresolution/types.rb', line 746 class DeleteUniqueIdError < Struct.new( :unique_id, :error_type) SENSITIVE = [] include Aws::Structure end |
#unique_id ⇒ String
The unique ID that couldn’t be deleted.
746 747 748 749 750 751 |
# File 'lib/aws-sdk-entityresolution/types.rb', line 746 class DeleteUniqueIdError < Struct.new( :unique_id, :error_type) SENSITIVE = [] include Aws::Structure end |