interface MulticastInputSource
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.MulticastInputSource |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#MulticastInputSource |
Java | software.amazon.awscdk.services.medialive.alpha.MulticastInputSource |
Python | aws_cdk.aws_medialive_alpha.MulticastInputSource |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป MulticastInputSource |
A source for a multicast input.
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 multicastInputSource: medialive_alpha.MulticastInputSource = {
address: 'address',
port: 123,
// the properties below are optional
protocol: multicastProtocol,
sourceIp: 'sourceIp',
};
Properties
| Name | Type | Description |
|---|---|---|
| address | string | The multicast group address. |
| port | number | The multicast port. |
| protocol? | Multicast | The transport protocol. |
| source | string | Filter to a specific source IP (source-specific multicast). |
address
Type:
string
The multicast group address.
port
Type:
number
The multicast port.
protocol?
Type:
Multicast
(optional, default: MulticastProtocol.UDP)
The transport protocol.
sourceIp?
Type:
string
(optional, default: accept any source)
Filter to a specific source IP (source-specific multicast).

.NET
Go
Java
Python
TypeScript (