Amazon CodeStar · JSON Structure

Codestar Disassociate Team Member Request Structure

DisassociateTeamMemberRequest schema from AWS CodeStar API

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

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

Properties

projectId userArn

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-disassociate-team-member-request-structure.json",
  "name": "DisassociateTeamMemberRequest",
  "description": "DisassociateTeamMemberRequest schema from AWS CodeStar API",
  "type": "object",
  "properties": {
    "projectId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProjectId"
        },
        {
          "description": "The ID of the AWS CodeStar project from which you want to remove a team member."
        }
      ]
    },
    "userArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the IAM user or group whom you want to remove from the project."
        }
      ]
    }
  },
  "required": [
    "projectId",
    "userArn"
  ]
}