ivsrealtime / Client / get_stage_session

get_stage_session#

ivsrealtime.Client.get_stage_session(**kwargs)#

Gets information for the specified stage session.

See also: AWS API Documentation

Request Syntax

response = client.get_stage_session(
    sessionId='string',
    stageArn='string'
)
Parameters:
  • sessionId (string) –

    [REQUIRED]

    ID of a session within the stage.

  • stageArn (string) –

    [REQUIRED]

    ARN of the stage for which the information is to be retrieved.

Return type:

dict

Returns:

Response Syntax

{
    'stageSession': {
        'endTime': datetime(2015, 1, 1),
        'sessionId': 'string',
        'startTime': datetime(2015, 1, 1)
    }
}

Response Structure

  • (dict) –

    • stageSession (dict) –

      The stage session that is returned.

      • endTime (datetime) –

        ISO 8601 timestamp (returned as a string) when the stage session ended. This is null if the stage is active.

      • sessionId (string) –

        ID of the session within the stage.

      • startTime (datetime) –

        ISO 8601 timestamp (returned as a string) when this stage session began.

Exceptions