1**To stop a service update**
2
3The following ``batch-stop-update-action`` example applies a service update to a Redis cluster. ::
4
5    aws elasticache batch-stop-update-action \
6        --service-update-name elc-xxxxx406-xxx \
7        --replication-group-ids test-cluster
8
9Output::
10
11    {
12        "ProcessedUpdateActions": [
13            {
14                "ReplicationGroupId": "pat-cluster",
15                "ServiceUpdateName": "elc-xxxxx406-xxx",
16                "UpdateActionStatus": "stopping"
17            }
18        ],
19        "UnprocessedUpdateActions": []
20    }
21
22For more information, see `Self-Service Updates in Amazon ElastiCache <https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/Self-Service-Updates.html>`__ in the *Elasticache User Guide*.