Amazon CodeStar · JSON Structure

Codestar Update Team Member Result Structure

UpdateTeamMemberResult schema from AWS CodeStar API

Type: object Properties: 3
Developer ToolsDevOpsProject ManagementTeam Collaboration

UpdateTeamMemberResult is a JSON Structure definition published by Amazon CodeStar, describing 3 properties. 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-update-team-member-result-structure.json",
  "name": "UpdateTeamMemberResult",
  "description": "UpdateTeamMemberResult schema from AWS CodeStar API",
  "type": "object",
  "properties": {
    "userArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the user whose team membership attributes were updated."
        }
      ]
    },
    "projectRole": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Role"
        },
        {
          "description": "The project role granted to the user."
        }
      ]
    },
    "remoteAccessAllowed": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RemoteAccessAllowed"
        },
        {
          "description": "Whether a team member is allowed to remotely access project resources using the SSH public key associated with the user's profile."
        }
      ]
    }
  }
}