Interface CfnTransitGatewayMeteringPolicyEntryProps

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

@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)", date="2025-12-01T16:02:19.217Z") @Stability(Stable) public interface CfnTransitGatewayMeteringPolicyEntryProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnTransitGatewayMeteringPolicyEntry.

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.*;
 CfnTransitGatewayMeteringPolicyEntryProps cfnTransitGatewayMeteringPolicyEntryProps = CfnTransitGatewayMeteringPolicyEntryProps.builder()
         .meteredAccount("meteredAccount")
         .policyRuleNumber(123)
         .transitGatewayMeteringPolicyId("transitGatewayMeteringPolicyId")
         // the properties below are optional
         .destinationCidrBlock("destinationCidrBlock")
         .destinationPortRange("destinationPortRange")
         .destinationTransitGatewayAttachmentId("destinationTransitGatewayAttachmentId")
         .destinationTransitGatewayAttachmentType("destinationTransitGatewayAttachmentType")
         .protocol("protocol")
         .sourceCidrBlock("sourceCidrBlock")
         .sourcePortRange("sourcePortRange")
         .sourceTransitGatewayAttachmentId("sourceTransitGatewayAttachmentId")
         .sourceTransitGatewayAttachmentType("sourceTransitGatewayAttachmentType")
         .build();
 

See Also: