Interface EnumKeyDoesNotExistError

All Superinterfaces:
ErrorObject
All Known Implementing Classes:
EnumKeyDoesNotExistErrorImpl

public interface EnumKeyDoesNotExistError extends ErrorObject

Returned when an AttributeEnumType or AttributeLocalizedEnumType already contains a value with the given key.

The error is returned as a failed response to the Change the key of an EnumValue update action.


Example to create an instance using the builder pattern

     EnumKeyDoesNotExistError enumKeyDoesNotExistError = EnumKeyDoesNotExistError.builder()
             .message("{message}")
             .conflictingEnumKey("{conflictingEnumKey}")
             .conflictingAttributeName("{conflictingAttributeName}")
             .build()