Interface CfnVerifiedAccessEndpoint.NetworkInterfaceOptionsProperty

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

@Stability(Stable) public static interface CfnVerifiedAccessEndpoint.NetworkInterfaceOptionsProperty extends software.amazon.jsii.JsiiSerializable
Describes the network interface options when creating an AWS Verified Access endpoint using the network-interface type.

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.ec2.*;
 NetworkInterfaceOptionsProperty networkInterfaceOptionsProperty = NetworkInterfaceOptionsProperty.builder()
         .networkInterfaceId("networkInterfaceId")
         .port(123)
         .protocol("protocol")
         .build();