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

***************
update_workflow
***************



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

  

  Update a migration workflow.

  

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


  **Request Syntax**
  ::

    response = client.update_workflow(
        id='string',
        name='string',
        description='string',
        inputParameters={
            'string': {
                'integerValue': 123,
                'stringValue': 'string',
                'listOfStringsValue': [
                    'string',
                ],
                'mapOfStringValue': {
                    'string': 'string'
                }
            }
        },
        stepTargets=[
            'string',
        ]
    )
    
  :type id: string
  :param id: **[REQUIRED]** 

    The ID of the migration workflow.

    

  
  :type name: string
  :param name: 

    The name of the migration workflow.

    

  
  :type description: string
  :param description: 

    The description of the migration workflow.

    

  
  :type inputParameters: dict
  :param inputParameters: 

    The input parameters required to update a migration workflow.

    

  
    - *(string) --* 

    
      - *(dict) --* 

        A map of key value pairs that is generated when you create a migration workflow. The key value pairs will differ based on your selection of the template.

        .. note::    This is a Tagged Union structure. Only one of the     following top level keys can be set: ``integerValue``, ``stringValue``, ``listOfStringsValue``, ``mapOfStringValue``. 

      
        - **integerValue** *(integer) --* 

          The value of the integer.

          

        
        - **stringValue** *(string) --* 

          String value.

          

        
        - **listOfStringsValue** *(list) --* 

          List of string values.

          

        
          - *(string) --* 

          
      
        - **mapOfStringValue** *(dict) --* 

          Map of string values.

          

        
          - *(string) --* 

          
            - *(string) --* 

            
      
    
      


  :type stepTargets: list
  :param stepTargets: 

    The servers on which a step will be run.

    

  
    - *(string) --* 

    

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

    
    ::

      {
          'id': 'string',
          'arn': 'string',
          'name': 'string',
          'description': 'string',
          'templateId': 'string',
          'adsApplicationConfigurationId': 'string',
          'workflowInputs': {
              'string': {
                  'integerValue': 123,
                  'stringValue': 'string',
                  'listOfStringsValue': [
                      'string',
                  ],
                  'mapOfStringValue': {
                      'string': 'string'
                  }
              }
          },
          'stepTargets': [
              'string',
          ],
          'status': 'CREATING'|'NOT_STARTED'|'CREATION_FAILED'|'STARTING'|'IN_PROGRESS'|'WORKFLOW_FAILED'|'PAUSED'|'PAUSING'|'PAUSING_FAILED'|'USER_ATTENTION_REQUIRED'|'DELETING'|'DELETION_FAILED'|'DELETED'|'COMPLETED',
          'creationTime': datetime(2015, 1, 1),
          'lastModifiedTime': datetime(2015, 1, 1),
          'tags': {
              'string': 'string'
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        The ID of the migration workflow.

        
      

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

        The Amazon Resource Name (ARN) of the migration workflow.

        
      

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

        The name of the migration workflow.

        
      

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

        The description of the migration workflow.

        
      

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

        The ID of the template.

        
      

      - **adsApplicationConfigurationId** *(string) --* 

        The ID of the application configured in Application Discovery Service.

        
      

      - **workflowInputs** *(dict) --* 

        The inputs required to update a migration workflow.

        
        

        - *(string) --* 
          

          - *(dict) --* 

            A map of key value pairs that is generated when you create a migration workflow. The key value pairs will differ based on your selection of the template.

            .. note::    This is a Tagged Union structure. Only one of the     following top level keys will be set: ``integerValue``, ``stringValue``, ``listOfStringsValue``, ``mapOfStringValue``.     If a client receives an unknown member it will     set ``SDK_UNKNOWN_MEMBER`` as the top level key,     which maps to the name or tag of the unknown     member. The structure of ``SDK_UNKNOWN_MEMBER`` is     as follows::

                        'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}


          
            

            - **integerValue** *(integer) --* 

              The value of the integer.

              
            

            - **stringValue** *(string) --* 

              String value.

              
            

            - **listOfStringsValue** *(list) --* 

              List of string values.

              
              

              - *(string) --* 
          
            

            - **mapOfStringValue** *(dict) --* 

              Map of string values.

              
              

              - *(string) --* 
                

                - *(string) --* 
          
        
        
    
  
      

      - **stepTargets** *(list) --* 

        The servers on which a step will be run.

        
        

        - *(string) --* 
    
      

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

        The status of the migration workflow.

        
      

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

        The time at which the migration workflow was created.

        
      

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

        The time at which the migration workflow was last modified.

        
      

      - **tags** *(dict) --* 

        The tags added to the migration workflow.

        
        

        - *(string) --* 
          

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

  