action wowza_create_transcoder_output_output_stream_target { label: "Create an output stream target" description: "This operation creates an output stream target. Targets whose type is UltraLowLatencyStreamTarget can't be added to output renditions." provider: wowza method: POST path: "/transcoders/{transcoder_id}/outputs/{output_id}/output_stream_targets" encoding: json input: { type: "object" properties: { output_id: { type: "string" } transcoder_id: { type: "string" } } required: ["output_id", "transcoder_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }