Interface InstanceEvents.AWSAPICallViaCloudTrail.NetworkInterfaceSet1

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
InstanceEvents.AWSAPICallViaCloudTrail.NetworkInterfaceSet1.Jsii$Proxy
Enclosing class:
InstanceEvents.AWSAPICallViaCloudTrail

@Stability(Experimental) public static interface InstanceEvents.AWSAPICallViaCloudTrail.NetworkInterfaceSet1 extends software.amazon.jsii.JsiiSerializable
(experimental) Type definition for NetworkInterfaceSet_1.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.ec2.events.*;
 NetworkInterfaceSet1 networkInterfaceSet1 = NetworkInterfaceSet1.builder()
         .items(List.of(NetworkInterfaceSet1Item.builder()
                 .attachment(Attachment.builder()
                         .attachmentId(List.of("attachmentId"))
                         .attachTime(List.of("attachTime"))
                         .deleteOnTermination(List.of("deleteOnTermination"))
                         .deviceIndex(List.of("deviceIndex"))
                         .status(List.of("status"))
                         .build())
                 .groupSet(GroupSet3.builder()
                         .items(List.of(GroupSet2Item.builder()
                                 .groupId(List.of("groupId"))
                                 .groupName(List.of("groupName"))
                                 .build()))
                         .build())
                 .interfaceType(List.of("interfaceType"))
                 .ipv6AddressesSet(List.of("ipv6AddressesSet"))
                 .macAddress(List.of("macAddress"))
                 .networkInterfaceId(List.of("networkInterfaceId"))
                 .ownerId(List.of("ownerId"))
                 .privateIpAddress(List.of("privateIpAddress"))
                 .privateIpAddressesSet(PrivateIpAddressesSet2.builder()
                         .item(List.of(PrivateIpAddressesSet1Item.builder()
                                 .primary(List.of("primary"))
                                 .privateIpAddress(List.of("privateIpAddress"))
                                 .build()))
                         .build())
                 .sourceDestCheck(List.of("sourceDestCheck"))
                 .status(List.of("status"))
                 .subnetId(List.of("subnetId"))
                 .tagSet(List.of("tagSet"))
                 .vpcId(List.of("vpcId"))
                 .build()))
         .build();