Amazon CodeStar · JSON Structure

Codestar Team Member Structure

Information about a team member in a project.

Type: object Properties: 3 Required: 2
Developer ToolsDevOpsProject ManagementTeam Collaboration

TeamMember is a JSON Structure definition published by Amazon CodeStar, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

userArn projectRole remoteAccessAllowed

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codestar/refs/heads/main/json-structure/codestar-team-member-structure.json",
  "name": "TeamMember",
  "description": "Information about a team member in a project.",
  "type": "object",
  "properties": {
    "userArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the user in IAM."
        }
      ]
    },
    "projectRole": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Role"
        },
        {
          "description": "The role assigned to the user in the project. Project roles have different levels of access. For more information, see <a href=\"http://docs.aws.amazon.com/codestar/latest/userguide/working-with-teams.html\">Working with Teams</a> in the <i>AWS CodeStar User Guide</i>. "
        }
      ]
    },
    "remoteAccessAllowed": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RemoteAccessAllowed"
        },
        {
          "description": "Whether the user is allowed to remotely access project resources using an SSH public/private key pair."
        }
      ]
    }
  },
  "required": [
    "userArn",
    "projectRole"
  ]
}