updateChannelGroup
inline suspend fun MediaPackageV2Client.updateChannelGroup(crossinline block: UpdateChannelGroupRequest.Builder.() -> Unit): UpdateChannelGroupResponse
Update the specified channel group. You can edit the description on a channel group for easier identification later from the AWS Elemental MediaPackage console. You can't edit the name of the channel group.
Any edits you make that impact the video output may not be reflected for a few minutes.
Samples
fun main() {
//sampleStart
// Updating a Channel Group
val resp = mediaPackageV2Client.updateChannelGroup {
channelGroupName = "exampleChannelGroup"
description = "Updated description for exampleChannelGroup"
}
//sampleEnd
}