

# List resource sets
<a name="list-resource-sets"></a>

The following is an example of a request to list the resource sets in an account, and the response.

```
aws route53-recovery-readiness --region us-west-2 list-resource-sets
```

```
{
    "ResourceSets": [
        {
            "ResourceSetArn": "arn:aws:route53-recovery-readiness::888888888888:resource-set/sample-resource-set",
            "ResourceSetName": "sample-resource-set",
            "Resources": [
                {
                    "ReadinessScopes": [],
                    "ResourceArn": "arn:aws:ec2:us-west-2:888888888888:volume/vol-014869e6063ed547b"
                },
                {
                    "ReadinessScopes": [],
                    "ResourceArn": "arn:aws:ec2:ap-southeast-1:888888888888:volume/vol-0bc095e048255a901"
                }
            ],
            "Tags": {}
        }
    ]
}
```