interface IngressGatewayBridgeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnBridgePropsMixin.IngressGatewayBridgeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnBridgePropsMixin_IngressGatewayBridgeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnBridgePropsMixin.IngressGatewayBridgeProperty |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnBridgePropsMixin.IngressGatewayBridgeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » CfnBridgePropsMixin » IngressGatewayBridgeProperty |
Create a bridge with the ingress bridge type.
An ingress bridge is a ground-to-cloud bridge. The content originates at your premises and is delivered to the cloud.
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 ingressGatewayBridgeProperty: mediaconnect.CfnBridgePropsMixin.IngressGatewayBridgeProperty = {
maxBitrate: 123,
maxOutputs: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | The maximum expected bitrate (in bps) of the ingress bridge. |
| max | number | The maximum number of outputs on the ingress bridge. |
maxBitrate?
Type:
number
(optional)
The maximum expected bitrate (in bps) of the ingress bridge.
maxOutputs?
Type:
number
(optional)
The maximum number of outputs on the ingress bridge.

.NET
Go
Java
Python
TypeScript