0

How can I modify through AWS CLI or AWS SDK the Destination A or Destination B application name and instance name for a MediaLive RTMP(push) input?

According to the update-input, there is a way to update Destinations, but so far it looks like only StreamName is exposed to be changed.

These two props can be changed in the UI(see the below image) and I assume there is a way to do it with CLI.

AWS MediaLive change input's application name and instance

kord
  • 979
  • 14
  • 24

1 Answers1

0

Use / to separate application name from application instance in the update request for the --destinations parameter.

[
  {
    "StreamName": "name/instance"
  }
  ...
]
David Buck
  • 3,752
  • 35
  • 31
  • 35