Interface CfnTransitGatewayPolicyTableEntry.TransitGatewayPolicyRuleProperty

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

@Stability(Stable) public static interface CfnTransitGatewayPolicyTableEntry.TransitGatewayPolicyRuleProperty extends software.amazon.jsii.JsiiSerializable
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.ec2.*;
 TransitGatewayPolicyRuleProperty transitGatewayPolicyRuleProperty = TransitGatewayPolicyRuleProperty.builder()
         .destinationCidrBlock("destinationCidrBlock")
         .destinationPortRange("destinationPortRange")
         .protocol("protocol")
         .sourceCidrBlock("sourceCidrBlock")
         .sourcePortRange("sourcePortRange")
         .build();
 

See Also: