Airflow Summit 2025 is coming October 07-09. Register now for early bird ticket!

airflow.providers.amazon.aws.exceptions

Exceptions

EcsTaskFailToStart

Raise when ECS tasks fail to start AFTER processing the request.

EcsOperatorError

Raise when ECS cannot handle the request.

S3HookUriParseFailure

When parse_s3_url fails to parse URL, this error is thrown.

Module Contents

exception airflow.providers.amazon.aws.exceptions.EcsTaskFailToStart(message)[source]

Bases: Exception

Raise when ECS tasks fail to start AFTER processing the request.

message[source]
__reduce__()[source]

Return ECSTask state and its message.

exception airflow.providers.amazon.aws.exceptions.EcsOperatorError(failures, message)[source]

Bases: Exception

Raise when ECS cannot handle the request.

failures[source]
message[source]
__reduce__()[source]

Return EcsOperator state and a tuple of failures list and message.

exception airflow.providers.amazon.aws.exceptions.S3HookUriParseFailure[source]

Bases: airflow.exceptions.AirflowException

When parse_s3_url fails to parse URL, this error is thrown.

Was this entry helpful?