interface NdiDiscoveryServerConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnFlowPropsMixin.NdiDiscoveryServerConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnFlowPropsMixin_NdiDiscoveryServerConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnFlowPropsMixin.NdiDiscoveryServerConfigProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnFlowPropsMixin.NdiDiscoveryServerConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » 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 { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const ndiDiscoveryServerConfigProperty: mediaconnect_mixins.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