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)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
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
self and other values to be equal, and is used by ==.