SrtCallerUrlOptions

class aws_cdk.aws_medialive_alpha.SrtCallerUrlOptions(*, encryption_passphrase_secret, stream_id=None)

Bases: object

(experimental) Options for a URL-based SRT caller destination (SrtDestination.callerUrl).

Parameters:
  • encryption_passphrase_secret (ISecret) – (experimental) The Secrets Manager secret containing the encryption passphrase. [disable-awslint:prefer-ref-interface]

  • 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
from aws_cdk import aws_secretsmanager as secretsmanager

# secret: secretsmanager.Secret

srt_caller_url_options = medialive_alpha.SrtCallerUrlOptions(
    encryption_passphrase_secret=secret,

    # the properties below are optional
    stream_id="streamId"
)

Attributes

encryption_passphrase_secret

(experimental) The Secrets Manager secret containing the encryption passphrase.

[disable-awslint:prefer-ref-interface]

Stability:

experimental

stream_id

(experimental) The stream ID for the SRT connection.

Default:
  • no stream ID

Stability:

experimental