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

**************************
update_workflow_step_group
**************************



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

  

  Update the step group in a migration workflow.

  

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


  **Request Syntax**
  ::

    response = client.update_workflow_step_group(
        workflowId='string',
        id='string',
        name='string',
        description='string',
        next=[
            'string',
        ],
        previous=[
            'string',
        ]
    )
    
  :type workflowId: string
  :param workflowId: **[REQUIRED]** 

    The ID of the migration workflow.

    

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

    The ID of the step group.

    

  
  :type name: string
  :param name: 

    The name of the step group.

    

  
  :type description: string
  :param description: 

    The description of the step group.

    

  
  :type next: list
  :param next: 

    The next step group.

    

  
    - *(string) --* 

    

  :type previous: list
  :param previous: 

    The previous step group.

    

  
    - *(string) --* 

    

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

    
    ::

      {
          'workflowId': 'string',
          'name': 'string',
          'id': 'string',
          'description': 'string',
          'tools': [
              {
                  'name': 'string',
                  'url': 'string'
              },
          ],
          'next': [
              'string',
          ],
          'previous': [
              'string',
          ],
          'lastModifiedTime': datetime(2015, 1, 1)
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **workflowId** *(string) --* 

        The ID of the migration workflow.

        
      

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

        The name of the step group.

        
      

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

        The ID of the step group.

        
      

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

        The description of the step group.

        
      

      - **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.

            
      
    
      

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

        The next step group.

        
        

        - *(string) --* 
    
      

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

        The previous step group.

        
        

        - *(string) --* 
    
      

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

        The time at which the step group was last modified.

        
  
  **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`

  