

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# 상태 변경 이벤트에 대한 JSON
<a name="monitoring-cloudwatch-json-state-change"></a>

[채널 또는 멀티플렉스](monitor-activity-types-channel.md)의 상태 변화를 기반으로 하는 이벤트는 해당 `detail-type` 속성으로 식별됩니다.
+ `MediaLive Channel State Change`(채널)
+ `MediaLive Multiplex State Change`(멀티플렉스용)

**예제**

다음은 상태 변경 이벤트에 대한 JSON 페이로드의 예입니다. 3행의 `detail-type`에 유의하세요.

```
{
    "version": "0",
    "id": "fbcbbbe3-2541-d4a3-d819-x39f522a8ce",
    "detail-type": "MediaLive Channel State Change",
    "source": "aws.medialive",
    "account": "111122223333",
    "time": "2023-03-08T18:40:59Z",
    "region": "us-west-2",
    "resources": [
        "arn:aws:medialive:us-west-2:111122223333:channel:283886"
    ],
    "detail": {
        "channel_arn": "arn:aws:medialive:us-west-2:111122223333:channel:123456",
        "state": "DELETED",
        "message": "Deleted channel",
        "pipelines_running_count": 0
    }
}
```