listChannelGroups
inline suspend fun MediaPackageV2Client.listChannelGroups(crossinline block: ListChannelGroupsRequest.Builder.() -> Unit): ListChannelGroupsResponse
Retrieves all channel groups that are configured in AWS Elemental MediaPackage, including the channels and origin endpoints that are associated with it.
Samples
fun main() {
//sampleStart
// Listing all Channel Groups
val resp = mediaPackageV2Client.listChannelGroups()
//sampleEnd
}