
# 资源快照存储完成的消息通知模型
#### 资源快照存储完成的消息通知模型
表1资源快照存储完成的消息通知模型 
| **参数**                     | **参数类型** | **描述**                                                                                                                      |
|:---|:---|:---|
| notification_type          | String   | 消息通知类型。此处的消息通知类型为"SnapshotArchiveCompleted"。                                                                                |
| notification_creation_time | String   | 消息发送时间。 具有固定格式：遵循ISO8601格式，UTC时区（例如：2018-11-14T08:59:14Z）。 |
| domain_id                  | String   | 账号ID。                                                                                                                       |
| detail                     | Object   | 消息详情。                                                                                                                       |
   
表2detail 
| **参数**      | **参数类型**        | **描述**             |
|:---|:---|:---|
| snapshot_id | String          | 资源快照ID。            |
| region_id   | String          | 资源快照所在区域ID。        |
| bucket_name | String          | 资源快照所在OBS桶名。       |
| object_keys | Array of String | 资源快照存储的OBS桶内对象的路径。 |
   
#### 资源快照存储完成的消息通知示例
```
{
  "detail": {
    "snapshot_id": "474f85e6-72cd-442b-af4e-517120a5c669",
    "region_id": "regionid1a",
    "bucket_name": "test",
    "object_keys": [
      "RMSLogs/059b5c937100d3e40ff0c00a7675a0a0/Snapshot/2020/8/11/059b5c937100d3e40ff0c00a7675a0a0_Snapshot_regionid1a_ResourceSnapshot_2020-08-10T170901_474f85e6-72cd-442b-af4e-517120a5c669_part-1.json.gz"
    ]
  },
  "notification_type": "SnapshotArchiveCompleted",
  "notification_creation_time": "2020-08-10T17:09:27.314Z",
  "domain_id": "059b5c937100d3e40ff0c00a7675a0a0"
}
```
