1**To check the status of your bulk deployment**
2
3The following ``get-bulk-deployment-status`` example retrieves status information for the specified bulk deployment operation. In this example, the file that specified the groups to be deployed has an invalid input record. ::
4
5    aws greengrass get-bulk-deployment-status \
6        --bulk-deployment-id "870fb41b-6288-4e0c-bc76-a7ba4b4d3267"
7
8Output::
9
10    {
11        "BulkDeploymentMetrics": {
12            "InvalidInputRecords": 1,
13            "RecordsProcessed": 1,
14            "RetryAttempts": 0
15        },
16        "BulkDeploymentStatus": "Completed",
17        "CreatedAt": "2019-06-25T16:11:33.265Z",
18        "tags": {}
19    }
20
21For more information, see `Create Bulk Deployments for Groups <https://docs.aws.amazon.com/greengrass/latest/developerguide/bulk-deploy-cli.html>`__ in the *AWS IoT Greengrass Developer Guide*.
22