interface BridgeNetworkOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnBridgeOutputPropsMixin.BridgeNetworkOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnBridgeOutputPropsMixin_BridgeNetworkOutputProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnBridgeOutputPropsMixin.BridgeNetworkOutputProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnBridgeOutputPropsMixin.BridgeNetworkOutputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnBridgeOutputPropsMixin » BridgeNetworkOutputProperty |
The output of the bridge.
A network output is delivered to your premises.
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 bridgeNetworkOutputProperty: mediaconnect_mixins.CfnBridgeOutputPropsMixin.BridgeNetworkOutputProperty = {
ipAddress: 'ipAddress',
networkName: 'networkName',
port: 123,
protocol: 'protocol',
ttl: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| ip | string | The network output IP address. |
| network | string | The network output's gateway network name. |
| port? | number | The network output's port. |
| protocol? | string | The network output protocol. |
| ttl? | number | The network output TTL. |
ipAddress?
Type:
string
(optional)
The network output IP address.
networkName?
Type:
string
(optional)
The network output's gateway network name.
port?
Type:
number
(optional)
The network output's port.
protocol?
Type:
string
(optional)
The network output protocol.
AWS Elemental MediaConnect no longer supports the Fujitsu QoS protocol. This reference is maintained for legacy purposes only.
ttl?
Type:
number
(optional)
The network output TTL.

.NET
Go
Java
Python
TypeScript