:doc:`DeviceFarm <../../devicefarm>` / Client / update_test_grid_project

************************
update_test_grid_project
************************



.. py:method:: DeviceFarm.Client.update_test_grid_project(**kwargs)

  

  Change details of a project.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/devicefarm-2015-06-23/UpdateTestGridProject>`_  


  **Request Syntax**
  ::

    response = client.update_test_grid_project(
        projectArn='string',
        name='string',
        description='string',
        vpcConfig={
            'securityGroupIds': [
                'string',
            ],
            'subnetIds': [
                'string',
            ],
            'vpcId': 'string'
        }
    )
    
  :type projectArn: string
  :param projectArn: **[REQUIRED]** 

    ARN of the project to update.

    

  
  :type name: string
  :param name: 

    Human-readable name for the project.

    

  
  :type description: string
  :param description: 

    Human-readable description for the project.

    

  
  :type vpcConfig: dict
  :param vpcConfig: 

    The VPC security groups and subnets that are attached to a project.

    

  
    - **securityGroupIds** *(list) --* **[REQUIRED]** 

      A list of VPC security group IDs in your Amazon VPC.

      

    
      - *(string) --* 

      
  
    - **subnetIds** *(list) --* **[REQUIRED]** 

      A list of VPC subnet IDs in your Amazon VPC.

      

    
      - *(string) --* 

      
  
    - **vpcId** *(string) --* **[REQUIRED]** 

      The ID of the Amazon VPC.

      

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

    
    ::

      {
          'testGridProject': {
              'arn': 'string',
              'name': 'string',
              'description': 'string',
              'vpcConfig': {
                  'securityGroupIds': [
                      'string',
                  ],
                  'subnetIds': [
                      'string',
                  ],
                  'vpcId': 'string'
              },
              'created': datetime(2015, 1, 1)
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **testGridProject** *(dict) --* 

        The project, including updated information.

        
        

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

          The ARN for the project.

          
        

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

          A human-readable name for the project.

          
        

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

          A human-readable description for the project.

          
        

        - **vpcConfig** *(dict) --* 

          The VPC security groups and subnets that are attached to a project.

          
          

          - **securityGroupIds** *(list) --* 

            A list of VPC security group IDs in your Amazon VPC.

            
            

            - *(string) --* 
        
          

          - **subnetIds** *(list) --* 

            A list of VPC subnet IDs in your Amazon VPC.

            
            

            - *(string) --* 
        
          

          - **vpcId** *(string) --* 

            The ID of the Amazon VPC.

            
      
        

        - **created** *(datetime) --* 

          When the project was created.

          
    
  
  **Exceptions**
  
  *   :py:class:`DeviceFarm.Client.exceptions.NotFoundException`

  
  *   :py:class:`DeviceFarm.Client.exceptions.ArgumentException`

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

  
  *   :py:class:`DeviceFarm.Client.exceptions.InternalServiceException`

  