생성 액션의 조합 - MediaLive

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

생성 액션의 조합

다음은 batch-update-schedule AWS CLI 명령의 --creates 파라미터에 전달할 JSON 본문의 예입니다. 여기에는 생성할 두 가지 작업이 포함되어 있습니다. 이 예제에서는 두 작업이 모두 splice_insert이지만, 실제로 모든 유형의 생성 작업을 원하는 개수만큼 결합할 수 있습니다.

{ "ScheduleActions": [ { "ScheduleActionSettings": { "Scte35SpliceInsertSettings": { "Duration": 1350000, "SpliceEventId": 3 } }, "ActionName": "SpliceInsert-01", "ScheduleActionStartSettings": { "FixedModeScheduleActionStartSettings": { "Time": "2018-11-05T16:10:30.000Z" } } }, { "ScheduleActionSettings": { "Scte35SpliceInsertSettings": { "Duration": 2700000, "SpliceEventId": 3 } }, "ActionName": "SpliceInsert-02", "ScheduleActionStartSettings": { "FixedModeScheduleActionStartSettings": { "Time": "2018-11-05T16:30:45.000Z" } } } ] }