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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnVerifiedAccessEndpoint.NetworkInterfaceOptionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNetworkInterfaceId
The ID of the network interface. -
getPort
The IP port number. -
getProtocol
The IP protocol. -
builder
@Stability(Stable) static CfnVerifiedAccessEndpoint.NetworkInterfaceOptionsProperty.Builder builder()
-