MediaStreamSourceConfigurationJpegXs

class aws_cdk.aws_mediaconnect_alpha.MediaStreamSourceConfigurationJpegXs(*, encoding, input_interface, media_stream, port)

Bases: object

(experimental) Options for Media Stream Source Configuration.

Parameters:
  • encoding (Encoding) – (experimental) The format that was used to encode the data. For ancillary data streams, set the encoding name to smpte291. If the encoding name is smpte291, set the color space to one of the following: BT601, BT709, BT2020, or BT2100. For all other ancillary data streams, set the color space to SDR-NOCOLOR.

  • input_interface (Sequence[Union[VpcInterfaceConfig, Dict[str, Any]]]) – (experimental) The VPC interfaces where the media stream comes in from.

  • media_stream (MediaStream) – (experimental) The name of the media stream.

  • port (Union[int, float]) – (experimental) The port that the flow listens on for this incoming media stream.

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_mediaconnect_alpha as mediaconnect_alpha
from aws_cdk import aws_ec2 as ec2
from aws_cdk import aws_iam as iam

# encoding: mediaconnect_alpha.Encoding
# media_stream: mediaconnect_alpha.MediaStream
# network_interface: mediaconnect_alpha.NetworkInterface
# role: iam.Role
# security_group: ec2.SecurityGroup
# subnet: ec2.Subnet

media_stream_source_configuration_jpeg_xs = mediaconnect_alpha.MediaStreamSourceConfigurationJpegXs(
    encoding=encoding,
    input_interface=[mediaconnect_alpha.VpcInterfaceConfig(
        name="name",
        role=role,
        security_groups=[security_group],
        subnet=subnet,

        # the properties below are optional
        network_interface_ids=["networkInterfaceIds"],
        network_interface_type=network_interface
    )],
    media_stream=media_stream,
    port=123
)

Attributes

encoding

(experimental) The format that was used to encode the data.

For ancillary data streams, set the encoding name to smpte291. If the encoding name is smpte291, set the color space to one of the following: BT601, BT709, BT2020, or BT2100. For all other ancillary data streams, set the color space to SDR-NOCOLOR.

Stability:

experimental

input_interface

(experimental) The VPC interfaces where the media stream comes in from.

Stability:

experimental

media_stream

(experimental) The name of the media stream.

Stability:

experimental

port

(experimental) The port that the flow listens on for this incoming media stream.

Stability:

experimental