:doc:`GlobalAccelerator <../../globalaccelerator>` / Client / update_custom_routing_listener

******************************
update_custom_routing_listener
******************************



.. py:method:: GlobalAccelerator.Client.update_custom_routing_listener(**kwargs)

  

  Update a listener for a custom routing accelerator.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/globalaccelerator-2018-08-08/UpdateCustomRoutingListener>`_  


  **Request Syntax**
  ::

    response = client.update_custom_routing_listener(
        ListenerArn='string',
        PortRanges=[
            {
                'FromPort': 123,
                'ToPort': 123
            },
        ]
    )
    
  :type ListenerArn: string
  :param ListenerArn: **[REQUIRED]** 

    The Amazon Resource Name (ARN) of the listener to update.

    

  
  :type PortRanges: list
  :param PortRanges: **[REQUIRED]** 

    The updated port range to support for connections from clients to your accelerator. If you remove ports that are currently being used by a subnet endpoint, the call fails.

     

    Separately, you set port ranges for endpoints. For more information, see `About endpoints for custom routing accelerators <https://docs.aws.amazon.com/global-accelerator/latest/dg/about-custom-routing-endpoints.html>`__.

    

  
    - *(dict) --* 

      A complex type for a range of ports for a listener.

      

    
      - **FromPort** *(integer) --* 

        The first port in the range of ports, inclusive.

        

      
      - **ToPort** *(integer) --* 

        The last port in the range of ports, inclusive.

        

      
    

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

    
    ::

      {
          'Listener': {
              'ListenerArn': 'string',
              'PortRanges': [
                  {
                      'FromPort': 123,
                      'ToPort': 123
                  },
              ]
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Listener** *(dict) --* 

        Information for the updated listener for a custom routing accelerator.

        
        

        - **ListenerArn** *(string) --* 

          The Amazon Resource Name (ARN) of the listener.

          
        

        - **PortRanges** *(list) --* 

          The port range to support for connections from clients to your accelerator.

           

          Separately, you set port ranges for endpoints. For more information, see `About endpoints for custom routing accelerators <https://docs.aws.amazon.com/global-accelerator/latest/dg/about-custom-routing-endpoints.html>`__.

          
          

          - *(dict) --* 

            A complex type for a range of ports for a listener.

            
            

            - **FromPort** *(integer) --* 

              The first port in the range of ports, inclusive.

              
            

            - **ToPort** *(integer) --* 

              The last port in the range of ports, inclusive.

              
        
      
    
  
  **Exceptions**
  
  *   :py:class:`GlobalAccelerator.Client.exceptions.InvalidArgumentException`

  
  *   :py:class:`GlobalAccelerator.Client.exceptions.InvalidPortRangeException`

  
  *   :py:class:`GlobalAccelerator.Client.exceptions.ListenerNotFoundException`

  
  *   :py:class:`GlobalAccelerator.Client.exceptions.InternalServiceErrorException`

  
  *   :py:class:`GlobalAccelerator.Client.exceptions.LimitExceededException`

  