pub enum UpdateFieldLevelEncryptionConfigError {
AccessDenied(String),
IllegalUpdate(String),
InconsistentQuantities(String),
InvalidArgument(String),
InvalidIfMatchVersion(String),
NoSuchFieldLevelEncryptionConfig(String),
NoSuchFieldLevelEncryptionProfile(String),
PreconditionFailed(String),
QueryArgProfileEmpty(String),
TooManyFieldLevelEncryptionContentTypeProfiles(String),
TooManyFieldLevelEncryptionQueryArgProfiles(String),
}
Expand description
Errors returned by UpdateFieldLevelEncryptionConfig
Variants§
AccessDenied(String)
Access denied.
IllegalUpdate(String)
Origin and CallerReference
cannot be updated.
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 for the distribution.
NoSuchFieldLevelEncryptionConfig(String)
The specified configuration for field-level encryption doesn't exist.
NoSuchFieldLevelEncryptionProfile(String)
The specified profile for field-level encryption doesn't exist.
PreconditionFailed(String)
The precondition given in one or more of the request header fields evaluated to false
.
QueryArgProfileEmpty(String)
No profile specified for the field-level encryption query argument.
TooManyFieldLevelEncryptionContentTypeProfiles(String)
The maximum number of content type profiles for field-level encryption have been created.
TooManyFieldLevelEncryptionQueryArgProfiles(String)
The maximum number of query arg profiles for field-level encryption have been created.
Implementations§
Trait Implementations§
Source§impl Error for UpdateFieldLevelEncryptionConfigError
impl Error for UpdateFieldLevelEncryptionConfigError
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 UpdateFieldLevelEncryptionConfigError
impl PartialEq for UpdateFieldLevelEncryptionConfigError
Source§fn eq(&self, other: &UpdateFieldLevelEncryptionConfigError) -> bool
fn eq(&self, other: &UpdateFieldLevelEncryptionConfigError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateFieldLevelEncryptionConfigError
Auto Trait Implementations§
impl Freeze for UpdateFieldLevelEncryptionConfigError
impl RefUnwindSafe for UpdateFieldLevelEncryptionConfigError
impl Send for UpdateFieldLevelEncryptionConfigError
impl Sync for UpdateFieldLevelEncryptionConfigError
impl Unpin for UpdateFieldLevelEncryptionConfigError
impl UnwindSafe for UpdateFieldLevelEncryptionConfigError
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