pub enum CreateCloudFrontOriginAccessIdentityError {
CloudFrontOriginAccessIdentityAlreadyExists(String),
InconsistentQuantities(String),
InvalidArgument(String),
MissingBody(String),
TooManyCloudFrontOriginAccessIdentities(String),
}
Expand description
Errors returned by CreateCloudFrontOriginAccessIdentity
Variants§
CloudFrontOriginAccessIdentityAlreadyExists(String)
If the CallerReference
is a value you already sent in a previous request to create an identity but the content of the CloudFrontOriginAccessIdentityConfig
is different from the original request, CloudFront returns a CloudFrontOriginAccessIdentityAlreadyExists
error.
InconsistentQuantities(String)
The value of Quantity
and the size of Items
don't match.
InvalidArgument(String)
An argument is invalid.
MissingBody(String)
This operation requires a body. Ensure that the body is present and the Content-Type
header is set.
TooManyCloudFrontOriginAccessIdentities(String)
Processing your request would cause you to exceed the maximum number of origin access identities allowed.
Implementations§
Trait Implementations§
Source§impl Error for CreateCloudFrontOriginAccessIdentityError
impl Error for CreateCloudFrontOriginAccessIdentityError
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 CreateCloudFrontOriginAccessIdentityError
impl PartialEq for CreateCloudFrontOriginAccessIdentityError
Source§fn eq(&self, other: &CreateCloudFrontOriginAccessIdentityError) -> bool
fn eq(&self, other: &CreateCloudFrontOriginAccessIdentityError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateCloudFrontOriginAccessIdentityError
Auto Trait Implementations§
impl Freeze for CreateCloudFrontOriginAccessIdentityError
impl RefUnwindSafe for CreateCloudFrontOriginAccessIdentityError
impl Send for CreateCloudFrontOriginAccessIdentityError
impl Sync for CreateCloudFrontOriginAccessIdentityError
impl Unpin for CreateCloudFrontOriginAccessIdentityError
impl UnwindSafe for CreateCloudFrontOriginAccessIdentityError
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