AWS CloudFormation · Schema
StackResourceDrift
AutomationCloud ResourcesIaCInfrastructure As CodeStack Management
Properties
| Name | Type | Description |
|---|---|---|
| StackId | string | |
| LogicalResourceId | string | |
| PhysicalResourceId | string | |
| PhysicalResourceIdContext | array | |
| ResourceType | string | |
| ExpectedProperties | string | A JSON string of the expected property values as defined in the template. |
| ActualProperties | string | A JSON string of the actual property values of the resource. |
| PropertyDifferences | array | |
| StackResourceDriftStatus | string | |
| Timestamp | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "StackResourceDrift",
"type": "object",
"properties": {
"StackId": {
"type": "string"
},
"LogicalResourceId": {
"type": "string"
},
"PhysicalResourceId": {
"type": "string"
},
"PhysicalResourceIdContext": {
"type": "array"
},
"ResourceType": {
"type": "string"
},
"ExpectedProperties": {
"type": "string",
"description": "A JSON string of the expected property values as defined in the template."
},
"ActualProperties": {
"type": "string",
"description": "A JSON string of the actual property values of the resource."
},
"PropertyDifferences": {
"type": "array"
},
"StackResourceDriftStatus": {
"type": "string"
},
"Timestamp": {
"type": "string"
}
}
}