aws-cdk-lib.aws_medialive.CfnChannel.InputLocationProperty

interface InputLocationProperty

LanguageType name
.NETAmazon.CDK.AWS.MediaLive.CfnChannel.InputLocationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_InputLocationProperty
Javasoftware.amazon.awscdk.services.medialive.CfnChannel.InputLocationProperty
Pythonaws_cdk.aws_medialive.CfnChannel.InputLocationProperty
TypeScript aws-cdk-lib » aws_medialive » CfnChannel » InputLocationProperty

The input location.

The parent of this entity is InputLossBehavior.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from 'aws-cdk-lib';
const inputLocationProperty: medialive.CfnChannel.InputLocationProperty = {
  passwordParam: 'passwordParam',
  uri: 'uri',
  username: 'username',
};

Properties

NameTypeDescription
passwordParam?stringThe password parameter that holds the password for accessing the downstream system.
uri?stringThe URI should be a path to a file that is accessible to the Live system (for example, an http:// URI) depending on the output type.
username?stringThe user name to connect to the downstream system.

passwordParam?

Type: string (optional)

The password parameter that holds the password for accessing the downstream system.

This applies only if the downstream system requires credentials.


uri?

Type: string (optional)

The URI should be a path to a file that is accessible to the Live system (for example, an http:// URI) depending on the output type.

For example, an RTMP destination should have a URI similar to rtmp://fmsserver/live.


username?

Type: string (optional)

The user name to connect to the downstream system.

This applies only if the downstream system requires credentials.