:doc:`MediaLive <../../medialive>` / Client / list_multiplex_programs

***********************
list_multiplex_programs
***********************



.. py:method:: MediaLive.Client.list_multiplex_programs(**kwargs)

  List the programs that currently exist for a specific multiplex.

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListMultiplexPrograms>`_  


  **Request Syntax**
  ::

    response = client.list_multiplex_programs(
        MaxResults=123,
        MultiplexId='string',
        NextToken='string'
    )
    
  :type MaxResults: integer
  :param MaxResults: The maximum number of items to return.

  
  :type MultiplexId: string
  :param MultiplexId: **[REQUIRED]** The ID of the multiplex that the programs belong to.

  
  :type NextToken: string
  :param NextToken: The token to retrieve the next page of results.

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'MultiplexPrograms': [
              {
                  'ChannelId': 'string',
                  'ProgramName': 'string'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* An array of the programs for one multiplex.
      

      - **MultiplexPrograms** *(list) --* List of multiplex programs.
        

        - *(dict) --* Placeholder documentation for MultiplexProgramSummary
          

          - **ChannelId** *(string) --* The MediaLive Channel associated with the program.
          

          - **ProgramName** *(string) --* The name of the multiplex program.
      
    
      

      - **NextToken** *(string) --* Token for the next ListMultiplexProgram request.
  
  **Exceptions**
  
  *   :py:class:`MediaLive.Client.exceptions.BadRequestException`

  
  *   :py:class:`MediaLive.Client.exceptions.InternalServerErrorException`

  
  *   :py:class:`MediaLive.Client.exceptions.ForbiddenException`

  
  *   :py:class:`MediaLive.Client.exceptions.BadGatewayException`

  
  *   :py:class:`MediaLive.Client.exceptions.NotFoundException`

  
  *   :py:class:`MediaLive.Client.exceptions.GatewayTimeoutException`

  
  *   :py:class:`MediaLive.Client.exceptions.TooManyRequestsException`

  