Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aws
GitHub Repository: aws/aws-cli
Path: blob/develop/awscli/examples/deploy/list-deployment-instances.rst
1567 views
**To get information about deployment instances**

The following ``list-deployment-instances`` example displays information about all deployment instances that are associated with the specified deployment. ::

    aws deploy list-deployment-instances \
        --deployment-id d-A1B2C3111 \
        --instance-status-filter Succeeded

Output::

    {
        "instancesList": [
            "i-EXAMPLE11",
            "i-EXAMPLE22"
        ]
    }