Interface CfnLinkRoutingRuleProps

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

@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)", date="2026-06-16T16:14:32.269Z") @Stability(Stable) public interface CfnLinkRoutingRuleProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnLinkRoutingRule.

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.rtbfabric.*;
 CfnLinkRoutingRuleProps cfnLinkRoutingRuleProps = CfnLinkRoutingRuleProps.builder()
         .conditions(RuleConditionProperty.builder()
                 .hostHeader("hostHeader")
                 .hostHeaderWildcard("hostHeaderWildcard")
                 .pathExact("pathExact")
                 .pathPrefix("pathPrefix")
                 .queryStringEquals(QueryStringKeyValuePairProperty.builder()
                         .key("key")
                         .value("value")
                         .build())
                 .queryStringExists("queryStringExists")
                 .build())
         .gatewayId("gatewayId")
         .linkId("linkId")
         .priority(123)
         // the properties below are optional
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: