:doc:`CodeCatalyst <../../codecatalyst>` / Client / start_dev_environment

*********************
start_dev_environment
*********************



.. py:method:: CodeCatalyst.Client.start_dev_environment(**kwargs)

  

  Starts a specified Dev Environment and puts it into an active state.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/codecatalyst-2022-09-28/StartDevEnvironment>`_  


  **Request Syntax**
  ::

    response = client.start_dev_environment(
        spaceName='string',
        projectName='string',
        id='string',
        ides=[
            {
                'runtime': 'string',
                'name': 'string'
            },
        ],
        instanceType='dev.standard1.small'|'dev.standard1.medium'|'dev.standard1.large'|'dev.standard1.xlarge',
        inactivityTimeoutMinutes=123
    )
    
  :type spaceName: string
  :param spaceName: **[REQUIRED]** 

    The name of the space.

    

  
  :type projectName: string
  :param projectName: **[REQUIRED]** 

    The name of the project in the space.

    

  
  :type id: string
  :param id: **[REQUIRED]** 

    The system-generated unique ID of the Dev Environment.

    

  
  :type ides: list
  :param ides: 

    Information about the integrated development environment (IDE) configured for a Dev Environment.

    

  
    - *(dict) --* 

      Information about the configuration of an integrated development environment (IDE) for a Dev Environment.

      

    
      - **runtime** *(string) --* 

        A link to the IDE runtime image.

         

        .. note::

          

          This parameter is not required for ``VSCode``.

          

        

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

        The name of the IDE. Valid values include ``Cloud9``, ``IntelliJ``, ``PyCharm``, ``GoLand``, and ``VSCode``.

        

      
    

  :type instanceType: string
  :param instanceType: 

    The Amazon EC2 instace type to use for the Dev Environment.

    

  
  :type inactivityTimeoutMinutes: integer
  :param inactivityTimeoutMinutes: 

    The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.

    

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

    
    ::

      {
          'spaceName': 'string',
          'projectName': 'string',
          'id': 'string',
          'status': 'PENDING'|'RUNNING'|'STARTING'|'STOPPING'|'STOPPED'|'FAILED'|'DELETING'|'DELETED'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **spaceName** *(string) --* 

        The name of the space.

        
      

      - **projectName** *(string) --* 

        The name of the project in the space.

        
      

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

        The system-generated unique ID of the Dev Environment.

        
      

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

        The status of the Dev Environment.

        
  
  **Exceptions**
  
  *   :py:class:`CodeCatalyst.Client.exceptions.ThrottlingException`

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

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

  
  *   :py:class:`CodeCatalyst.Client.exceptions.ServiceQuotaExceededException`

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

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

  