MulticastInputProps
- class aws_cdk.aws_medialive_alpha.MulticastInputProps(*, sources)
Bases:
object(experimental) Properties for a multicast input.
Requires
anywhereSettingson the channel.- Parameters:
sources (
Sequence[Union[MulticastInputSource,Dict[str,Any]]]) – (experimental) The multicast sources. Provide two for a STANDARD (redundant-pipeline) channel.- Stability:
experimental
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_medialive_alpha as medialive_alpha # multicast_protocol: medialive_alpha.MulticastProtocol multicast_input_props = medialive_alpha.MulticastInputProps( sources=[medialive_alpha.MulticastInputSource( address="address", port=123, # the properties below are optional protocol=multicast_protocol, source_ip="sourceIp" )] )
Attributes
- sources
(experimental) The multicast sources.
Provide two for a STANDARD (redundant-pipeline) channel.
- Stability:
experimental