MigrationHubOrchestrator / Client / get_workflow_step_group

get_workflow_step_group#

MigrationHubOrchestrator.Client.get_workflow_step_group(**kwargs)#

Get the step group of a migration workflow.

See also: AWS API Documentation

Request Syntax

response = client.get_workflow_step_group(
    id='string',
    workflowId='string'
)
Parameters:
  • id (string) –

    [REQUIRED]

    The ID of the step group.

  • workflowId (string) –

    [REQUIRED]

    The ID of the migration workflow.

Return type:

dict

Returns:

Response Syntax

{
    'id': 'string',
    'workflowId': 'string',
    'name': 'string',
    'description': 'string',
    'status': 'AWAITING_DEPENDENCIES'|'READY'|'IN_PROGRESS'|'COMPLETED'|'FAILED'|'PAUSED'|'PAUSING'|'USER_ATTENTION_REQUIRED',
    'owner': 'AWS_MANAGED'|'CUSTOM',
    'creationTime': datetime(2015, 1, 1),
    'lastModifiedTime': datetime(2015, 1, 1),
    'endTime': datetime(2015, 1, 1),
    'tools': [
        {
            'name': 'string',
            'url': 'string'
        },
    ],
    'previous': [
        'string',
    ],
    'next': [
        'string',
    ]
}

Response Structure

  • (dict) –

    • id (string) –

      The ID of the step group.

    • workflowId (string) –

      The ID of the migration workflow.

    • name (string) –

      The name of the step group.

    • description (string) –

      The description of the step group.

    • status (string) –

      The status of the step group.

    • owner (string) –

      The owner 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.

    • endTime (datetime) –

      The time at which the step group ended.

    • 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