What is causing this error?
S3 Transfer Acceleration is not enabled.
The S3 bucket is not in the appropriate region.
The S3 bucket is being throttled.
There are insufficient permissions on the artifact in Amazon S3.
Explanations:
S3 Transfer Acceleration is not required for cross-region access between us-east-1 and us-west-1. It accelerates transfers within the same region or over long distances.
AWS CodePipeline requires artifacts to be in the same region as the pipeline. Cross-region artifacts (us-west-1 to us-east-1) can cause issues like theJobFailederror.
Throttling of the S3 bucket wouldn’t typically result in aJobFailederror in this context. Throttling might cause slower performance but not this specific error.
Insufficient permissions would likely result in anAccessDeniederror, not anInternalError. Permissions issues are not the direct cause of this error.