interface OutputDestinationSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnChannel.OutputDestinationSettingsProperty |
Java | software.amazon.awscdk.services.medialive.CfnChannel.OutputDestinationSettingsProperty |
Python | aws_cdk.aws_medialive.CfnChannel.OutputDestinationSettingsProperty |
TypeScript | @aws-cdk/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 * as medialive from '@aws-cdk/aws-medialive';
const outputDestinationSettingsProperty: medialive.CfnChannel.OutputDestinationSettingsProperty = {
passwordParam: 'passwordParam',
streamName: 'streamName',
url: 'url',
username: 'username',
};
Properties
| Name | Type | Description |
|---|---|---|
| password | string | The password parameter that holds the password for accessing the downstream system. |
| stream | string | The stream name for the content. |
| url? | string | The URL for the destination. |
| username? | string | The 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.

.NET
Java
Python
TypeScript