#[non_exhaustive]
pub enum CreateStreamingDistributionErrorKind {
Show 14 variants
AccessDenied(AccessDenied),
CnameAlreadyExists(CnameAlreadyExists),
InconsistentQuantities(InconsistentQuantities),
InvalidArgument(InvalidArgument),
InvalidOrigin(InvalidOrigin),
InvalidOriginAccessControl(InvalidOriginAccessControl),
InvalidOriginAccessIdentity(InvalidOriginAccessIdentity),
MissingBody(MissingBody),
StreamingDistributionAlreadyExists(StreamingDistributionAlreadyExists),
TooManyStreamingDistributionCnamEs(TooManyStreamingDistributionCnamEs),
TooManyStreamingDistributions(TooManyStreamingDistributions),
TooManyTrustedSigners(TooManyTrustedSigners),
TrustedSignerDoesNotExist(TrustedSignerDoesNotExist),
Unhandled(Unhandled),
}
Expand description
Types of errors that can occur for the CreateStreamingDistribution
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
AccessDenied(AccessDenied)
Access denied.
CnameAlreadyExists(CnameAlreadyExists)
The CNAME specified is already defined for CloudFront.
InconsistentQuantities(InconsistentQuantities)
The value of Quantity
and the size of Items
don't match.
InvalidArgument(InvalidArgument)
An argument is invalid.
InvalidOrigin(InvalidOrigin)
The Amazon S3 origin server specified does not refer to a valid Amazon S3 bucket.
InvalidOriginAccessControl(InvalidOriginAccessControl)
The origin access control is not valid.
InvalidOriginAccessIdentity(InvalidOriginAccessIdentity)
The origin access identity is not valid or doesn't exist.
MissingBody(MissingBody)
This operation requires a body. Ensure that the body is present and the Content-Type
header is set.
StreamingDistributionAlreadyExists(StreamingDistributionAlreadyExists)
The caller reference you attempted to create the streaming distribution with is associated with another distribution
TooManyStreamingDistributionCnamEs(TooManyStreamingDistributionCnamEs)
Your request contains more CNAMEs than are allowed per distribution.
TooManyStreamingDistributions(TooManyStreamingDistributions)
Processing your request would cause you to exceed the maximum number of streaming distributions allowed.
TooManyTrustedSigners(TooManyTrustedSigners)
Your request contains more trusted signers than are allowed per distribution.
TrustedSignerDoesNotExist(TrustedSignerDoesNotExist)
One or more of your trusted signers don't exist.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
When logging an error from the SDK, it is recommended that you either wrap the error in
DisplayErrorContext
, use another
error reporter library that visits the error’s cause/source chain, or call
Error::source
for more details about the underlying cause.