interface RistOutputConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.RistOutputConfig |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#RistOutputConfig |
Java | software.amazon.awscdk.services.mediaconnect.alpha.RistOutputConfig |
Python | aws_cdk.aws_mediaconnect_alpha.RistOutputConfig |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป RistOutputConfig |
Implements
Rtp
Configuration options for RIST outputs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediaconnect_alpha from '@aws-cdk/aws-mediaconnect-alpha';
import * as cdk from 'aws-cdk-lib';
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
import { aws_iam as iam } from 'aws-cdk-lib';
declare const networkInterface: mediaconnect_alpha.NetworkInterface;
declare const role: iam.Role;
declare const securityGroup: ec2.SecurityGroup;
declare const subnet: ec2.Subnet;
const ristOutputConfig: mediaconnect_alpha.RistOutputConfig = {
destination: 'destination',
port: 123,
// the properties below are optional
smoothingLatency: cdk.Duration.minutes(30),
vpcInterfaceAttachment: {
name: 'name',
role: role,
securityGroups: [securityGroup],
subnet: subnet,
// the properties below are optional
networkInterfaceIds: ['networkInterfaceIds'],
networkInterfaceType: networkInterface,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The IP address where you want to send the output. |
| port | number | The port to use when content is distributed to this output. |
| smoothing | Duration | The smoothing latency for RIST, RTP, and RTP-FEC streams. |
| vpc | Vpc | The name of the VPC interface attachment to use for this output. |
destination
Type:
string
The IP address where you want to send the output.
port
Type:
number
The port to use when content is distributed to this output.
smoothingLatency?
Type:
Duration
(optional, default: no smoothing latency)
The smoothing latency for RIST, RTP, and RTP-FEC streams.
vpcInterfaceAttachment?
Type:
Vpc
(optional, default: no VPC interface attachment)
The name of the VPC interface attachment to use for this output.

.NET
Go
Java
Python
TypeScript (