Amazon Incident Manager · Schema
UpdateRelatedItemsInput
UpdateRelatedItemsInput schema
AutomationDevOpsIncident ManagementOperations
Properties
| Name | Type | Description |
|---|---|---|
| clientToken | object | |
| incidentRecordArn | object | |
| relatedItemsUpdate | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-incident-manager/refs/heads/main/json-schema/incident-manager-update-related-items-input-schema.json",
"title": "UpdateRelatedItemsInput",
"description": "UpdateRelatedItemsInput schema",
"type": "object",
"properties": {
"clientToken": {
"allOf": [
{
"$ref": "#/components/schemas/ClientToken"
},
{
"description": "A token that ensures that a client calls the operation only once with the specified details."
}
]
},
"incidentRecordArn": {
"allOf": [
{
"$ref": "#/components/schemas/Arn"
},
{
"description": "The Amazon Resource Name (ARN) of the incident record that contains the related items that you update."
}
]
},
"relatedItemsUpdate": {
"allOf": [
{
"$ref": "#/components/schemas/RelatedItemsUpdate"
},
{
"description": "Details about the item that you are add to, or delete from, an incident."
}
]
}
},
"required": [
"incidentRecordArn",
"relatedItemsUpdate"
]
}