Interface CfnNetworkInterfaceAttachmentMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnNetworkInterfaceAttachmentMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:58.587Z") @Stability(Stable) public interface CfnNetworkInterfaceAttachmentMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnNetworkInterfaceAttachmentPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.ec2.*;
 CfnNetworkInterfaceAttachmentMixinProps cfnNetworkInterfaceAttachmentMixinProps = CfnNetworkInterfaceAttachmentMixinProps.builder()
         .deleteOnTermination(false)
         .deviceIndex("deviceIndex")
         .enaQueueCount(123)
         .enaSrdSpecification(EnaSrdSpecificationProperty.builder()
                 .enaSrdEnabled(false)
                 .enaSrdUdpSpecification(EnaSrdUdpSpecificationProperty.builder()
                         .enaSrdUdpEnabled(false)
                         .build())
                 .build())
         .instanceId("instanceId")
         .networkInterfaceId("networkInterfaceId")
         .build();
 

See Also: