1 Answer
- Newest
- Most votes
- Most comments
0
Hi Matt,
Thanks for using AWS re:Post. In order to complete your MediaConnect rtp protocol CloudFormation stack, you'll need to remove the StreamId
parameter which you've included as part of the AWS::MediaConnect::FlowSource
resource.
Referencing the documentation link you were able to provide, I noted that the StreamId
applies only to Zixi-based streams. After removing it, and including the MaxBitrate
parameter, I was able to successfully create the stack.
As an example:
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "Media Connect Flow Test West2a",
"Resources": {
"MediaConnectFlowWest2a": {
"Type": "AWS::MediaConnect::Flow",
"Properties": {
"Name": "adrian-emx-rtp-flow",
"AvailabilityZone": "us-west-2a",
"Source": {
"Name": "adrian-emx-rtp-flow",
"MaxBitrate": "80000000",
"Description": "Media Connect Flow Test - West2a",
"Protocol": "rtp",
"IngestPort": 5000,
"WhitelistCidr": "<redacted>/20"
}
}
}
}
}
answered 2 years ago
Relevant content
- Accepted Answerasked 2 years ago
- Accepted Answerasked 2 years ago
- AWS OFFICIALUpdated 4 months ago
- AWS OFFICIALUpdated 7 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
Brilliant - thanks so much for taking the time to answer this. Working well now!