Class: Aws::EntityResolution::Types::DeleteUniqueIdError
- Inherits:
-
Struct
- Object
- Struct
- Aws::EntityResolution::Types::DeleteUniqueIdError
- 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
-
#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.
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_id ⇒ String
The unique ID that couldn't be deleted.
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 |