HEX
Server: Apache
System: Linux srv1.prosuiteplus.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: prosuiteplus (1001)
PHP: 8.3.20
Disabled: NONE
Upload Files
File: //lib/python3/dist-packages/awscli/examples/codestar/list-team-members.rst
**To view a list of team members**

The following ``list-team-members`` example retrieves a list of users associated with the specified project. ::

    aws codestar list-team-members \
        --project-id my-project

Output::

    {
        "teamMembers": [
            {
                "userArn": "arn:aws:iam::123456789012:user/admin",
                "projectRole": "Owner",
                "remoteAccessAllowed": false
            },
            {
                "userArn": "arn:aws:iam::123456789012:user/intern",
                "projectRole": "Contributor",
                "remoteAccessAllowed": false
            }
        ]
    }