MediaConnect / Client / start_router_output

start_router_output

MediaConnect.Client.start_router_output(**kwargs)

Starts a router output in AWS Elemental MediaConnect.

See also: AWS API Documentation

Request Syntax

response = client.start_router_output(
    Arn='string'
)
Parameters:

Arn (string) –

[REQUIRED]

The Amazon Resource Name (ARN) of the router output that you want to start.

Return type:

dict

Returns:

Response Syntax

{
    'Arn': 'string',
    'Name': 'string',
    'State': 'CREATING'|'STANDBY'|'STARTING'|'ACTIVE'|'STOPPING'|'DELETING'|'UPDATING'|'ERROR'|'RECOVERING'|'MIGRATING',
    'MaintenanceScheduleType': 'WINDOW',
    'MaintenanceSchedule': {
        'Window': {
            'Start': datetime(2015, 1, 1),
            'End': datetime(2015, 1, 1),
            'ScheduledTime': datetime(2015, 1, 1)
        }
    }
}

Response Structure

  • (dict) –

    • Arn (string) –

      The Amazon Resource Name (ARN) of the router output that was started.

    • Name (string) –

      The name of the router output that was started.

    • State (string) –

      The current state of the router output after being started.

    • MaintenanceScheduleType (string) –

      The type of maintenance schedule associated with the router output.

    • MaintenanceSchedule (dict) –

      The details of the maintenance schedule for the router output.

      Note

      This is a Tagged Union structure. Only one of the following top level keys will be set: Window. 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'}
      
      • Window (dict) –

        Defines a specific time window for maintenance operations.

        • Start (datetime) –

          The start time of the maintenance window.

        • End (datetime) –

          The end time of the maintenance window.

        • ScheduledTime (datetime) –

          The date and time when the maintenance window is scheduled to occur.

Exceptions