interface NdiDiscoveryServerConfigProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.MediaConnect.CfnFlow.NdiDiscoveryServerConfigProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnFlow_NdiDiscoveryServerConfigProperty | 
|  Java | software.amazon.awscdk.services.mediaconnect.CfnFlow.NdiDiscoveryServerConfigProperty | 
|  Python | aws_cdk.aws_mediaconnect.CfnFlow.NdiDiscoveryServerConfigProperty | 
|  TypeScript | aws-cdk-lib»aws_mediaconnect»CfnFlow»NdiDiscoveryServerConfigProperty | 
Specifies the configuration settings for individual NDI discovery servers.
A maximum of 3 servers is allowed.
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 ndiDiscoveryServerConfigProperty: mediaconnect.CfnFlow.NdiDiscoveryServerConfigProperty = {
  discoveryServerAddress: 'discoveryServerAddress',
  vpcInterfaceAdapter: 'vpcInterfaceAdapter',
  // the properties below are optional
  discoveryServerPort: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| discovery | string | The unique network address of the NDI discovery server. | 
| vpc | string | The identifier for the Virtual Private Cloud (VPC) network interface used by the flow. | 
| discovery | number | The port for the NDI discovery server. | 
discoveryServerAddress
Type:
string
The unique network address of the NDI discovery server.
vpcInterfaceAdapter
Type:
string
The identifier for the Virtual Private Cloud (VPC) network interface used by the flow.
discoveryServerPort?
Type:
number
(optional)
The port for the NDI discovery server.
Defaults to 5959 if a custom port isn't specified.
