AWS CloudFormation · Schema
ProgressEvent
Represents the current status of a resource operation request.
AutomationCloud ResourcesIaCInfrastructure As CodeStack Management
Properties
| Name | Type | Description |
|---|---|---|
| TypeName | string | The resource type name. |
| Identifier | string | The primary identifier for the resource. |
| RequestToken | string | The unique token representing this resource operation request. Use this token with GetResourceRequestStatus to check operation progress. |
| HooksRequestToken | string | The unique token for hooks processing. |
| Operation | string | The resource operation type. |
| OperationStatus | string | The current status of the resource operation request. |
| EventTime | number | When the resource operation request was initiated (Unix timestamp). |
| ResourceModel | string | A JSON string representing the resource model. |
| StatusMessage | string | A message explaining the current status. |
| ErrorCode | string | The error code if the operation failed. |
| RetryAfter | number | When to retry the operation (Unix timestamp). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ProgressEvent",
"type": "object",
"description": "Represents the current status of a resource operation request.",
"properties": {
"TypeName": {
"type": "string",
"description": "The resource type name."
},
"Identifier": {
"type": "string",
"description": "The primary identifier for the resource."
},
"RequestToken": {
"type": "string",
"description": "The unique token representing this resource operation request. Use this token with GetResourceRequestStatus to check operation progress."
},
"HooksRequestToken": {
"type": "string",
"description": "The unique token for hooks processing."
},
"Operation": {
"type": "string",
"description": "The resource operation type."
},
"OperationStatus": {
"type": "string",
"description": "The current status of the resource operation request."
},
"EventTime": {
"type": "number",
"description": "When the resource operation request was initiated (Unix timestamp)."
},
"ResourceModel": {
"type": "string",
"description": "A JSON string representing the resource model."
},
"StatusMessage": {
"type": "string",
"description": "A message explaining the current status."
},
"ErrorCode": {
"type": "string",
"description": "The error code if the operation failed."
},
"RetryAfter": {
"type": "number",
"description": "When to retry the operation (Unix timestamp)."
}
}
}