interface NdiDiscoveryServerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnFlowPropsMixin.NdiDiscoveryServerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnFlowPropsMixin_NdiDiscoveryServerConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnFlowPropsMixin.NdiDiscoveryServerConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnFlowPropsMixin.NdiDiscoveryServerConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » CfnFlowPropsMixin » 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/cfn-property-mixins';
const ndiDiscoveryServerConfigProperty: mediaconnect.CfnFlowPropsMixin.NdiDiscoveryServerConfigProperty = {
discoveryServerAddress: 'discoveryServerAddress',
discoveryServerPort: 123,
vpcInterfaceAdapter: 'vpcInterfaceAdapter',
};
Properties
| Name | Type | Description |
|---|---|---|
| discovery | string | The unique network address of the NDI discovery server. |
| discovery | number | The port for the NDI discovery server. |
| vpc | string | The identifier for the Virtual Private Cloud (VPC) network interface used by the flow. |
discoveryServerAddress?
Type:
string
(optional)
The unique network address of the NDI discovery server.
discoveryServerPort?
Type:
number
(optional)
The port for the NDI discovery server.
Defaults to 5959 if a custom port isn't specified.
vpcInterfaceAdapter?
Type:
string
(optional)
The identifier for the Virtual Private Cloud (VPC) network interface used by the flow.

.NET
Go
Java
Python
TypeScript