class VpcInterface
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.VpcInterface |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#VpcInterface |
Java | software.amazon.awscdk.services.mediaconnect.alpha.VpcInterface |
Python | aws_cdk.aws_mediaconnect_alpha.VpcInterface |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป VpcInterface |
Factory class for creating VPC Interface configurations.
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 vpcInterface = new mediaconnect_alpha.VpcInterface();
Initializer
new VpcInterface()
Methods
| Name | Description |
|---|---|
| static define(props) | Define a new VPC Interface configuration. |
| static from | Create a VPC Interface configuration using existing network interfaces. |
static define(props)
public static define(props: VpcInterfaceDefineProps): VpcInterfaceConfig
Parameters
- props
Vpcโ VPC Interface properties.Interface Define Props
Returns
Define a new VPC Interface configuration.
MediaConnect will create network interfaces automatically.
static fromNetworkInterfaces(props)
public static fromNetworkInterfaces(props: VpcInterfaceFromNetworkInterfacesProps): VpcInterfaceConfig
Parameters
- props
Vpcโ VPC Interface properties with existing network interface IDs.Interface From Network Interfaces Props
Returns
Create a VPC Interface configuration using existing network interfaces.

.NET
Go
Java
Python
TypeScript (