2013-02-12 45 views
1

我正嘗試在Elastic Transcoder中創建自己的管道。我正在使用boto標準函數create_pipeline(name,input_bucket,output_bucket,role,notifications)。 你能告訴我通知(結構)它應該是什麼樣子? 到目前爲止,我有這樣的事情: create_pipeline( '測試', 'test_start', 'test_end', 'ARN:AWS:IAM :: 789823056103:角色/ Elastic_Transcoder_Default_Role',...)瞭解Elastic Transcoder的boto文檔

謝謝!

回答

1

它應該是一個字典,其中包含字典中的4個鍵(我將推送一個更改,用dict類型更新結構類型)。所以如果你不需要通知,你只需指定鍵的空值:

{'Progressing':'','Completed':'','Warning':'','Error':'' }

+0

這是我從James Saryerwinnie得到的答案 – 2013-02-13 08:51:28

相關問題