app-lifecycle_manager Schemas

On this page:

resource-instance-common

{ "$id": "resource-instance-common", "description": "A representation of a resource model instance.", "definitions": { "name": { "type": "string", "description": "The name of the resource instance", "examples": [ "VLAN Service", "EC2 Instance" ] }, "description": { "type": "string", "description": "Free-form text describing the resource instance", "default": "", "examples": [ "EC2 Instance in US-EAST-1 with ID ec2-12345678" ] }, "stateId": { "description": "The hexadecimal identifier of the current state of the resource instance", "$ref": "common#/definitions/state-identifier" }, "stateName": { "description": "The name of the current state of the resource instance", "type": "string" }, "instanceData": { "description": "The data for the resource instance", "oneOf": [ { "type": "object" }, { "type": "null" } ] }, "created": { "description": "An ISO date string denoting when this resource instance was created", "$ref": "common#/definitions/iso-date-string" }, "lastUpdated": { "description": "An ISO date string denoting when this resource instance was last updated", "$ref": "common#/definitions/iso-date-string" } } }