Interface CfnTransitGatewayRouteTableAttachment.ProposedSegmentChangeProperty

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

@Stability(Stable) public static interface CfnTransitGatewayRouteTableAttachment.ProposedSegmentChangeProperty extends software.amazon.jsii.JsiiSerializable
Describes a proposed segment change.

In some cases, the segment change must first be evaluated and accepted.

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.*;
 ProposedSegmentChangeProperty proposedSegmentChangeProperty = ProposedSegmentChangeProperty.builder()
         .attachmentPolicyRuleNumber(123)
         .segmentName("segmentName")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: