interface InputSourceOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.InputSourceOptions |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#InputSourceOptions |
Java | software.amazon.awscdk.services.medialive.alpha.InputSourceOptions |
Python | aws_cdk.aws_medialive_alpha.InputSourceOptions |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป InputSourceOptions |
Options for a URL-based input source.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
import { aws_ssm as ssm } from 'aws-cdk-lib';
declare const stringParameter: ssm.StringParameter;
const inputSourceOptions: medialive_alpha.InputSourceOptions = {
password: stringParameter,
username: 'username',
};
Properties
| Name | Type | Description |
|---|---|---|
| password? | IString | The SSM parameter that holds the password for accessing the upstream system. |
| username? | string | The username for accessing the upstream system. |
password?
Type:
IString
(optional, default: no password)
The SSM parameter that holds the password for accessing the upstream system.
username?
Type:
string
(optional, default: no username)
The username for accessing the upstream system.

.NET
Go
Java
Python
TypeScript (