

本文為英文版的機器翻譯版本，如內容有任何歧義或不一致之處，概以英文版為準。

# 停用每個輸出浮水印動作 – 承載
<a name="cli-schedule-fields-for-deactivate-image-per-output"></a>

如需下列 JSON 中欄位意義和值的資訊，請參閱 [停用每個輸出影像浮水印的欄位](schedule-fields-deactivate-image-per-output.md)。

```
{
 "ChannelId": "string",
 "Creates": {
 "ScheduleActions": [
  {
   "ScheduleActionStartSettings": {
    "FixedModeScheduleActionStartSettings": {
     "Time": "string"
    },
    "ImmediateModeScheduleActionStartSettings": {
    }
   },
   "ActionName": "string",
   "ScheduleActionSettings": {
    "StaticImageOutputDeactivateSettings": {
     "FadeOut": integer,
     "Layer": integer,
     "OutputNames"
    }
   }
  }
 ]
}
```

## 範例
<a name="cli-schedule-fields-for-deactivate-image-per-output-example"></a>

停用動作會在指定的輸出或輸出中停用指定每個輸出層中的映像。

在此範例的後續啟用範例中， 動作會移除輸出 hls-high-res 中每個輸出層 4 中的所有影像浮水印。

```
{
  "ChannelId": "999999",
  "Creates": {
  "ScheduleActions": [
    {
      "ScheduleActionStartSettings": {
        "FixedModeScheduleActionStartSettings": {
          "Time": "2018-05-21T20:42:04.000Z"
        }
      },
      "ActionName": "stop-layer4-all-outputs",
      "ScheduleActionSettings": {
        "StaticImageOutputDeactivateSettings": {
          "outputNames": [
            hls-high-res
           ],
          "FadeOut": 500,
          "Layer": 4
          }
        }
      }
    ]
  }
}
```