interface MulticastInputProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.MulticastInputProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#MulticastInputProps |
Java | software.amazon.awscdk.services.medialive.alpha.MulticastInputProps |
Python | aws_cdk.aws_medialive_alpha.MulticastInputProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป MulticastInputProps |
Properties for a multicast input.
Requires anywhereSettings on the channel.
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';
declare const multicastProtocol: medialive_alpha.MulticastProtocol;
const multicastInputProps: medialive_alpha.MulticastInputProps = {
sources: [{
address: 'address',
port: 123,
// the properties below are optional
protocol: multicastProtocol,
sourceIp: 'sourceIp',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| sources | Multicast[] | The multicast sources. |
sources
Type:
Multicast[]
The multicast sources.
Provide two for a STANDARD (redundant-pipeline) channel.

.NET
Go
Java
Python
TypeScript (