update_workflow_step_group

MigrationHubOrchestrator.Client.update_workflow_step_group(**kwargs)

Update the step group in a migration workflow.

See also: AWS API Documentation

Request Syntax

response = client.update_workflow_step_group(
    workflowId='string',
    id='string',
    name='string',
    description='string',
    next=[
        'string',
    ],
    previous=[
        'string',
    ]
)
Parameters
  • workflowId (string) --

    [REQUIRED]

    The ID of the migration workflow.

  • id (string) --

    [REQUIRED]

    The ID of the step group.

  • name (string) -- The name of the step group.
  • description (string) -- The description of the step group.
  • next (list) --

    The next step group.

    • (string) --
  • previous (list) --

    The previous step group.

    • (string) --
Return type

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

  • MigrationHubOrchestrator.Client.exceptions.ThrottlingException
  • MigrationHubOrchestrator.Client.exceptions.AccessDeniedException
  • MigrationHubOrchestrator.Client.exceptions.InternalServerException
  • MigrationHubOrchestrator.Client.exceptions.ValidationException
  • MigrationHubOrchestrator.Client.exceptions.ResourceNotFoundException