MigrationHubOrchestrator / Client / create_workflow_step_group

create_workflow_step_group#

MigrationHubOrchestrator.Client.create_workflow_step_group(**kwargs)#

Create a step group in a migration workflow.

See also: AWS API Documentation

Request Syntax

response = client.create_workflow_step_group(
    workflowId='string',
    name='string',
    description='string',
    next=[
        'string',
    ],
    previous=[
        'string',
    ]
)
Parameters:
  • workflowId (string) –

    [REQUIRED]

    The ID of the migration workflow that will contain the step group.

  • name (string) –

    [REQUIRED]

    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',
    ],
    'creationTime': datetime(2015, 1, 1)
}

Response Structure

  • (dict) –

    • workflowId (string) –

      The ID of the migration workflow that contains the step group.

    • 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) –

    • creationTime (datetime) –

      The time at which the step group is created.

Exceptions