Hello again, any way to create media converter job...
# help
a
Hello again, any way to create media converter job from sst?
s
there are no SST constructs for it, so you’ll have to use plain CDK
Copy code
const videoQueue = new mediaconvert.CfnQueue(this, 'VideoQueue', {
      description: 'Video processing queue',
      name: `VideoProcessor-${app.stage}`,
      pricingPlan: 'ON_DEMAND',
    });
a
Yea, I already got it, but anyway thanks for answer
s
👍