{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-structure/config-config-stream-delivery-info-structure.json", "name": "ConfigStreamDeliveryInfo", "description": "A list that contains the status of the delivery of the configuration stream notification to the Amazon SNS topic.", "type": "object", "properties": { "lastStatus": { "allOf": [ { "$ref": "#/components/schemas/DeliveryStatus" }, { "description": "

Status of the last attempted delivery.

Note Providing an SNS topic on a DeliveryChannel for Config is optional. If the SNS delivery is turned off, the last status will be Not_Applicable.

" } ] }, "lastErrorCode": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The error code from the last attempted delivery." } ] }, "lastErrorMessage": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The error message from the last attempted delivery." } ] }, "lastStatusChangeTime": { "allOf": [ { "$ref": "#/components/schemas/Date" }, { "description": "The time from the last status change." } ] } } }