interface NdiDiscoveryServerConfig
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.NdiDiscoveryServerConfig |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#NdiDiscoveryServerConfig |
Java | software.amazon.awscdk.services.mediaconnect.alpha.NdiDiscoveryServerConfig |
Python | aws_cdk.aws_mediaconnect_alpha.NdiDiscoveryServerConfig |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป NdiDiscoveryServerConfig |
NDI Configuration.
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 { 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 ndiDiscoveryServerConfig: mediaconnect_alpha.NdiDiscoveryServerConfig = {
discoveryServerAddress: 'discoveryServerAddress',
vpcInterface: {
name: 'name',
role: role,
securityGroups: [securityGroup],
subnet: subnet,
// the properties below are optional
networkInterfaceIds: ['networkInterfaceIds'],
networkInterfaceType: networkInterface,
},
// the properties below are optional
discoveryServerPort: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| discovery | string | The unique network address of the NDI discovery server. |
| vpc | Vpc | The VPC interface that the NDI discovery server uses to reach the flow. |
| discovery | number | The port for the NDI discovery server. |
discoveryServerAddress
Type:
string
The unique network address of the NDI discovery server.
vpcInterface
Type:
Vpc
The VPC interface that the NDI discovery server uses to reach the flow.
discoveryServerPort?
Type:
number
(optional, default: undefined; when omitted, MediaConnect applies 5959 at deploy time)
The port for the NDI discovery server.
Defaults to 5959 if a custom port isn't specified.

.NET
Go
Java
Python
TypeScript (