interface OutputDestinationSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.OutputDestinationSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_OutputDestinationSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.OutputDestinationSettingsProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.OutputDestinationSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » 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 { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const outputDestinationSettingsProperty: medialive_mixins.CfnChannelPropsMixin.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
Go
Java
Python
TypeScript