ivsrealtime / Client / get_ingest_configuration

get_ingest_configuration#

ivsrealtime.Client.get_ingest_configuration(**kwargs)#

Gets information about the specified IngestConfiguration.

See also: AWS API Documentation

Request Syntax

response = client.get_ingest_configuration(
    arn='string'
)
Parameters:

arn (string) –

[REQUIRED]

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

Return type:

dict

Returns:

Response Syntax

{
    'ingestConfiguration': {
        'name': 'string',
        'arn': 'string',
        'ingestProtocol': 'RTMP'|'RTMPS',
        'streamKey': 'string',
        'stageArn': 'string',
        'participantId': 'string',
        'state': 'ACTIVE'|'INACTIVE',
        'userId': 'string',
        'attributes': {
            'string': 'string'
        },
        'tags': {
            'string': 'string'
        }
    }
}

Response Structure

  • (dict) –

    • ingestConfiguration (dict) –

      The IngestConfiguration that was returned.

      • name (string) –

        Ingest name

      • arn (string) –

        Ingest configuration ARN.

      • ingestProtocol (string) –

        Type of ingest protocol that the user employs for broadcasting.

      • streamKey (string) –

        Ingest-key value for the RTMP(S) protocol.

      • stageArn (string) –

        ARN of the stage with which the IngestConfiguration is associated.

      • participantId (string) –

        ID of the participant within the stage.

      • state (string) –

        State of the ingest configuration. It is ACTIVE if a publisher currently is publishing to the stage associated with the ingest configuration.

      • userId (string) –

        Customer-assigned name to help identify the participant using the IngestConfiguration; this can be used to link a participant to a user in the customer’s own systems. This can be any UTF-8 encoded text. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.

      • attributes (dict) –

        Application-provided attributes to to store in the IngestConfiguration and attach to a stage. Map keys and values can contain UTF-8 encoded text. The maximum length of this field is 1 KB total. This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.

        • (string) –

          • (string) –

      • tags (dict) –

        Tags attached to the resource. Array of maps, each of the form string:string (key:value). See Best practices and strategies in Tagging AWS Resources and Tag Editor for details, including restrictions that apply to tags and “Tag naming limits and requirements”; Amazon IVS has no constraints on tags beyond what is documented there.

        • (string) –

          • (string) –

Exceptions

  • ivsrealtime.Client.exceptions.ResourceNotFoundException

  • ivsrealtime.Client.exceptions.ValidationException

  • ivsrealtime.Client.exceptions.AccessDeniedException