Represents the output of a StopDeployment operation.
StopDeployment
{ "$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-stop-deployment-output-schema.json", "title": "StopDeploymentOutput", "description": " Represents the output of a <code>StopDeployment</code> operation. ", "type": "object", "properties": { "status": { "allOf": [ { "$ref": "#/components/schemas/StopStatus" }, { "description": "<p>The status of the stop deployment operation:</p> <ul> <li> <p>Pending: The stop operation is pending.</p> </li> <li> <p>Succeeded: The stop operation was successful.</p> </li> </ul>" } ] }, "statusMessage": { "allOf": [ { "$ref": "#/components/schemas/Message" }, { "description": "An accompanying status message." } ] } } }