pub enum UpdateFieldLevelEncryptionProfileError {
AccessDenied(String),
FieldLevelEncryptionProfileAlreadyExists(String),
FieldLevelEncryptionProfileSizeExceeded(String),
IllegalUpdate(String),
InconsistentQuantities(String),
InvalidArgument(String),
InvalidIfMatchVersion(String),
NoSuchFieldLevelEncryptionProfile(String),
NoSuchPublicKey(String),
PreconditionFailed(String),
TooManyFieldLevelEncryptionEncryptionEntities(String),
TooManyFieldLevelEncryptionFieldPatterns(String),
}
Expand description
Errors returned by UpdateFieldLevelEncryptionProfile
Variants§
AccessDenied(String)
Access denied.
FieldLevelEncryptionProfileAlreadyExists(String)
The specified profile for field-level encryption already exists.
FieldLevelEncryptionProfileSizeExceeded(String)
The maximum size of a profile for field-level encryption was exceeded.
IllegalUpdate(String)
The update contains modifications that are not allowed.
InconsistentQuantities(String)
The value of Quantity
and the size of Items
don't match.
InvalidArgument(String)
An argument is invalid.
InvalidIfMatchVersion(String)
The If-Match
version is missing or not valid.
NoSuchFieldLevelEncryptionProfile(String)
The specified profile for field-level encryption doesn't exist.
NoSuchPublicKey(String)
The specified public key doesn't exist.
PreconditionFailed(String)
The precondition in one or more of the request fields evaluated to false
.
TooManyFieldLevelEncryptionEncryptionEntities(String)
The maximum number of encryption entities for field-level encryption have been created.
TooManyFieldLevelEncryptionFieldPatterns(String)
The maximum number of field patterns for field-level encryption have been created.
Implementations§
Trait Implementations§
Source§impl Error for UpdateFieldLevelEncryptionProfileError
impl Error for UpdateFieldLevelEncryptionProfileError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for UpdateFieldLevelEncryptionProfileError
impl PartialEq for UpdateFieldLevelEncryptionProfileError
Source§fn eq(&self, other: &UpdateFieldLevelEncryptionProfileError) -> bool
fn eq(&self, other: &UpdateFieldLevelEncryptionProfileError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateFieldLevelEncryptionProfileError
Auto Trait Implementations§
impl Freeze for UpdateFieldLevelEncryptionProfileError
impl RefUnwindSafe for UpdateFieldLevelEncryptionProfileError
impl Send for UpdateFieldLevelEncryptionProfileError
impl Sync for UpdateFieldLevelEncryptionProfileError
impl Unpin for UpdateFieldLevelEncryptionProfileError
impl UnwindSafe for UpdateFieldLevelEncryptionProfileError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more