pub enum UpdateStreamingDistributionError {
Show 13 variants
AccessDenied(String),
CNAMEAlreadyExists(String),
IllegalUpdate(String),
InconsistentQuantities(String),
InvalidArgument(String),
InvalidIfMatchVersion(String),
InvalidOriginAccessIdentity(String),
MissingBody(String),
NoSuchStreamingDistribution(String),
PreconditionFailed(String),
TooManyStreamingDistributionCNAMEs(String),
TooManyTrustedSigners(String),
TrustedSignerDoesNotExist(String),
}
Expand description
Errors returned by UpdateStreamingDistribution
Variants§
AccessDenied(String)
Access denied.
CNAMEAlreadyExists(String)
The CNAME specified is already defined for CloudFront.
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.
InvalidOriginAccessIdentity(String)
The origin access identity is not valid or doesn't exist.
MissingBody(String)
This operation requires a body. Ensure that the body is present and the Content-Type
header is set.
NoSuchStreamingDistribution(String)
The specified streaming distribution does not exist.
PreconditionFailed(String)
The precondition given in one or more of the request header fields evaluated to false
.
TooManyStreamingDistributionCNAMEs(String)
Your request contains more CNAMEs than are allowed per distribution.
TooManyTrustedSigners(String)
Your request contains more trusted signers than are allowed per distribution.
TrustedSignerDoesNotExist(String)
One or more of your trusted signers don't exist.
Implementations§
Trait Implementations§
Source§impl Error for UpdateStreamingDistributionError
impl Error for UpdateStreamingDistributionError
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
Source§impl PartialEq for UpdateStreamingDistributionError
impl PartialEq for UpdateStreamingDistributionError
Source§fn eq(&self, other: &UpdateStreamingDistributionError) -> bool
fn eq(&self, other: &UpdateStreamingDistributionError) -> bool
self
and other
values to be equal, and is used by ==
.