InputSourceOptions

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

Bases: object

(experimental) Options for a URL-based input source.

Parameters:
  • password (Optional[IStringParameter]) – (experimental) The SSM parameter that holds the password for accessing the upstream system. Default: - no password

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

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

input_source_options = medialive_alpha.InputSourceOptions(
    password=string_parameter,
    username="username"
)

Attributes

password

(experimental) The SSM parameter that holds the password for accessing the upstream system.

Default:
  • no password

Stability:

experimental

username

(experimental) The username for accessing the upstream system.

Default:
  • no username

Stability:

experimental