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