:doc:`MediaLive <../../medialive>` / Paginator / ListSdiSources

**************
ListSdiSources
**************



.. py:class:: MediaLive.Paginator.ListSdiSources

  ::

    
    paginator = client.get_paginator('list_sdi_sources')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`MediaLive.Client.list_sdi_sources`.

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

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

      
      ::

        {
            'SdiSources': [
                {
                    'Arn': 'string',
                    'Id': 'string',
                    'Inputs': [
                        'string',
                    ],
                    'Mode': 'QUADRANT'|'INTERLEAVE',
                    'Name': 'string',
                    'State': 'IDLE'|'IN_USE'|'DELETED',
                    'Type': 'SINGLE'|'QUAD'
                },
            ]
        }
        
      **Response Structure**

      

      - *(dict) --* An array of SdiSources.
        

        - **SdiSources** *(list) --* Placeholder documentation for __listOfSdiSourceSummary
          

          - *(dict) --* Used in CreateSdiSourceResponse, DeleteSdiSourceResponse, DescribeSdiSourceResponse, ListSdiSourcesResponse, UpdateSdiSourceResponse
            

            - **Arn** *(string) --* The ARN of this SdiSource. It is automatically assigned when the SdiSource is created.
            

            - **Id** *(string) --* The ID of the SdiSource. Unique in the AWS account.The ID is the resource-id portion of the ARN.
            

            - **Inputs** *(list) --* The list of inputs that are currently using this SDI source. This list will be empty if the SdiSource has just been deleted.
              

              - *(string) --* Placeholder documentation for __string
          
            

            - **Mode** *(string) --* Applies only if the type is QUAD. The mode for handling the quad-link signal QUADRANT or INTERLEAVE.
            

            - **Name** *(string) --* The name of the SdiSource.
            

            - **State** *(string) --* Specifies whether the SDI source is attached to an SDI input (IN_USE) or not (IDLE).
            

            - **Type** *(string) --* Used in SdiSource, CreateSdiSourceRequest, UpdateSdiSourceRequest.
        
      
    