class BridgeType
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.BridgeType |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#BridgeType |
Java | software.amazon.awscdk.services.mediaconnect.alpha.BridgeType |
Python | aws_cdk.aws_mediaconnect_alpha.BridgeType |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป BridgeType |
Configuration of bridge type.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediaconnect_alpha from '@aws-cdk/aws-mediaconnect-alpha';
const bridgeType = mediaconnect_alpha.BridgeType.of('value');
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The bridge type string value. |
| static EGRESS_BRIDGE | Bridge | Egress Bridge. |
| static INGRESS_BRIDGE | Bridge | Ingress Bridge. |
value
Type:
string
The bridge type string value.
static EGRESS_BRIDGE
Type:
Bridge
Egress Bridge.
static INGRESS_BRIDGE
Type:
Bridge
Ingress Bridge.
Methods
| Name | Description |
|---|---|
| to | Returns the string value. |
| static of(value) | Use a custom bridge type value. |
toString()
public toString(): string
Returns
string
Returns the string value.
static of(value)
public static of(value: string): BridgeType
Parameters
- value
stringโ The bridge type string value.
Returns
Use a custom bridge type value.

.NET
Go
Java
Python
TypeScript (