SrtCallerSourceProps

class aws_cdk.aws_medialive_alpha.SrtCallerSourceProps(*, srt_listener_address, srt_listener_port, decryption=None, minimum_latency=None, stream_id=None)

Bases: object

(experimental) Properties for an SRT caller input.

Parameters:
  • srt_listener_address (str) – (experimental) The address of the SRT listener to connect to.

  • srt_listener_port (Union[int, float]) – (experimental) The port of the SRT listener.

  • decryption (Union[SrtDecryptionProps, Dict[str, Any], None]) – (experimental) Decryption settings for the SRT connection. Default: - no decryption

  • minimum_latency (Optional[Duration]) – (experimental) The minimum latency. Default: - service default

  • stream_id (Optional[str]) – (experimental) The stream ID for the SRT connection. Default: - no stream ID

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_medialive_alpha as medialive_alpha
import aws_cdk as cdk
from aws_cdk import aws_secretsmanager as secretsmanager

# secret: secretsmanager.Secret
# srt_decryption_algorithm: medialive_alpha.SrtDecryptionAlgorithm

srt_caller_source_props = medialive_alpha.SrtCallerSourceProps(
    srt_listener_address="srtListenerAddress",
    srt_listener_port=123,

    # the properties below are optional
    decryption=medialive_alpha.SrtDecryptionProps(
        algorithm=srt_decryption_algorithm,
        passphrase_secret=secret
    ),
    minimum_latency=cdk.Duration.minutes(30),
    stream_id="streamId"
)

Attributes

decryption

(experimental) Decryption settings for the SRT connection.

Default:
  • no decryption

Stability:

experimental

minimum_latency

(experimental) The minimum latency.

Default:
  • service default

Stability:

experimental

srt_listener_address

(experimental) The address of the SRT listener to connect to.

Stability:

experimental

srt_listener_port

(experimental) The port of the SRT listener.

Stability:

experimental

stream_id

(experimental) The stream ID for the SRT connection.

Default:
  • no stream ID

Stability:

experimental