aws-cdk-lib.aws_mediaconnect.CfnFlowOutputProps

interface CfnFlowOutputProps

LanguageType name
.NETAmazon.CDK.AWS.MediaConnect.CfnFlowOutputProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnFlowOutputProps
Javasoftware.amazon.awscdk.services.mediaconnect.CfnFlowOutputProps
Pythonaws_cdk.aws_mediaconnect.CfnFlowOutputProps
TypeScript aws-cdk-lib » aws_mediaconnect » CfnFlowOutputProps

Properties for defining a CfnFlowOutput.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediaconnect as mediaconnect } from 'aws-cdk-lib';
const cfnFlowOutputProps: mediaconnect.CfnFlowOutputProps = {
  flowArn: 'flowArn',
  protocol: 'protocol',

  // the properties below are optional
  cidrAllowList: ['cidrAllowList'],
  description: 'description',
  destination: 'destination',
  encryption: {
    roleArn: 'roleArn',
    secretArn: 'secretArn',

    // the properties below are optional
    algorithm: 'algorithm',
    keyType: 'keyType',
  },
  maxLatency: 123,
  minLatency: 123,
  name: 'name',
  port: 123,
  remoteId: 'remoteId',
  smoothingLatency: 123,
  streamId: 'streamId',
  vpcInterfaceAttachment: {
    vpcInterfaceName: 'vpcInterfaceName',
  },
};

Properties

NameTypeDescription
flowArnstringThe Amazon Resource Name (ARN) of the flow this output is attached to.
protocolstringThe protocol to use for the output.
cidrAllowList?string[]The range of IP addresses that are allowed to initiate output requests to this flow.
description?stringA description of the output.
destination?stringThe IP address where you want to send the output.
encryption?IResolvable | EncryptionPropertyThe encryption credentials that you want to use for the output.
maxLatency?numberThe maximum latency in milliseconds.
minLatency?numberThe minimum latency in milliseconds for SRT-based streams.
name?stringThe name of the VPC interface.
port?numberThe port to use when MediaConnect distributes content to the output.
remoteId?stringThe identifier that is assigned to the Zixi receiver.
smoothingLatency?numberThe smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
streamId?stringThe stream ID that you want to use for this transport.
vpcInterfaceAttachment?IResolvable | VpcInterfaceAttachmentPropertyThe VPC interface that you want to send your output to.

flowArn

Type: string

The Amazon Resource Name (ARN) of the flow this output is attached to.


protocol

Type: string

The protocol to use for the output.


cidrAllowList?

Type: string[] (optional)

The range of IP addresses that are allowed to initiate output requests to this flow.

Format the IP addresses as a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.


description?

Type: string (optional)

A description of the output.

This description is not visible outside of the current AWS account even if the account grants entitlements to other accounts.


destination?

Type: string (optional)

The IP address where you want to send the output.


encryption?

Type: IResolvable | EncryptionProperty (optional)

The encryption credentials that you want to use for the output.


maxLatency?

Type: number (optional)

The maximum latency in milliseconds.

This parameter applies only to RIST-based, Zixi-based, and Fujitsu-based streams.


minLatency?

Type: number (optional)

The minimum latency in milliseconds for SRT-based streams.

In streams that use the SRT protocol, this value that you set on your MediaConnect source or output represents the minimal potential latency of that connection. The latency of the stream is set to the highest number between the sender’s minimum latency and the receiver’s minimum latency.


name?

Type: string (optional)

The name of the VPC interface.


port?

Type: number (optional)

The port to use when MediaConnect distributes content to the output.


remoteId?

Type: string (optional)

The identifier that is assigned to the Zixi receiver.

This parameter applies only to outputs that use Zixi pull.


smoothingLatency?

Type: number (optional)

The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.


streamId?

Type: string (optional)

The stream ID that you want to use for this transport.

This parameter applies only to Zixi and SRT caller-based streams.


vpcInterfaceAttachment?

Type: IResolvable | VpcInterfaceAttachmentProperty (optional)

The VPC interface that you want to send your output to.