Interface CfnWorkgroup.NetworkInterfaceProperty

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

@Stability(Stable) public static interface CfnWorkgroup.NetworkInterfaceProperty extends software.amazon.jsii.JsiiSerializable
Contains information about a network interface in an Amazon Redshift Serverless managed VPC endpoint.

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.redshiftserverless.*;
 NetworkInterfaceProperty networkInterfaceProperty = NetworkInterfaceProperty.builder()
         .availabilityZone("availabilityZone")
         .networkInterfaceId("networkInterfaceId")
         .privateIpAddress("privateIpAddress")
         .subnetId("subnetId")
         .build();