A development team has pushed a new Docker image tag to Amazon ECR and needs to update their running Amazon ECS service to use this new image. What is the standard process to deploy the update to the ECS service?
A. SSH into the underlying EC2 instances, run docker pull to get the new image, and restart the Docker daemon.
B. Update the ECS cluster configuration to point to the new ECR image URI and restart the cluster.
C. Create a new task definition revision that references the new ECR image URI, and update the ECS service to use the new revision.
D. Modify the existing task definition in place with the new ECR image URI, which automatically triggers a service update.
Create a new task definition revision referencing the new image, then update the service to use that revision.