getChannelGroup
inline suspend fun MediaPackageV2Client.getChannelGroup(crossinline block: GetChannelGroupRequest.Builder.() -> Unit): GetChannelGroupResponse
Retrieves the specified channel group that's configured in AWS Elemental MediaPackage, including the channels and origin endpoints that are associated with it.
Samples
fun main() {
//sampleStart
// Getting a Channel Group
val resp = mediaPackageV2Client.getChannelGroup {
channelGroupName = "exampleChannelGroup"
}
//sampleEnd
}