Amazon WorkMail · Schema

UpdatePrimaryEmailAddressRequest

UpdatePrimaryEmailAddressRequest schema from Amazon WorkMail API

Business CommunicationCalendarEmailExchangeEnterprise

Properties

Name Type Description
OrganizationId object
EntityId object
Email object
View JSON Schema on GitHub

JSON Schema

workmail-update-primary-email-address-request-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "OrganizationId",
    "EntityId",
    "Email"
  ],
  "title": "UpdatePrimaryEmailAddressRequest",
  "properties": {
    "OrganizationId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrganizationId"
        },
        {
          "description": "The organization that contains the user, group, or resource to update."
        }
      ]
    },
    "EntityId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkMailIdentifier"
        },
        {
          "description": "The user, group, or resource to update."
        }
      ]
    },
    "Email": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EmailAddress"
        },
        {
          "description": "The value of the email to be updated as primary."
        }
      ]
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-workmail/refs/heads/main/json-schema/workmail-update-primary-email-address-request-schema.json",
  "description": "UpdatePrimaryEmailAddressRequest schema from Amazon WorkMail API"
}