OutputDestinationOptions

class aws_cdk.aws_medialive_alpha.OutputDestinationOptions(*, password=None, username=None)

Bases: object

(experimental) Options for a URL-based output destination.

Parameters:
  • password (Optional[IStringParameter]) – (experimental) An SSM String Parameter holding the password for accessing the downstream system. MediaLive reads it from Parameter Store at channel runtime, so the channel role is granted read access. Default: - no credentials

  • username (Optional[str]) – (experimental) The username for accessing the downstream system. Default: - no credentials

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_ssm as ssm

# string_parameter: ssm.StringParameter

output_destination_options = medialive_alpha.OutputDestinationOptions(
    password=string_parameter,
    username="username"
)

Attributes

password

(experimental) An SSM String Parameter holding the password for accessing the downstream system.

MediaLive reads it from Parameter Store at channel runtime, so the channel role is granted read access.

Default:
  • no credentials

Stability:

experimental

username

(experimental) The username for accessing the downstream system.

Default:
  • no credentials

Stability:

experimental