Amazon CodeStar · Schema

DisassociateTeamMemberRequest

DisassociateTeamMemberRequest schema from AWS CodeStar API

Developer ToolsDevOpsProject ManagementTeam Collaboration

Properties

Name Type Description
projectId object
userArn object
View JSON Schema on GitHub

JSON Schema

codestar-disassociate-team-member-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codestar/refs/heads/main/json-schema/codestar-disassociate-team-member-request-schema.json",
  "title": "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"
  ]
}