Amazon WorkMail · Schema
UpdateResourceRequest
UpdateResourceRequest schema from Amazon WorkMail API
Business CommunicationCalendarEmailExchangeEnterprise
Properties
| Name | Type | Description |
|---|---|---|
| OrganizationId | object | |
| ResourceId | object | |
| Name | object | |
| BookingOptions | object |
JSON Schema
{
"type": "object",
"required": [
"OrganizationId",
"ResourceId"
],
"title": "UpdateResourceRequest",
"properties": {
"OrganizationId": {
"allOf": [
{
"$ref": "#/components/schemas/OrganizationId"
},
{
"description": "The identifier associated with the organization for which the resource is updated."
}
]
},
"ResourceId": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceId"
},
{
"description": "The identifier of the resource to be updated."
}
]
},
"Name": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceName"
},
{
"description": "The name of the resource to be updated."
}
]
},
"BookingOptions": {
"allOf": [
{
"$ref": "#/components/schemas/BookingOptions"
},
{
"description": "The resource's booking options to be updated."
}
]
}
},
"$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-resource-request-schema.json",
"description": "UpdateResourceRequest schema from Amazon WorkMail API"
}