Interface CfnVpcAttachmentProps

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

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-23T05:56:19.979Z") @Stability(Stable) public interface CfnVpcAttachmentProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnVpcAttachment.

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.networkmanager.*;
 CfnVpcAttachmentProps cfnVpcAttachmentProps = CfnVpcAttachmentProps.builder()
         .coreNetworkId("coreNetworkId")
         .subnetArns(List.of("subnetArns"))
         .vpcArn("vpcArn")
         // the properties below are optional
         .options(VpcOptionsProperty.builder()
                 .applianceModeSupport(false)
                 .ipv6Support(false)
                 .build())
         .proposedNetworkFunctionGroupChange(ProposedNetworkFunctionGroupChangeProperty.builder()
                 .attachmentPolicyRuleNumber(123)
                 .networkFunctionGroupName("networkFunctionGroupName")
                 .tags(List.of(CfnTag.builder()
                         .key("key")
                         .value("value")
                         .build()))
                 .build())
         .proposedSegmentChange(ProposedSegmentChangeProperty.builder()
                 .attachmentPolicyRuleNumber(123)
                 .segmentName("segmentName")
                 .tags(List.of(CfnTag.builder()
                         .key("key")
                         .value("value")
                         .build()))
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: