pub enum CreateStreamingDistributionError {
AccessDenied(String),
CNAMEAlreadyExists(String),
InconsistentQuantities(String),
InvalidArgument(String),
InvalidOrigin(String),
InvalidOriginAccessIdentity(String),
MissingBody(String),
StreamingDistributionAlreadyExists(String),
TooManyStreamingDistributionCNAMEs(String),
TooManyStreamingDistributions(String),
TooManyTrustedSigners(String),
TrustedSignerDoesNotExist(String),
}
Expand description
Errors returned by CreateStreamingDistribution
Variants§
AccessDenied(String)
Access denied.
CNAMEAlreadyExists(String)
The CNAME specified is already defined for CloudFront.
InconsistentQuantities(String)
The value of Quantity
and the size of Items
don't match.
InvalidArgument(String)
An argument is invalid.
InvalidOrigin(String)
The Amazon S3 origin server specified does not refer to a valid Amazon S3 bucket.
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.
StreamingDistributionAlreadyExists(String)
The caller reference you attempted to create the streaming distribution with is associated with another distribution
TooManyStreamingDistributionCNAMEs(String)
Your request contains more CNAMEs than are allowed per distribution.
TooManyStreamingDistributions(String)
Processing your request would cause you to exceed the maximum number of streaming distributions allowed.
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 CreateStreamingDistributionError
impl Error for CreateStreamingDistributionError
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 CreateStreamingDistributionError
impl PartialEq for CreateStreamingDistributionError
Source§fn eq(&self, other: &CreateStreamingDistributionError) -> bool
fn eq(&self, other: &CreateStreamingDistributionError) -> bool
self
and other
values to be equal, and is used by ==
.