Interface CfnFlow.VpcInterfaceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFlow.VpcInterfaceProperty.Jsii$Proxy
Enclosing class:
CfnFlow

@Stability(Stable) public static interface CfnFlow.VpcInterfaceProperty extends software.amazon.jsii.JsiiSerializable
The details of a VPC interface.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.mediaconnect.*;
 VpcInterfaceProperty vpcInterfaceProperty = VpcInterfaceProperty.builder()
         .name("name")
         .roleArn("roleArn")
         .securityGroupIds(List.of("securityGroupIds"))
         .subnetId("subnetId")
         // the properties below are optional
         .networkInterfaceIds(List.of("networkInterfaceIds"))
         .networkInterfaceType("networkInterfaceType")
         .build();
 

See Also: