Amazon CodeDeploy · Schema
AlarmConfiguration
Information about alarms associated with a deployment or deployment group.
AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment
Properties
| Name | Type | Description |
|---|---|---|
| enabled | object | |
| ignorePollAlarmFailure | object | |
| alarms | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-schema/amazon-codedeploy-alarm-configuration-schema.json",
"title": "AlarmConfiguration",
"description": "Information about alarms associated with a deployment or deployment group.",
"type": "object",
"properties": {
"enabled": {
"allOf": [
{
"$ref": "#/components/schemas/Boolean"
},
{
"description": "Indicates whether the alarm configuration is enabled."
}
]
},
"ignorePollAlarmFailure": {
"allOf": [
{
"$ref": "#/components/schemas/Boolean"
},
{
"description": "<p>Indicates whether a deployment should continue if information about the current state of alarms cannot be retrieved from Amazon CloudWatch. The default value is false.</p> <ul> <li> <p> <code>true</code>: The deployment proceeds even if alarm status information can't be retrieved from Amazon CloudWatch.</p> </li> <li> <p> <code>false</code>: The deployment stops if alarm status information can't be retrieved from Amazon CloudWatch.</p> </li> </ul>"
}
]
},
"alarms": {
"allOf": [
{
"$ref": "#/components/schemas/AlarmList"
},
{
"description": "A list of alarms configured for the deployment or deployment group. A maximum of 10 alarms can be added."
}
]
}
}
}