:doc:`Route53GlobalResolver <../../route53globalresolver>` / Client / update_global_resolver

**********************
update_global_resolver
**********************



.. py:method:: Route53GlobalResolver.Client.update_global_resolver(**kwargs)

  

  Updates the configuration of a Route 53 Global Resolver instance. You can modify the name, description, and observability region.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/route53globalresolver-2022-09-27/UpdateGlobalResolver>`_  


  **Request Syntax**
  ::

    response = client.update_global_resolver(
        globalResolverId='string',
        name='string',
        observabilityRegion='string',
        description='string'
    )
    
  :type globalResolverId: string
  :param globalResolverId: **[REQUIRED]** 

    The ID of the Global Resolver.

    

  
  :type name: string
  :param name: 

    The name of the Global Resolver.

    

  
  :type observabilityRegion: string
  :param observabilityRegion: 

    The AWS Regions in which the users' Global Resolver query resolution logs will be propagated.

    

  
  :type description: string
  :param description: 

    The description of the Global Resolver.

    

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

    
    ::

      {
          'id': 'string',
          'arn': 'string',
          'clientToken': 'string',
          'dnsName': 'string',
          'observabilityRegion': 'string',
          'name': 'string',
          'description': 'string',
          'regions': [
              'string',
          ],
          'createdAt': datetime(2015, 1, 1),
          'updatedAt': datetime(2015, 1, 1),
          'status': 'CREATING'|'OPERATIONAL'|'UPDATING'|'DELETING',
          'ipv4Addresses': [
              'string',
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **id** *(string) --* 

        The ID of the Global Resolver.

        
      

      - **arn** *(string) --* 

        The Amazon Resource Name (ARN) of the Global Resolver.

        
      

      - **clientToken** *(string) --* 

        A unique, case-sensitive identifier to ensure idempotency. This means that making the same request multiple times with the same ``clientToken`` has the same result every time.

        
      

      - **dnsName** *(string) --* 

        The hostname to be used by the customers' DNS clients for certification validation.

        
      

      - **observabilityRegion** *(string) --* 

        The AWS Regions in which the users' Global Resolver query resolution logs will be propagated.

        
      

      - **name** *(string) --* 

        Name of the Global Resolver.

        
      

      - **description** *(string) --* 

        Description of the Global Resolver.

        
      

      - **regions** *(list) --* 

        The AWS Regions in which the Global Resolver will operate.

        
        

        - *(string) --* 
    
      

      - **createdAt** *(datetime) --* 

        The time and date the Global Resolverwas created.

        
      

      - **updatedAt** *(datetime) --* 

        The time and date the Global Resolver was updated.

        
      

      - **status** *(string) --* 

        The operational status of the Global Resolver.

        
      

      - **ipv4Addresses** *(list) --* 

        List of anycast IPv4 addresses associated with the Global Resolver instance.

        
        

        - *(string) --* 
    
  
  **Exceptions**
  
  *   :py:class:`Route53GlobalResolver.Client.exceptions.InternalServerException`

  
  *   :py:class:`Route53GlobalResolver.Client.exceptions.ValidationException`

  
  *   :py:class:`Route53GlobalResolver.Client.exceptions.ConflictException`

  
  *   :py:class:`Route53GlobalResolver.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`Route53GlobalResolver.Client.exceptions.ThrottlingException`

  
  *   :py:class:`Route53GlobalResolver.Client.exceptions.ResourceNotFoundException`

  