:doc:`MigrationHubOrchestrator <../../migrationhuborchestrator>` / Client / get_template_step_group

***********************
get_template_step_group
***********************



.. py:method:: MigrationHubOrchestrator.Client.get_template_step_group(**kwargs)

  

  Get a step group in a template.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/migrationhuborchestrator-2021-08-28/GetTemplateStepGroup>`_  


  **Request Syntax**
  ::

    response = client.get_template_step_group(
        templateId='string',
        id='string'
    )
    
  :type templateId: string
  :param templateId: **[REQUIRED]** 

    The ID of the template.

    

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

    The ID of the step group.

    

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

    
    ::

      {
          'templateId': 'string',
          'id': 'string',
          'name': 'string',
          'description': 'string',
          'status': 'AWAITING_DEPENDENCIES'|'READY'|'IN_PROGRESS'|'COMPLETED'|'FAILED'|'PAUSED'|'PAUSING'|'USER_ATTENTION_REQUIRED',
          'creationTime': datetime(2015, 1, 1),
          'lastModifiedTime': datetime(2015, 1, 1),
          'tools': [
              {
                  'name': 'string',
                  'url': 'string'
              },
          ],
          'previous': [
              'string',
          ],
          'next': [
              'string',
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **templateId** *(string) --* 

        The ID of the template.

        
      

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

        The ID of the step group.

        
      

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

        The name of the step group.

        
      

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

        The description of the step group.

        
      

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

        The status of the step group.

        
      

      - **creationTime** *(datetime) --* 

        The time at which the step group was created.

        
      

      - **lastModifiedTime** *(datetime) --* 

        The time at which the step group was last modified.

        
      

      - **tools** *(list) --* 

        List of AWS services utilized in a migration workflow.

        
        

        - *(dict) --* 

          List of AWS services utilized in a migration workflow.

          
          

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

            The name of an AWS service.

            
          

          - **url** *(string) --* 

            The URL of an AWS service.

            
      
    
      

      - **previous** *(list) --* 

        The previous step group.

        
        

        - *(string) --* 
    
      

      - **next** *(list) --* 

        The next step group.

        
        

        - *(string) --* 
    
  
  **Exceptions**
  
  *   :py:class:`MigrationHubOrchestrator.Client.exceptions.ThrottlingException`

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

  
  *   :py:class:`MigrationHubOrchestrator.Client.exceptions.InternalServerException`

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

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

  