aws-cdk-lib.aws_medialive.CfnChannel.OutputDestinationSettingsProperty

interface OutputDestinationSettingsProperty

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

The configuration information for this output.

The parent of this entity is OutputDestination.

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 outputDestinationSettingsProperty: medialive.CfnChannel.OutputDestinationSettingsProperty = {
  passwordParam: 'passwordParam',
  streamName: 'streamName',
  url: 'url',
  username: 'username',
};

Properties

NameTypeDescription
passwordParam?stringThe password parameter that holds the password for accessing the downstream system.
streamName?stringThe stream name for the content.
url?stringThe URL for the destination.
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 password parameter applies only if the downstream system requires credentials.


streamName?

Type: string (optional)

The stream name for the content.

This applies only to RTMP outputs.


url?

Type: string (optional)

The URL for the destination.


username?

Type: string (optional)

The user name to connect to the downstream system.

This applies only if the downstream system requires credentials.